/*
 * All CSS
 #-Preeloader
 #-Button
 #-Header
 #-Mobile Menu
 #-Breadcrumb
 #-Single Post
 #-Blog Sidebar
 #-Portfolio Details
* #-Transition
 * #-Vedio Button
 * #-Hero Section
 * #-Section Title
 * #-Service Card
 * #-About Us
 * #-Counter
 * #-Why Choose Us
 * #-Portfolio
 * #-Banner Section
 * #-Team
 * #-Testimonial
 * #-Work In Progress
 * #-Pricing Plan
 * #-Hero Slider
 * #-Industry We Serve
 * #-Contact Us
*/
@import url('https://fonts.googleapis.com/css2?family=Catamaran:wght@100..900&amp;family=Jost:ital,wght@0,100..900;1,100..900&amp;display=swap');
:root {
    --body-bg:#fff;
    --white-bg:#fff;
    --section-bg: #efefff;
    --primary-bg: linear-gradient(to left, #76009c, #3a6ea5);
    --headding-bg: #020842;

    --body-color: rgb(68,86,88);
    --primary-color:#20477b;
    --secondary-color: #10393b;
    --headding-color: #020842;
    --white-color:#fff;
    --border-color:#f0f0f0;
    --ct-border-color: #e2e8f0;
    --ct-border-color2: #e1e1e1;
    --ct-border-color3: #E8E8E8;

    --no-change-color1: #020842;

    --body-font:"Catamaran", poppins;
    --headding-font:"Jost", sans-serif;

}
[data-bs-theme="dark"] {
    --body-bg:#072032;
    --white-bg:#072032;
    --section-bg: #10293a;
    --primary-bg: linear-gradient(to left, #76009c, #3630ff);
    --headding-bg: #020842;

    --body-color: #9ba0a3;
    --primary-color: rgb(54,48,255);
    --secondary-color: #10393b;
    --headding-color: #fff;
    --white-color:#fff;
    --border-color:#f0f0f021;
    --ct-border-color: #e2e8f014;
    --ct-border-color2: #e1e1e11f;
    --ct-border-color3: #ececec30;
}
body{
    margin: 0;
    padding: 0;
    font-size: 15px;
    color: var(--body-color);
    font-family: var(--body-font);
    font-weight: 400;
    font-style: normal;
    background-color: var(--body-bg);
}
a,
button {
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
*::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}
::-moz-selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}
::selection {
    background: var(--primary-color);
    color: #fff;
    text-shadow: none;
}
h1,h2,h3,h4,h5,h6,p{
    margin:0;
    padding: 0;
}
h1,h2,h3,h4,h5,h6{
    color: var(--headding-color);
    font-weight: 700;
    font-family: var(--headding-font);
}
a{
    text-decoration: none;
    transition: .4s;
    -webkit-transition: all .4s ease-in-out;
}
a:hover{
    text-decoration: none;
    color: var(--primary-color);
}
button:focus{
    outline: none;
}
input:focus{
    outline: none;
}
textarea:focus{
    outline: none;
}
p{
    color: var(--body-color);
    line-height: 26px;
}
ul{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
img{
    max-width:100%;
    height: auto;
}
/*Scroll Area*/
.scroll-area {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    display: none;
}
.scroll-area i {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    border-radius: 50%;
}
.section-bg{
    background-color: var(--section-bg);
}
.section-padding{
    padding: 100px 0px;
}
.section-padding-2{
    padding-top: 100px;
    padding-bottom: 70px;
}
.section-padding-80{
    padding: 80px 0px;
}
.section-padding-70{
    padding: 70px 0px;
}
.section-padding-50{
    padding: 50px 0px;
}
.text-right{
    text-align: right;
}
.text-left{
    text-align: left;
}
.sec-pt-100{
    padding-top: 100px;
}
.sec-pb-100{
    padding-bottom: 100px;
}
.counter-bottom-padding{
    padding-bottom: 150px;
}
/*
 * Preeloader
*/
.preloader{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    background-color: #020842;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loading-container,
.loading{
    height: 100px;
    position: relative;
    width: 100px;
    border-radius: 100%;
}
.loading-container{
    margin: 40px auto
}
.loading{
    border: 1px solid transparent;
    border-color: transparent #fff transparent #fff;
    animation: rotate-loading 1.5s linear 0s infinite normal;
    transform-origin: 50% 50%;
}
.loading-container:hover .loading,
.loading-container .loading{
    transition: all 0.5s ease-in-out;
}
#loading-icon{
    position: absolute;
    top: 50%;
    left: 50%;
    max-width: 100px;
    transform: translate(-50%, -50%);
}
@keyframes rotate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*
 * Button
*/
.button-1 {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 16px 30px;
    background: var(--primary-color);
    color: var(--white-color);
    line-height: 1.2;
    overflow: hidden;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.button-1:hover{
    color: var(--white-color);
}
.button-1::after{
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    content: "";
    background-color: var(--headding-color);
    -webkit-transform: scale(0,1);
    transform: scale(0,1);
    -webkit-transform-origin: top right;
    transform-origin: top right;
    transition: -webkit-transform .5s cubic-bezier(.86,0,.07,1);
    -webkit-transition: -webkit-transform .5s cubic-bezier(.86,0,.07,1);
    transition: transform .5s cubic-bezier(.86,0,.07,1);
    transition: transform .5s cubic-bezier(.86,0,.07,1),-webkit-transform .5s cubic-bezier(.86,0,.07,1);
    -webkit-transition-timing-function: cubic-bezier(.86,0,.07,1);
    transition-timing-function: cubic-bezier(.86,0,.07,1);
    z-index: -1;
}
.button-1:hover::after{
    -webkit-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transform-origin: bottom left;
    transform-origin: bottom left;
}
/*
 * Header
*/
.header {
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    opacity: 1;
}
.header .logo img.sticky-logo {
    display: none;
}
.menu {
    float: right;
    margin-right: 50px;
}
.h-right-button {
    float: right;
    padding-top: 16px;
}
.menu ul li{
    display: inline-block;
    position: relative;
}
.menu ul li a {
    display: inline-block;
    padding: 30px 18px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-color);
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
}
.menu ul li a i{
    font-size: 13px;
}
/*.menu ul li:hover > a{
    color: var(--primary-color);
}*/
.menu ul li > ul {
    position: absolute;
    background: var(--white-bg);
    width: 240px;
    box-shadow: 0 30px 70px 0 hsla(216,2%,55%,.15);
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: top center;
    transform-origin: top center;
    transition: all .3s ease-out 0s;
    opacity: 0;
    left: 0;
    top: 100%;
    visibility: hidden;
    padding: 15px 0;
    z-index: 9;
}
.menu ul li:hover > ul {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}
.menu ul li > ul li {
    display: inline-block;
    width: 100%;
    padding: 10px 0;
}
.menu ul li > ul li a {
    display: inline-block;
    width: 100%;
    padding: 0 25px;
    font-size: 15.5px;
    color: var(--headding-color);
}
.menu ul li > ul li a:hover{
    color: var(--primary-color);
}
.menu ul li.menu-item-has-children > a {
    position: relative;
    padding-right: 26px;
}
.menu ul li.menu-item-has-children > a:after {
    content: "\f107";
    clear: both;
    display: block;
    position: absolute;
    font-family: 'Font Awesome 6 Pro';
    font-size: 12px;
    line-height: 1;
    right: 13px;
    top: calc( 50% - 6px );
}
.menu ul li > ul li > ul {
    left: 240px;
    top: -16px;
}
.menu ul li:last-child ul > li > ul{
    left: -240px;
    top: -16px;
}
.header .button-1::after {
    background-color: var(--white-bg);
}
.header .button-1:hover {
    color: var(--headding-color);
}
/*
 * #-Mobile Menu
*/
.off_canvars_overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    cursor: crosshair;
    background: #232323;
    top: 0;
}
.off_canvars_overlay.active {
    opacity: 0.5;
    visibility: visible;
}
.offcanvas_menu {
    display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .offcanvas_menu {
      display: block;
    }
}
@media only screen and (max-width: 767px) {
    .offcanvas_menu {
      display: block;
    }
}
.offcanvas_menu_wrapper {
    width: 290px;
    position: fixed;
    background: var(--white-bg);
    z-index: 9999999;
    top: 0;
    height: 100vh;
    transition: .5s;
    left: 0;
    margin-left: -300px;
    padding: 20px 0px 30px;
    overflow-y: auto;
}
.offcanvas_menu_wrapper.active {
    margin-left: 0;
}
.offcanvas_menu_wrapper .slinky-theme-default {
    background: inherit;
    min-height: 300px;
    overflow-y: auto;
}
.offcanvas_menu_wrapper .header_search_box {
    display: block;
}
.offcanvas_main_menu > li.menu-item-has-children.menu-open > span.menu-expand {
    transform: rotate(180deg);
}
.offcanvas_main_menu > li ul li.menu-item-has-children.menu-open span.menu-expand {
    transform: rotate(180deg);
}
.offcanvas_main_menu li {
    position: relative;
}
.offcanvas_main_menu li:last-child {
    margin: 0;
}
.offcanvas_main_menu li span.menu-expand {
    position: absolute;
    right: 1px;
    width: 50px;
    height: 51px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--section-bg);
}
.offcanvas_main_menu li a {
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    display: block;
    padding: 0px 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
    color: var(--body-color);
    padding-top: 10px;
    line-height: 30px;
    letter-spacing: 1px;
}
.offcanvas_main_menu li ul.sub-menu > li a {
    font-size: 15px;
    padding: 6px 26px;
}
.offcanvas_main_menu li a:hover {
    color: var(--primary-color);
}
.offcanvas_footer {
    margin-top: 50px;
    padding-bottom: 50px;
    text-align: center;
}
.offcanvas_footer span a {
    font-size: 14px;
}
.offcanvas_footer span a:hover {
    color: var(--primary-color);
}
.slinky-theme-default a:not(.back) {
    padding: 10px 0;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 400;
}
.slinky-theme-default a:not(.back):hover {
    background: inherit;
    color: var(--primary-color);
}
.canvas_close {
    position: absolute;
    top: 10px;
    right: 13px;
}
.canvas_close a {
    font-size: 18px;
    text-transform: uppercase;
    font-weight: 500;
    width: 32px;
    height: 32px;
    display: block;
    text-align: center;
    line-height: 32px;
    border: 1px solid #ededed;
    border-radius: 50%;
    color: #333;
}
.canvas_close a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white-color);
}
.mobile-logo {
    margin-bottom: 30px;
    text-align: center;
}
.canvas_open_full {
    display: none;
}
.offcanvas_main_menu li ul.sub-menu > li span.menu-expand {
    height: 42px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
    .canvas_open {
        display: block;
    }
}
@media only screen and (max-width: 767px) {
    .canvas_open {
        right: 20px;
        top: 27px;
        display: block;
        width: 36px;
    }
}
/*
 * #-Breadcrumb
*/
.breadcrumb-section {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
}
.breadcrumb-section .content h2 {
    font-size: 42px;
    color: var(--white-color);
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.breadcrumb-section .content ul li {
    display: inline-block;
    font-size: 18px;
    font-weight: 600;
    color: var(--white-color);
}
.breadcrumb-section .content ul li:first-child {
    padding-right: 20px;
    position: relative;
}
.breadcrumb-section .content ul li:last-child {
    padding-left: 20px;
}
.breadcrumb-section .content ul li:first-child:after {
    content: "";
    clear: both;
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 10px;
    right: -4px;
    background: var(--white-color);
    border-radius: 50%;
}
.breadcrumb-section .content ul li a{
    color: var(--white-color);
}
.breadcrumb-section .content ul li a:hover{
    color: var(--primary-color);
}
/*
 * Footer
*/
.site-footer {
    position: relative;
    z-index: 1;
    background-color: rgb(2 9 18);
}
.footer-bg-dot{
    background-size: 20px 20px;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    opacity: .8;
}   
.footer-top {
    padding-top: 70px;
    padding-bottom: 40px;
}
.footer-widgets-item .f-logo {
    margin-bottom: 30px;
}
.footer-widgets-item  p.content {
    margin-bottom: 30px;
    color: #d2d2d4;
    font-size: 16px;
}
.footer-social span {
    display: inline-block;
    margin-right: 8px;
}
.footer-social span:last-child{
    margin-right: 0px;
}
.footer-social span a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 18px;
    transition: all .3s ease;
}
.footer-social span a svg {
    font-size: 14px;
    width: 18px;
    fill: var(--white-color);
    -webkit-transition:all .3s ease;
    transition: all .3s ease;
}
.footer-social span a:hover svg{
    fill: var(--primary-color);
}
.footer-social span a:hover{
    color: var(--primary-color);
    background: var(--white-bg);
}
.footer-widgets-item h2 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 30px;
}
.footer-widgets-item ul.menu {
    margin: 0;
    float: left;
}
.footer-widgets-item ul.menu li a {
    color: #d2d2d4;
    font-size: 15px;
    font-weight: 500;
    display: inline-block;
    margin: 6px 0px;
    transition: all .3s ease;
}
.footer-widgets-item ul.menu li a:hover{
    color: var(--white-color);
}
.footer-widgets-item ul.contact-info li {
    margin-bottom: 30px;
    display: flex;
    align-items: start;
}
.footer-widgets-item ul.contact-info li .icon i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    margin-right: 20px;
    background: rgba( 255, 255, 255, 0.1 );
    color: var(--white-color);
    border-radius: 50%;
    font-size: 18px;
}
.footer-widgets-item ul.contact-info li .content h4 {
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    color: var(--white-color);
    letter-spacing: 1px;
}
.footer-widgets-item ul.contact-info li .content p {
    color: #d2d2d4;
    margin-top: 4px;
    line-height: 24px;
    font-size: 16px;
}
.footer-widgets-item ul.contact-info li:last-child {
    margin-bottom: 0px;
}
.footer-bottom {
    text-align: center;
    background: #04132c47;
}
.footer-bottom .copy-text p {
    color: var(--white-color);
    font-weight: 500;
}
.footer-bottom .copy-text p a{
    color: var(--white-color);
}
.footer-bottom .copy-text p a:hover{
    color: var(--primary-color);
}
/*
 * #-Single Post
*/
.blog-details-full .thumbnail {
    text-align: center;
    margin-bottom: 30px;
}
.blog-details-full .post-auth {
    margin-bottom: 20px;
}
.blog-details-full .post-auth li {
    display: inline-flex;
    align-items: center;
    margin-right: 18px;
    font-size: 16px;
    font-weight: 500;
}
.blog-details-full .post-auth li:last-child{
    margin-right: 0;
}
.blog-details-full .post-auth li i {
    color: var(--primary-color);
    font-size: 18px;
    margin-right: 6px;
}
.blog-details-full .post-auth span span.author.vcard a {
    margin-left: 5px;
    text-transform: capitalize;
    color: var(--body-color);
}
.blog-details-full .post-auth span a{
    color: var(--body-color);
}
.blog-details-full .post-auth span a:hover,
.blog-details-full .post-auth span span.author.vcard a:hover{
    color: var(--primary-color);
}
.blog-details-full .post-auth li span {
    line-height: 1;
    padding-top: 1px;
}
.blog-details-full .entry-content {
    margin-bottom: 30px;
}
.common-content-section p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 20px;
}
.common-content-section blockquote {
    margin-bottom: 20px;
    background: var(--primary-color);
    padding: 50px;
    position: relative;
    color: var(--white-color);
}
.common-content-section blockquote p {
    font-size: 20px;
    color: var(--white-color);
    font-weight: 500;
    font-style: italic;
    line-height: 32px;
}
.common-content-section blockquote p:last-child {
    margin: 0;
}
.common-content-section blockquote:after {
    content: "\f10d";
    clear: both;
    display: block;
    position: absolute;
    font-family: 'Font Awesome 5 Pro';
    font-size: 100px;
    line-height: 1;
    bottom: -20px;
    right: 30px;
    color: var(--white-color);
    opacity: 0.3;
}
.common-content-section h4 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}
.common-content-section ul,
.common-content-section ol {
    margin-bottom: 20px;
    padding-left: 50px;
    list-style: inherit;
}
.common-content-section ol {
    list-style: decimal;
    padding-left: 40px;
}
.common-content-section ul li,
.common-content-section ol li {
    line-height: 30px;
    font-size: 15px;
    font-weight: 600;
}
.common-content-section h1 {
    font-size: 30px;
    margin-bottom: 12px;
}
.common-content-section h2 {
    font-size: 26px;
    margin-bottom: 12px;
}
.common-content-section h3 {
    font-size: 24px;
    margin-bottom: 12px;
}
.common-content-section h5 {
    font-size: 20px;
    margin-bottom: 12px;
}
.common-content-section h6 {
    font-size: 18px;
    margin-bottom: 12px;
}
.common-content-section pre {
    background: #e7e7e7;
    padding: 14px 20px;
    font-size: 14px;
}
footer.entry-footer .blog-tags {
    text-align: center;
    margin-bottom: 30px;
}
footer.entry-footer .blog-tags a {
    display: inline-block;
    padding: 8px 15px;
    font-size: 15px;
    font-weight: 500;
    background: var(--section-bg);
    border-radius: 4px;
    line-height: 22px;
    color: var(--headding-color);
    margin: 0px 3px;
    transition: all .3s ease;
}
footer.entry-footer .blog-tags a:hover{
    color: var(--white-color);
    background: var(--primary-color);
}
footer.entry-footer .blog-tags span {
    font-size: 18px;
    margin-right: 5px;
}
.blog-details-full .blog-share {
    margin-bottom: 30px;
    text-align: center;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}
.blog-details-full .blog-share  span:first-child {
    font-size: 18px;
    margin-right: 5px;
}
.blog-details-full .blog-share a {
    display: inline-flex;
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    border-radius: 50%;
    margin: 0px 3px;
    font-size: 15px;
    border: 1px solid var(--primary-color);
    transition: all .3s ease;
}
.blog-details-full .blog-share a:hover{
    color: var(--white-color);
    background: var(--primary-color);
    transform: translateY(-5px);
}
.blog-details-full .blog-share a svg {
    width: 15px;
    fill: var(--primary-color);
    transition: all .3s ease;
}
.blog-details-full .blog-share a:hover svg{
    fill: var(--white-color);
}
.blog-comments-list {
    margin-bottom: 30px;
}
.blog-comments-list h2.comments-title {
    font-size: 30px;
    margin-bottom: 25px;
    font-weight: 600;
}
.blog-comments-list  ul {
    width: 100%;
}
.blog-comments-list ul > li {
    margin-bottom: 30px;
}
.blog-comments-list ul > li .comment-body {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    position: relative;
    padding: 30px 30px;
    border-radius: 5px;
}
.blog-comments-list ul > li .comment-body img.avatar {
    width: 80px;
    float: left;
    margin-right: 20px;
    border-radius: 50%;
}
.blog-comments-list ul > li .comment-body .comment-content {
    overflow: hidden;
}
.blog-comments-list ul li > ul.children {
    padding-left: 100px;
    margin-top: 30px;
}
.blog-comments-list ul li > ul.children li > ul.children {
    padding-left: 0;
}
.blog-comments-list ul > li .comment-body .comment-content h3 {
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 6px;
}
.blog-comments-list ul > li .comment-body .comment-content .date {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--body-color);
    opacity: .8;
}
.blog-comments-list ul > li .comment-body .comment-content .reply {
    position: absolute;
    top: 30px;
    right: 30px;
    z-index: 1;
}
.blog-comments-list ul > li .comment-body .comment-content .reply a {
    display: inline-block;
    padding: 2px 14px;
    background: var(--white-bg);
    color: var(--primary-color);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 26px;
    padding-top: 4px;
    border-radius: 4px;
    transition: all .3s ease;
    border: 1px solid var(--primary-color);

}
.blog-comments-list ul > li .comment-body .comment-content .reply a:hover{
    color: var(--white-color);
    background: var(--primary-color);
}
nav.navigation.comment-navigation{
    overflow: hidden;
    width: 100%;
    margin-bottom: 30px;
}
nav.navigation.comment-navigation h2.screen-reader-text {
    display: none;
}
nav.navigation.comment-navigation .nav-links {
    width: 100%;
}
nav.navigation.comment-navigation .nav-links .nav-previous {
    float: left;
}
nav.navigation.comment-navigation .nav-links  .nav-next {
    float: right;
}
nav.navigation.comment-navigation .nav-links a {
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    color: var(--headding-color);
    transition: all .3s ease;
}
nav.navigation.comment-navigation .nav-links a:hover{
    color: var(--primary-color);
    text-decoration: underline;
}
.blog-details-full .comment-respond h3 {
    font-size: 30px;
    margin-bottom: 10px;
    font-weight: 600;
}
.blog-details-full .comment-respond p.comment-notes {
    margin-bottom: 20px;
}
.blog-details-full .comment-respond p.comment-form-comment {
    width: 100%;
    margin-bottom: 20px;
    overflow: hidden;
}
.blog-details-full .comment-respond p.comment-form-comment label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}
.blog-details-full .comment-respond p.comment-form-comment textarea {
    width: 100%;
    height: 120px;
    border: 1px solid #ebebeb;
    transition: all .3s ease;
    outline: none;
    font-size: 16px;
    padding: 15px 20px;
    color: var(--body-color);
}
.blog-details-full .comment-respond p.comment-form-comment textarea:focus {
    border-color: var(--primary-color);
}
.blog-details-full .comment-respond p.comment-form-author {
    width: calc( 50% - 10px );
    float: left;
    margin-bottom: 20px;
    margin-right: 20px;
}
.blog-details-full .comment-respond p.comment-form-email {
    width: calc( 50% - 10px );
    overflow: hidden;
    margin-bottom: 20px;
}
.blog-details-full .comment-respond label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}
.blog-details-full .comment-respond input {
    width: 100%;
    border: 1px solid #ebebeb;
    transition: all .3s ease;
    outline: none;
    font-size: 16px;
    padding: 15px 20px;
    color: var(--body-color);
    box-sizing: border-box;
}
.blog-details-full .comment-respond input:focus {
    border-color: var(--primary-color);
}
.blog-details-full .comment-respond p.comment-form-url {
    width: 100%;
    margin-bottom: 20px;
}
.blog-details-full .comment-respond p.comment-form-cookies-consent {
    width: 100%;
    margin-bottom: 20px;
}
.blog-details-full .comment-respond p.comment-form-cookies-consent input {
    display: inline-block;
    float: left;
    margin-right: 10px;
    width: 18px;
    height: 18px;
    margin-top: 3px;
}
.blog-details-full .comment-respond p.comment-form-cookies-consent label {
    display: inline-block;
    margin-bottom: 0;
    line-height: 1;
}
.blog-details-full .comment-respond p.form-submit input#submit {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 16px 30px;
    background: var(--no-change-color1);
    color: var(--white-color);
    line-height: 1.2;
    overflow: hidden;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    width: auto;
    border: none;
    outline: none;
    transition: all .3s ease;
}
.blog-details-full .comment-respond p.form-submit input#submit:focus{
    outline: none;
}
.blog-details-full .comment-respond p.form-submit input#submit:hover{
    background: var(--primary-color);
}
.blog-comments-list ul > li .comment-body .comment-content em.comment-awaiting-moderation {
    color: var(--primary-color);
    margin-bottom: 5px;
    display: inline-block;
    font-weight: 600;
}
.blog-comments-list ul > li .comment-respond h3 {
    font-size: 24px;
    font-weight: 600;
}
.blog-comments-list ul > li .comment-respond h3 small {
    margin-left: 10px;
    font-size: 18px;
}
.blog-comments-list ul > li .comment-respond {
    margin-top: 30px;
}
.blog-single-item {
    background: var(--white-bg);
    position: relative;
    border: 1px solid var(--ct-border-color3);
    border-radius: 4px;
    transition: all .3s ease;
}
.blog-single-item:hover{
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}
.blog-single-item .thumbnail{
    overflow: hidden;
    position: relative;
}
.blog-single-item .thumbnail img {
    width: 100%;
    transition: .7s;
}
.blog-single-item:hover .thumbnail img{
    transform: scale(1.1);
}
.blog-single-item .content {
    padding: 25px 30px;
    position: relative;
}
.blog-single-item .content .date {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0.8rem;
    line-height: 28px;
}
.blog-single-item .content .date i {
    margin-right: 4px;
}
.blog-single-item .content .title {
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.blog-single-item .content .title h3 {
    font-size: 22px;
    font-weight: 600;
}
.blog-single-item .content .title h3 a {
    color: var(--headding-color);
}
.blog-single-item .content .title h3 a:hover {
    color: var(--primary-color);
}
.blog-single-item .content .user-s {
    overflow: hidden;
}
.blog-single-item .content .user-s ul li {
    display: inline-block;
    float: left;
    font-size: 16px;
    text-transform: capitalize;
    letter-spacing: 1px;
    color: var(--body-color);
}
.blog-single-item .content .user-s ul li:last-child {
    float: right;
}
/*
 * #-Blog Sidebar
*/
.blog-sidebar-section{
    padding-left: 2rem;
}
.single-widgets {
    width: 100%;
    background: var(--section-bg);
    margin-bottom: 30px;
    border-radius: 4px;
    padding: 30px;
    overflow: hidden;
}
.single-widgets form{
    position: relative;
}
.single-widgets form input {
    width: 100%;
    float: left;
    padding: 15px 20px;
    box-sizing: border-box;
    border: 1px solid #e2e2e2;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 26px;
}
.single-widgets form button {
    position: absolute;
    top: 6px;
    right: 6px;
    height: 43px;
    border: none;
    font-size: 15px;
    border-radius: 4px;
    background: var(--no-change-color1);
    color: var(--white-color);
    transition: all .3s ease;
    width: 42px;
}
.side-widgets-l-blog .item .thubnail a img {
    height: 66px;
    object-fit: cover;
}
.single-widgets form button:hover{
    background: var(--primary-color);
}
.single-widgets h2,
.single-widgets h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}
.single-widgets h2:after,
.single-widgets h3:after {
    content: "";
    clear: both;
    position: absolute;
    width: 80px;
    height: 2px;
    background: var(--primary-color);
    left: 0;
    bottom: 0;
}
.single-widgets ul li {
    display: inline-block;
    width: 100%;
    font-size: 15px;
    font-weight: 600;
    padding: 8px 0px;
}
.single-widgets ul li a{
    color: var(--body-color);
}
.single-widgets ul li a:hover{
    color: var(--primary-color);
}
.single-widgets a.tag-cloud-link {
    font-size: 15px !important;
    display: inline-block;
    padding: 8px 15px;
    font-weight: 500;
    background: var(--white-bg);
    border-radius: 4px;
    line-height: 22px;
    color: var(--headding-color);
    margin: 4px 3px;
    transition: all .3s ease;
}
.single-widgets a.tag-cloud-link:hover{
    color: var(--white-color);
    background: var(--primary-color);
}
.side-widgets-l-blog .item:last-child {
    margin-bottom: 0px;
}
.side-widgets-l-blog .item{
    display: flex;
}
.side-widgets-l-blog .item .thubnail a {
    width: 70px;
    display: inline-block;
    margin-right: 15px;
}
.side-widgets-l-blog .item .thubnail a img{
    border-radius: 4px;
}
.side-widgets-l-blog .item .content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.side-widgets-l-blog .item .content h4 a {
    color: var(--headding-color);
}
.side-widgets-l-blog .item:hover .content h4 a {
    color: var(--primary-color);
}
.side-widgets-l-blog .item .content span {
    font-size: 15px;
}
.side-widgets-l-blog .item .content span i {
    margin-right: 5px;
}
.blog-pagination .nav-links {
    text-align: center;
    margin: 0 auto;
    margin-top: 20px;
}
.blog-pagination .nav-links ul {
    display: flex;
    align-items: center;
    justify-content: center;
}
.blog-pagination .nav-links ul li {
    display: inline-block;
    margin: 0px 3px;
}
.blog-pagination .nav-links ul li span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: 600;
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 4px;
}
.blog-pagination .nav-links ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    font-size: 18px;
    font-weight: 600;
    background: var(--section-bg);
    color: var(--headding-color);
    border-radius: 4px;
}
.blog-pagination .nav-links ul li a:hover{
    color: var(--white-color);
    background: var(--primary-color);
}
/*
 * No Search Card
*/
.no-search-results-content{
    background: var(--white-bg);
    position: relative;
    border: 1px solid var(--ct-border-color3);
    border-radius: 4px;
    transition: all .3s ease;
    padding: 25px 30px;
}
.no-search-results-content h2.page-title {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}
.no-search-results-content  p {
    margin-bottom: 20px;
    font-size: 18px;
}
.no-search-from form {
    max-width: 380px;
    position: relative;
}
.no-search-from form  label {
    width: calc( 100% - 95px );
    float: left;
}
.no-search-from form input.search-field {
    width: 100%;
    padding: 12px 15px;
    font-size: 15px;
    text-transform: capitalize;
    font-weight: 600;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    transition: all .3s ease;
}
.no-search-from form input.search-field:focus{
    border-color: var(--primary-color);
}
.no-search-from form input.search-submit {
    width: 90px;
    overflow: hidden;
    margin-left: 5px;
    padding: 13px 0px;
    font-size: 15px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: 1px;
    border: none;
    border-radius: 4px;
    background: var(--headding-color);
    color: var(--white-color);
    transition: all .3s ease;
}
.no-search-from form input.search-submit:hover{
    background: var(--primary-color);
}
.error-page-404 .content h2 {
    font-size: 150px;
    line-height: 110px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 3px 3px var(--primary-color);
}
.error-page-404 .content h4 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 600;
}
.error-page-404 .content p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 20px;
    line-height: 32px;
    font-weight: 500;
}
/*
 * #-Portfolio Details
*/
.portfolio-details-full .post-navigation {
    overflow: hidden;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0px;
    margin-top: 15px;
}
.portfolio-details-full .post-navigation .text-right .n-prev-post {
    float: right;
}
.portfolio-details-full .post-navigation .n-prev-post a {
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--headding-color);
    line-height: 28px;
    transition: all .3s ease;
}
.portfolio-details-full .post-navigation .n-prev-post a:hover {
    color: var(--primary-color);
}
.portfolio-details-full .post-navigation .n-prev-post a i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--section-bg);
    border-radius: 50%;
    font-size: 18px;
    margin-right: 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}
.portfolio-details-full .post-navigation .n-prev-post a:hover i {
    background: var(--primary-color);
    color: var(--white-color);
}
.portfolio-details-full .post-navigation .text-right .n-prev-post a i {
    margin-left: 10px;
}
@media (min-width:992px){
    .portfolio-details-full .portfolio-sidebar{
        padding-left: 20px;
    }
}
.portfolio-details-full .project-info-s {
    background: var(--primary-color);
    padding: 30px;
}
.portfolio-details-full .project-info-s h4 {
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}
.portfolio-details-full .project-info-s ul {
    margin-bottom: 20px;
}
.portfolio-details-full .project-info-s ul li {
    width: 100%;
    overflow: hidden;
    margin-bottom: 15px;
    color: var(--white-color);
    letter-spacing: 1px;
}
.portfolio-details-full .project-info-s ul li b {
    display: block;
    font-size: 16px;
    letter-spacing: 1px;
}
.portfolio-details-full .project-info-s ul li b a{
    color: var(--white-color);
}
.portfolio-details-full .project-info-s ul li b a:hover{
    text-decoration: underline;
}
.portfolio-details-full .project-info-s .blog-share span {
    font-size: 15px;
    margin-right: 6px;
    color: var(--white-color);
    letter-spacing: 1px;
}
.portfolio-details-full .project-info-s .blog-share span:last-child{
    margin-right: 0px;
}
.portfolio-details-full .project-info-s .blog-share span a {
    width: 46px;
    height: 46px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #5651ff;
    border-radius: 50%;
    font-size: 15px;
    color: var(--white-color);
    transition: all .3s ease;
}
.portfolio-details-full .project-info-s .blog-share span a svg {
    width: 15px;
    fill: var(--white-color);
    -webkit-transition:all .3s ease;
}
.portfolio-details-full .project-info-s .blog-share span a:hover svg {
    fill: var(--primary-color);
}
.portfolio-details-full .project-info-s .blog-share span.sh {
    display: none;
}
.portfolio-details-full .project-info-s .blog-share span a:hover{
    color: var(--primary-color);
    background: var(--white-bg);
}
.portfolio-details-full .portfolio-sidebar .po-contact-info {
    background: var(--section-bg);
    padding: 30px;
}
.portfolio-details-full .portfolio-sidebar .po-contact-info h4 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}
.portfolio-details-full .portfolio-sidebar .po-contact-info .list .item{
    margin-bottom: 20px;
    display: flex;
}
.portfolio-details-full .portfolio-sidebar .po-contact-info .list .item:last-child{
    margin-bottom: 0;
}
.portfolio-details-full .portfolio-sidebar .po-contact-info .list .item .icon i {
    color: var(--primary-color);
    font-size: 20px;
    margin-right: 14px;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #3630ff26;
    border-radius: 5px;
    margin-top: 4px;
}
.portfolio-details-full .portfolio-sidebar .po-contact-info .list .item  .info h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 2px;
}
.header.sticky-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 999999;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 28px 0 rgba(0, 0, 0, 0.06);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}
.header.sticky-header.sticky .logo img {
    display: none;
}
.header.sticky-header.sticky .logo img.sticky-logo{
    display: block;
}
.sticky .menu ul li a {
    color: var(--headding-color);
}
.sticky .menu ul li:hover > a {
    color: var(--primary-color);
}
.sticky.header .button-1::after {
    background-color: var(--headding-bg);
}
.sticky.header .button-1:hover {
    color: var(--white-color);
}
.header-color.header .logo img {
    display: none;
}
.header-color.header .logo img.sticky-logo {
    display: block;
}
.header-color .menu ul li a {
    color: var(--headding-color);
}
.header-color .menu ul li:hover > a {
    color: var(--primary-color);
}
.header-color.header .button-1::after {
    background-color: var(--no-change-color1);
}
.header.header-color .button-1:hover {
    color: var(--white-color);
}
/*
 * Blog Standard
*/
.blog-standard-card{
    background: var(--white-bg);
    position: relative;
    border: 1px solid var(--ct-border-color3);
/*    border-radius: 4px;*/
    transition: all .3s ease;
}
/*.blog-standard-card:hover {
    box-shadow: rgba(100, 100, 111, 0.1) 0px 7px 29px 0px;
}*/
.blog-standard-card .content {
    padding: 40px 40px;
    position: relative;
}
.blog-standard-card .content .postbox__meta {
    margin-bottom: 7px;
}
.blog-standard-card .content .postbox__meta ul li {
    font-size: 14px;
    color: var(--body-color);
    margin-right: 30px;
    font-weight: 500;
    margin-bottom: 5px;
    display: inline-block;
    text-transform: capitalize;
}
.blog-standard-card .content .postbox__meta ul li:last-child{
    margin-right: 0px;
}
.blog-standard-card .content .postbox__meta ul li i {
    color: var(--headding-color);
    transform: translateY(0px);
    font-size: 16px;
    margin-right: 2px;
}
.blog-standard-card .content .title {
    margin-bottom: 20px;
    margin-top: 10px;
}
.blog-standard-card .content .title h3 {
    font-size: 34px;
    font-weight: 600;
    line-height: 36px;
}
.blog-standard-card .content .title h3 a{
    font-family: var(--headding-font);
    color: var(--headding-color);
}
.blog-standard-card .content .title h3:hover a{
    color: var(--primary-color);
}
.blog-standard-card .content p {
    font-size: 16px;
    line-height: 30px;
    margin-bottom: 30px;
}
.blog-standard-card .content .button-read a {
    padding: 14px 32px;
}
/*
 * #-Transition
*/
a,button,
.portfolio-item-single:after,
.portfolio-item-single .content,
.portfolio-item-single .content h2,
.portfolio-item-single .content strong,
.portfolio-item-single .zoom-icon,
.portfolio-cate-list-full ul li,
.services-card-item-style2,
.services-card-item-style2:after,
.services-card-item-style2 .icon,
.services-card-item-style2 .icon svg,
.services-card-item-style2 .content p,
.ct-about-us-section .content .ab-info .icon i,
.ct-about-us-section .content .ab-info .icon,
.services-card-item .content a i,
.services-card-item .content p,
.services-card-item .content h2,
.services-card-item:after,
.services-card-item,
.portfolio-slider-full .portfolio-nav i,
.portfolio-slider-full .portfolio-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active,
.hero-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active,
.swiper-pagination-bullet-active:after,
.ct-pricing-plan-section ul.nav li button::after,
.ct-pricing-plan-section ul.nav li button,
.ct-price-card,
.button-2,
.services-card-item-style3,
.services-card-item-style3 .services__shape-1,
.services-card-item-style3 .services__shape-2,
.services-card-item .icon .ic,
.services-card-item-style3 .icon .ic,
.services-card-item-style3 .icon .ic svg,
.services-card-item-style3 .content h2,
.services-card-item-style3 .content p,
.services-card-item-style3 a i,
.services-card-item-style3 a,
.ct-tab-image-left .nav.nav-tabs .nav-link .nav-item-signle,
.ct-tab-image-left .nav.nav-tabs .nav-link .nav-item-signle .number span,
.hero-nav i,
.ct-industry-item,
.ct-industry-item .icon,
.ct-industry-item .icon svg,
.ct-industry-item .icon i,
.ct-industry-item h2,
.single-input input,
.single-input select,
.single-input textarea,
.portfolio-item-single .zoom-icon a 
{
    -webkit-transition: all 0.3s ease-out 0s;
    -moz-transition: all 0.3s ease-out 0s;
    -ms-transition: all 0.3s ease-out 0s;
    -o-transition: all 0.3s ease-out 0s;
    transition: all 0.3s ease-out 0s;
}
@media (min-width:1200px){
    .custom-col {
      flex: 0 0 20% !important;
      max-width: 20% !important;
    }
}
/*
 * #-Vedio Button
*/
.video-btn a {
    background: var(--white-color);
    height: 100px;
    width: 100px;
    text-align: center;
    border-radius: 50%;
    line-height: 100px;
    font-size: 30px;
    -webkit-transition: .5s -webkit-animation ripple-red 1s linear infinite;
    animation: ripple-red 1s linear infinite;
    -webkit-transition: .5s;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}
@-webkit-keyframes ripple-red {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3)
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 0 0 20px rgba(255, 255, 255, 0.3), 0 0 0 30px rgba(2241, 42, 2, 0)
    }
}
@-webkit-keyframes ripple-blue {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(54, 48, 255, 0.3), 0 0 0 10px rgba(54, 48, 255, 0.3), 0 0 0 20px rgba(54, 48, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(54, 48, 255, 0.3), 0 0 0 10px rgba(54, 48, 255, 0.3), 0 0 0 20px rgba(54, 48, 255, 0.3)
    }
    100% {
        -webkit-box-shadow: 0 0 0 10px rgba(54, 48, 255, 0.3), 0 0 0 20px rgba(54, 48, 255, 0.3), 0 0 0 30px rgba(54, 48, 255, 0);
        box-shadow: 0 0 0 10px rgba(54, 48, 255, 0.3), 0 0 0 20px rgba(54, 48, 255, 0.3), 0 0 0 30px rgba(2241, 42, 2, 0)
    }
}
@-webkit-keyframes ripple-blue-18 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(54, 48, 255, 0.3), 0 0 0 6px rgba(54, 48, 255, 0.3), 0 0 0 12px rgba(54, 48, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(54, 48, 255, 0.3), 0 0 0 6px rgba(54, 48, 255, 0.3), 0 0 0 12px rgba(54, 48, 255, 0.3);
    }
    100% {
        -webkit-box-shadow: 0 0 0 6px rgba(54, 48, 255, 0.3), 0 0 0 12px rgba(54, 48, 255, 0.3), 0 0 0 18px rgba(54, 48, 255, 0);
        box-shadow: 0 0 0 6px rgba(54, 48, 255, 0.3), 0 0 0 12px rgba(54, 48, 255, 0.3), 0 0 0 18px rgba(54, 48, 255, 0);
    }
}
.video-btn span {
    display: none;
}
/*
 * #-Hero Section
*/
.ct-hero-slider-item {
    padding-top: 230px;
    padding-bottom: 150px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.ct-hero-slider-item:after{
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background-color: #02084280;
}
.ct-hero-section4 {
    position: relative;
    z-index: 1;
    padding-top: 100px;
}
.ct-hero-section,
.ct-hero-section2 {
    padding-top: 140px;
    padding-bottom: 80px;
}
.ct-hero-section3 {
    z-index: 1;
    position: relative;
    min-height: 100vh;
    padding-top: 140px;
    padding-bottom: 80px;
}
.hero-padding-180-200{
    padding: 180px 0px 200px 0px;
}
.pt-hero-services-area {
    z-index: 1;
    position: relative;
}
.pt-hero-services-area .row {
    margin-top: -100px;
}
.ct-hero-section3 div#particles-js {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.ct-hero-section .content h4,
.ct-hero-section2 .content h4,
.ct-hero-section3 .content h4,
.ct-hero-slider-item .content h4,
.ct-hero-section4 h4 {
    color: var(--white-color);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}
.ct-hero-section2 .content h4{
    color: var(--primary-color);
}
.ct-hero-section .content h2,
.ct-hero-section2 .content h2,
.ct-hero-section3 .content h2,
.ct-hero-slider-item .content h2,
.ct-hero-section4 h2 {
    color: var(--white-color);
    font-size: 60px;
    margin: 20px 0;
}
.ct-hero-section4 h2 span{
    position: relative;
}
.ct-hero-section4 h2 span:after{
    background-repeat: no-repeat;
    bottom: -10px;
    content: "";
    height: 20px;
    position: absolute;
    right: 0;
    width: 201px;
    z-index: -1;
}
.ct-hero-section3 .content h2 span,
.ct-hero-slider-item .content h2 span{
    color: var(--primary-color);
}
.ct-hero-section2 .content h2{
    color: var(--headding-color);
}
.ct-hero-section2 .content h2 span{
    color: var(--primary-color);
    background-image: -webkit-linear-gradient(45deg, var(--primary-color) 48%, var(--headding-color) 56%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.ct-hero-section .content p,
.ct-hero-section2 .content p,
.ct-hero-section3 .content p,
.ct-hero-slider-item .content p,
.ct-hero-section4 p {
    color: var(--white-color);
    margin-bottom: 30px;
    font-size: 18px;
    font-weight: 500;
}
.ct-hero-section2 .content p{
    color: var(--body-color);
}
.ct-hero-section .content .h-button a.button-1:first-child,
.ct-hero-section2 .content .h-button a.button-1:first-child,
.ct-hero-section3 .content .h-button a.button-1:first-child,
.ct-hero-slider-item .content .h-button a.button-1:first-child,
.ct-hero-section4 .content .h-button a.button-1:first-child {
    margin-right: 20px;
}
.ct-hero-section .content .h-button a.button-1:after,
.ct-hero-section3 .content .h-button a.button-1:after,
.ct-hero-slider-item .content .h-button a.button-1:after {
    background-color: var(--white-bg);
}
.ct-hero-section .content .h-button a.button-1:hover,
.ct-hero-section3 .content .h-button a.button-1:hover,
.ct-hero-slider-item .content .h-button a.button-1:hover{
    color: var(--primary-color);
}
.ct-hero-section .content .h-button a.button-1.style-2,
a.button-1.style-2,
.ct-hero-section3 .content .h-button a.button-1.style-2{
    background-color: var(--white-bg);
    color: var(--primary-color);
}
.ct-hero-section2 .content .h-button a.button-1.style-2, a.button-1.style-2 {
    background-color: var(--no-change-color1);
    color: var(--white-color);
}
.ct-hero-section .content .h-button a.button-1.style-2:after,
.ct-hero-section3 .content .h-button a.button-1.style-2:after,
a.button-1.style-2:after {
    background-color: var(--primary-color);
}

.ct-hero-section .content .h-button a.button-1.style-2:hover,
.ct-hero-section3 .content .h-button a.button-1.style-2:hover,
a.button-1.style-2:hover{
    color: var(--white-color);
}
.ct-hero-section .content .h-button.vedio,
.ct-hero-section2 .content .h-button.vedio,
.ct-hero-section3 .content .h-button.vedio,
.ct-hero-slider-item .content .h-button.vedio {
    display: flex;
    align-items: center;
}
.ct-hero-section .content .h-button.vedio .video-btn,
.ct-hero-section2 .content .h-button.vedio .video-btn,
.ct-hero-section3 .content .h-button.vedio .video-btn,
.ct-hero-slider-item .content .h-button.vedio .video-btn {
    margin-left: 20px;
}
.ct-hero-section .content .h-button.vedio .video-btn a,
.ct-hero-section2 .content .h-button.vedio .video-btn a,
.ct-hero-section3 .content .h-button.vedio .video-btn a,
.ct-video-banner-image .video-btn a,
.ct-hero-slider-item .content .h-button.vedio .video-btn a {
    height: 70px;
    width: 70px;
    line-height: 100px;
    font-size: 24px;
    -webkit-transition:all .3s ease;
    transition: all .3s ease;
}
.ct-hero-section2 .content .h-button.vedio .video-btn a  {
    background: var(--primary-color);
    -webkit-transition: .5s -webkit-animation ripple-blue 1s linear infinite;
    animation: ripple-blue 1s linear infinite;
    color: var(--white-color);
}
.ct-hero-section .content .h-button.vedio .video-btn a:hover,
.ct-hero-section3 .content .h-button.vedio .video-btn a:hover,
.ct-video-banner-image .video-btn a:hover,
.ct-hero-slider-item .content .h-button.vedio .video-btn a:hover{
    color: var(--white-color);
    background: var(--primary-color);
}
.ct-hero-section2{
    position: relative;
}
.ct-hero-section4 .image {
    position: relative;
    z-index: 1;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
}
.ct-hero-section4 .image img {
    border-radius: 10px;
}
.ct-hero-section4 .image .video-btn {
    position: absolute;
    z-index: 2;
    top: calc( 50% - 33px );
    left: 0;
    right: 0;
}
.ct-hero-section4 .image .video-btn a.video-p-btn {
    width: 66px;
    height: 66px;
    font-size: 20px;
}
.ct-hero-section4 .image .video-btn a.video-p-btn:hover {
    background: var(--primary-color);
    color: var(--white-color);
}
.ct-hero-section4:after {
    background-color: var(--bs-body-bg);
    background-position-x: center;
    background-repeat: no-repeat;
    background-size: cover;
    bottom: -1px;
    -webkit-clip-path: polygon(100% 81%, 0 100%, 100% 100%);
    clip-path: polygon(100% 81%, 0 100%, 100% 100%);
    content: "";
    height: 380px;
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
}
.ct-hero-section2 .ct-shap .shap {
    position: absolute;
    z-index: -1;
}
.ct-hero-section2 .ct-shap .shap1 {
    top: 320px;
    left: 0px;
    -webkit-animation: hero-thumb-animation 2s linear infinite alternate;
    -moz-animation: hero-thumb-animation 2s linear infinite alternate;
    -o-animation: hero-thumb-animation 2s linear infinite alternate;
    animation: hero-thumb-animation 2s linear infinite alternate;
}
@media (max-width:1399px){
    .ct-hero-section2 .ct-shap .shap1 {
        left: -12px;
    }
}
.ct-hero-section2 .ct-shap .shap2 {
    top: 150px;
    left: 32%;
    -webkit-animation: hero-circle-2 4s linear infinite alternate;
    -moz-animation: hero-circle-2 4s linear infinite alternate;
    -o-animation: hero-circle-2 4s linear infinite alternate;
    animation: hero-circle-2 4s linear infinite alternate;
}
.ct-hero-section2 .ct-shap .shap3 {
    top: 220px;
    right: 100px;
    -webkit-animation: hero-triangle-1 6s linear infinite;
    -moz-animation: hero-triangle-1 6s linear infinite;
    -o-animation: hero-triangle-1 6s linear infinite;
    animation: hero-triangle-1 6s linear infinite;
}
.ct-hero-section2 .ct-shap .shap4 {
    right: 120px;
    bottom: 60px;
    -webkit-animation: hero-circle-2 4s linear 0s infinite alternate;
    -moz-animation: hero-circle-2 4s linear 0s infinite alternate;
    -o-animation: hero-circle-2 4s linear 0s infinite alternate;
    animation: hero-circle-2 4s linear 0s infinite alternate;
}
.ct-hero-section2 .ct-shap .shap5 {
    bottom: 18px;
    left: 40%;
    -webkit-animation: services-triangle 7s linear infinite alternate;
    -moz-animation: services-triangle 7s linear infinite alternate;
    -o-animation: services-triangle 7s linear infinite alternate;
    animation: services-triangle 7s linear infinite alternate;
}
@keyframes hero-triangle-1 {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes hero-thumb-animation {
  0% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes hero-thumb-sm-animation {
  0% {
    -webkit-transform: translateY(-20px) translateX(50px);
    -moz-transform: translateY(-20px) translateX(50px);
    -ms-transform: translateY(-20px) translateX(50px);
    transform: translateY(-20px) translateX(50px);
  }
  100% {
    -webkit-transform: translateY(-20px) translateX(0px);
    -moz-transform: translateY(-20px) translateX(0px);
    -ms-transform: translateY(-20px) translateX(0px);
    transform: translateY(-20px) translateX(0px);
  }
}
@keyframes hero-thumb-sm-2-animation {
  0% {
    -webkit-transform: translateY(-50px);
    -moz-transform: translateY(-50px);
    -ms-transform: translateY(-50px);
    transform: translateY(-50px);
  }
  100% {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes services-triangle {
  0% {
    -webkit-transform: rotate(0deg) translateX(-50px);
    -moz-transform: rotate(0deg) translateX(-50px);
    -ms-transform: rotate(0deg) translateX(-50px);
    transform: rotate(0deg) translateX(-50px);
  }
  100% {
    -webkit-transform: rotate(360deg) translateY(100px);
    -moz-transform: rotate(360deg) translateY(100px);
    -ms-transform: rotate(360deg) translateY(100px);
    transform: rotate(360deg) translateY(100px);
  }
}
@keyframes hero-circle-2 {
  0% {
    -webkit-transform: translateX(-200px);
    -moz-transform: translateX(-200px);
    -ms-transform: translateX(-200px);
    transform: translateX(-200px);
  }

  100% {
    -webkit-transform: translateX(0px);
    -moz-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
}

.swiper-slide-active .ct-hero-slider-item h2, 
.swiper-slide-active .ct-hero-slider-item .h-button, 
.swiper-slide-active .ct-hero-slider-item h4,
.swiper-slide-active .ct-hero-slider-item p{
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  animation-duration: 1.3s;
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.6s;
}
.swiper-slide-active .ct-hero-slider-item h4{
  -webkit-animation-delay: 0.7s;
  animation-delay: 0.7s;
}
.swiper-slide-active .ct-hero-slider-item h2 {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s;
}
.swiper-slide-active .ct-hero-slider-item p {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s;
}
.swiper-slide-active .ct-hero-slider-item .h-button {
  -webkit-animation-delay: 1.7s;
  animation-delay: 1.7s;
}
.ct-hero-slider-full{
    position: relative;
}
.hero-nav i{
    position: absolute;
    top: calc(50% - 35px);
    left: 7%;
    z-index: 999;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: var(--headding-color);
    background-color: var(--white-bg);
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0px 30px 50px rgba(3, 4, 28, 0.2);
}
.hero-nav .hero-button-next i {
    right: 7%;
    left: inherit;
}
.hero-nav i:hover{
    color: var(--white-color);
    background-color: var(--primary-color);
}
@media (max-width:1620px){
    .hero-nav i{
        left: 4%;
    }
    .hero-nav .hero-button-next i {
        right: 4%;
    } 
}
@media (min-width:1400px) and (max-width:1540px){
    .hero-nav i{
        left: 0.8%;
    }
    .hero-nav .hero-button-next i {
        right: 0.8%;
    }
}
@media (min-width:1200px) and (max-width:1340px){
    .hero-nav i{
        left: 0.8%;
    }
    .hero-nav .hero-button-next i {
        right: 0.8%;
    }
}
.ct-hero-slider-full .hero-slider-dot {
    text-align: center;
    position: absolute;
    bottom: 50px !important;
    left: 0;
    right: 0;
    z-index: 9;
}
.hero-slider-dot .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #D4D4DD;
    opacity: 1;
    margin: 0 9px !important;
    position: relative;
}
.hero-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--primary-color);
}
.hero-slider-dot .swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}
.hero-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    border-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1);
}
.hero-slider-dot .swiper-pagination-bullet button {
    font-size: 0;
    border: none;
    display: none;
}
/*
 * #-Section Title
*/
.ct-section-title h4 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0px;
    display: inline-block;
    padding: 0px 80px;
    margin-bottom: 15px;
    color: var(--primary-color);
}
.ct-section-title h4:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    top: calc( 50% - 1.5px );
    left: 0;
}
.ct-section-title h4:before {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    top: calc( 50% - 1.5px );
    right: 0;
}
.ct-section-title.text-left h4 {
    padding-left: 0;
}
.ct-section-title.text-left h4:after{
    display: none;
}
.ct-section-title.text-right h4 {
    padding-right: 0;
}
.ct-section-title.text-right h4:before{
    display: none;
}
.ct-section-title h2 {
    font-size: 42px;
    margin-bottom: 15px;
}
.ct-section-title h2 span {
    color: var(--primary-color);
    position: relative;
    z-index: 1;
}
.ct-section-title h2 span:after{
    background-repeat: no-repeat;
    bottom: -10px;
    content: "";
    height: 20px;
    position: absolute;
    right: 0;
    width: 201px;
    z-index: -1;
}
.ct-section-title h4.style-2:before{
    display: none;
}
.ct-section-title h4.style-2 {
    border: 1px solid var(--primary-color);
    line-height: 1;
    padding: 8px 10px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
}
.ct-section-title h4.style-2:after {
    background-color: var(--primary-color);
    width: 100%;
    height: 100%;
    top: 0;
    z-index: -1;
    opacity: 0.1;
    border-radius: 20px;
}
.ct-section-title p {
    font-size: 16px;
    font-weight: 500;
}
/*
 * #-Service Card
*/
.services-card-item {
    background: var(--white-bg);
    padding: 30px 40px;
    height: 100%;
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 7%);
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 7%);
    padding-top: 40px;
        border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.services-card-item:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 0%;
    background: var(--primary-bg);
    top: 0;
    left: 0;
    z-index: -1;
        border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.services-card-item:hover:after {
    height: 100%;
}
.services-card-item .icon {
    margin-bottom: 30px;
    max-width: 70px;
    width: 100%;
}
.services-card-item .icon img.img-hover,
.services-card-item-style3 .icon img.img-hover {
    display: none;
}
.services-card-item:hover .icon .im.hover img,
.services-card-item-style3:hover .icon .im.hover img {
    display: none;
}
.services-card-item:hover .icon .im.hover img.img-hover,
.services-card-item-style3:hover .icon .im.hover img.img-hover {
    display: block;
}
.services-card-item .content h2 {
    font-size: 24px;
    color: var(--headding-color);
    margin-bottom: 1rem;
}
.services-card-item:hover .content h2 {
    color: var(--white-color);
}
.services-card-item .content p {
    font-size: 16px;
    margin-bottom: 1rem;
}
.services-card-item:hover .content p {
    color: var(--white-color);
}
.services-card-item .content a i {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}
.services-card-item .content a {
    display: flex;
    align-items: center;
    line-height: 1;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
}
.services-card-item:hover .content a {
    color: var(--white-color);
}
.services-card-item .content a:hover i {
    margin-left: 1.2rem;
}
.services-card-item .icon .ic {
    color: var(--primary-color);
    font-size: 60px;
    line-height: 1;
}
.services-card-item:hover .icon .ic{
    color: var(--white-color);
}
.services-card-item-style2 {
    text-align: center;
    -webkit-box-shadow: 0 10px 60px rgba(0,0,0,.07);
    box-shadow: 0 10px 60px rgba(0,0,0,.07);
    border-top: 6px solid var(--primary-color);
    position: relative;
    z-index: 1;
    padding: 30px 25px;
    background: var(--white-bg);
    height: 100%;
}
.services-card-item-style2:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    background: var(--headding-color);
    z-index: -1;
}
.services-card-item-style2:hover:after {
    height: 100%;
}
.services-card-item-style2 .icon {
    margin: 0 auto 20px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f4f5f8;
    border-radius: 50%;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
    color: transparent;
    font-size: 50px;
    line-height: 1;
}
.services-card-item-style2 .icon svg{
    width: 50px;
    fill: var(--primary-color);
}
.services-card-item-style2:hover .icon svg{
    fill: var(--white-color);
}
.services-card-item-style2:hover .icon{
    -webkit-text-stroke-color: var(--white-color);
    background: var(--primary-color);
}
.services-card-item-style2 .icon .im img {
    max-width: 50px;
    width: 50px;
}
.services-card-item-style2 .icon .im.hover img.img-hover{
    display: none;
}
.services-card-item-style2:hover .icon .im.hover img{
    display: none;
}
.services-card-item-style2:hover .icon .im.hover img.img-hover{
    display: block;
}
.services-card-item-style2 .content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
    line-height: 25px;
}
.services-card-item-style2 .content h2 a{
    color: var(--headding-color);
}
.services-card-item-style2:hover .content h2 a{
    color: var(--white-color);
}
[data-bs-theme="dark"] .services-card-item-style2:hover .content p {
    color: var(--no-change-color1);
}
[data-bs-theme="dark"] .services-card-item-style2:hover .content h2 a {
    color: var(--no-change-color1);
}
[data-bs-theme="dark"] .services-card-item-style2 .content h2 a:hover{
    color: var(--primary-color);
}
.services-card-item-style2 .content h2 a:hover{
    color: var(--primary-color);
}
.services-card-item-style2 .content p{
    font-size: 15px;
    color: var(--body-color);
    line-height: 25px;
}
.services-card-item-style2:hover .content p{
    color: var(--white-color);
}
.services-card-item-style3 {
    border: 1px solid var(--ct-border-color2);
    position: relative;
    z-index: 1;
    padding: 50px 30px;
    padding-top: 50px;
    padding-right: 25px;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}
.services-card-item-style3:hover{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.services-card-item-style3 .services__shape-1 {
    position: absolute;
    top: -40px;
    right: 0;
    visibility: hidden;
    opacity: 0;
    z-index: 111;
}
.services-card-item-style3 .services__shape-2 {
    position: absolute;
    top: 0;
    right: -30px;
    visibility: hidden;
    opacity: 0;
    z-index: 11;
}
.services-card-item-style3:hover .services__shape-1 {
    top: 0;
    visibility: visible;
    opacity: 1;
}
.services-card-item-style3:hover .services__shape-2{
    right: 0;
    visibility: visible;
    opacity: 1;
}
.services-card-item-style3 .icon {
    margin-bottom: 25px;
}
.services-card-item-style3 .icon .ic {
    font-size: 45px;
    color: var(--primary-color);
    line-height: 1.1;
}
.services-card-item-style3:hover .icon .ic{
    color: var(--white-color);
}
.services-card-item-style3 .icon .ic svg {
    width: 45px;
    fill: var(--primary-color);
}
.services-card-item-style3:hover .icon .ic svg {
    fill: var(--white-color);
}
.services-card-item-style3 .content h2 {
    font-size: 22px;
    margin-bottom: 1rem;
}
.services-card-item-style3 .content p {
    margin-bottom: 20px;
    font-size: 16px;
}
.services-card-item-style3:hover .content h2,
.services-card-item-style3:hover .content p{
    color: var(--white-color);
}
.services-card-item-style3 a {
    border: 1px solid var(--ct-border-color2);
    padding: 8px 22px;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--headding-color);
    padding-right: 40px;
    position: relative;
    line-height: 25px;
}
.services-card-item-style3 a i {
    position: absolute;
    top: 13px;
    right: 23px;
}
.services-card-item-style3:hover a{
    color: var(--white-color);
}
.services-card-item-style3 a:hover {
    color: var(--headding-color);
    transform: scale(1.1);
    background: var(--white-bg);
    border: 1px solid var(--white-bg);
}
/*.services-card-item-style3 a:hover i{
    transform: scale(1.2);
    right: 10px;
}*/

/*
 * #-About Us
*/

@media (min-width:992px){
    .ct-about-us-section .content {
        padding-left: 30px;
    }
    .pl-30-992{
        padding-left: 30px;
    }
    .pl-20-992{
        padding-left: 20px;
    }
    .ml-30-992{
        margin-left: 30px;
    }
    .mr-30-992{
        margin-right: 30px;
    }
}
.ct-about-us-section .content p.text {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 30px;
}
.ct-about-us-section .content .ab-info .icon {
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    float: left;
    margin-right: 15px;
    background: #3630ff30;
    font-size: 22px;
    color: var(--primary-color);
    border-radius: 5px;
}
.ct-about-us-section .content .ab-info .info {
    overflow: hidden;
}
.ct-about-us-section .content .ab-info .info h4 {
    font-size: 20px;
    margin-bottom: 4px;
}
.ct-about-us-section .content .ab-info .info p {
    font-size: 16px;
    margin-top: 2px;
    display: inline-block;
}
.ct-about-us-section .content .ab-info:hover .icon {
    background: var(--primary-color);
    color: var(--white-color);
}
.ct-about-us-section .content .ab-info .icon i {
    transform: rotate(0);
}
.ct-about-us-section .content .ab-info:hover .icon i {
    transform: rotate(360deg);
}
.ct-about-us-image img {
    border-radius: 6px !important;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
}
.ct-about-us-image .ab-im-content {
    background: var(--white-bg);
    padding: 25px 25px 25px 20px;
    border-left: 10px solid var(--primary-color);
    box-shadow: 0 2px 40px 0 rgba(21,24,32,.06);
    margin-left: -100px;
    margin-top: 40px;
    overflow: hidden;
}
.ct-about-us-image .ab-im-content .icon {
    float: left;
    margin-right: 20px;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: transparent;
    font-size: 20px;
    background: #f4f5f8;
    border-radius: 50%;
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-color);
}
.ct-about-us-image .ab-im-content .con {
    overflow: hidden;
}
.ct-about-us-image .ab-im-content .con strong {
    display: block;
    font-size: 14px;
    margin-top: 2px;
    font-weight: 400;
    margin-bottom: 5px;
}
.ct-about-us-image .ab-im-content .con a {
    color: var(--headding-color);
    font-size: 16px;
    font-weight: 600;
    line-height: 30px;
}
.ct-about-us-section2 .content p.text {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 20px;
}
.ct-about-us-section2 .ct-section-title h2 span {
    font-weight: 500;
}
.ct-about-us-section2 .content .ab-list ul li {
    line-height: 32px;
    color: var(--headding-color);
    font-weight: 500;
}
.ct-about-us-section2 .content .ab-list ul li i{
    color: var(--primary-color);
    margin-right: 4px;
}
/*
 * #-Counter
*/
.ct-counter-section .row .mp-0 {
    margin: 0;
    padding: 0;
}
.ct-counter-section .ct-cs-full {
    margin-top: -80px;
}
.ct-counter-section .ct-cs-full .counter-item {
    background: var(--white-bg);
    border: 1px solid var(--ct-border-color2);
    border-right: 0px;
    padding: 35px 30px;
    display: flex;
    align-items: center;
    height: 100%;
}
.ct-counter-section .ct-cs-full .mp-0:last-child .counter-item {
    border-right: 1px solid var(--ct-border-color2);
}
.ct-counter-section .ct-cs-full .counter-item .icon {
    margin-right: 20px;
    background: var(--white-bg);
    box-shadow: 0px 0px 28px 0px rgba(0,0,0,0.08);
    border-radius: 4px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ct-counter-section .ct-cs-full .counter-item .icon img{
    -webkit-transition:all .6s ease;
    transition: all .6s ease;
    transform: rotate(0deg);
}
.ct-counter-section .ct-cs-full .counter-item:hover .icon img{
    transform: rotate(360deg);
}
.ct-counter-section .ct-cs-full .counter-item h2 {
    font-size: 35px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
}
.ct-counter-section .ct-cs-full .counter-item p {
    color: var(--headding-color);
    font-weight: 700;
    text-transform: uppercase;
    line-height: 24px;
}
.ct-counter-section .ct-cs-full .counter-item h2 small {
    font-weight: 500;
    line-height: 18px;
    display: inline-block;
    font-size: 26px;
    margin-left: 2px;
}
/*
 * #-Why Choose Us
*/
.ct-why-choose-us-section .content p.text {
    font-size: 16px;
    margin-bottom: 30px;
}
.ct-why-choose-us-section .why-lists .ab-info {
    margin-bottom: 30px;
    display: flex;
    position: relative;
    padding-left: 40px;
    align-items: center;
}
.ct-why-choose-us-section .why-lists .ab-info:last-child{
    margin-bottom: 0px;
}
.ct-why-choose-us-section .why-lists .ab-info .icon {
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 25px;
    font-size: 50px;
    color: var(--primary-color);
}
.ct-why-choose-us-section .why-lists .ab-info .info h4 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
}
.ct-why-choose-us-section .why-lists .ab-info .info p {
    font-size: 16px;
    line-height: 26px;
}
.ct-why-choose-us-section .why-lists .ab-info:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    height: 3px;
    width: 30px;
    background: var(--primary-color);
    left: 0;
    top: calc( 50% - 1.5px );
}
.ct-why-choose-us-section .why-lists {
    position: relative;
}
.ct-why-choose-us-section .why-lists .ab-info:before {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    height: calc( 100% + 30px );
    width: 3px;
    background: var(--primary-color);
    left: 0;
    top: 0px;
}
.ct-why-choose-us-section .why-lists .ab-info:first-child:before {
    height: calc( 100% + 10px );
    top: 50%;
}
.ct-why-choose-us-section .why-lists .ab-info:last-child:before {
    height: 50%;
    bottom: 50%;
}
.progress-bar {
  position: relative;
  overflow: visible;
  animation: animate 3s ease 0s 1 normal;    
  opacity: 1;
}
@keyframes animate{
    0%{
        width: 0%;
    }
}
.skill-list .single-skill-item {
    margin-bottom: 20px;
}
.skill-list .single-skill-item:last-child{
    margin-bottom: 0;
}
.skill-list .single-skill-item p {
    font-size: 15px;
    font-weight: 400;
    color: var(--headding-color);
    margin-bottom: 4px;
    letter-spacing: 1px;
}
.skill-list .single-skill-item p b {
    float: right;
    font-weight: 700;
}
.skill-list .single-skill-item .progress {
    height: 7px;
    line-height: 7px;
    border-radius: 0px;
    background: #000;
}
.skill-list .single-skill-item .progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.25) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .25) 50%, rgba(255, 255, 255, .25) 75%, transparent 75%, transparent);
}
/*
 * #-Portfolio
*/
.portfolio-item-single {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 10px;
}
.portfolio-item-single:after {
    position: absolute;
    content: "";
    left: 15px;
    top: 15px;
    right: 15px;
    bottom: 15px;
    background-color: var(--white-color);
    border-radius: 10px;
    opacity: 0;
    -webkit-transform: perspective(600px) rotateY(20deg);
    -moz-transform: perspective(600px) rotateY(20deg);
    -ms-transform: perspective(600px) rotateY(20deg);
    -o-transform: perspective(600px) rotateY(20deg);
    transform: perspective(600px) rotateY(20deg);
}
.portfolio-item-single:hover:after {
    visibility: visible;
    opacity: 0.95;
    -webkit-transform: perspective(600px) rotateY(0deg);
    -moz-transform: perspective(600px) rotateY(0deg);
    -ms-transform: perspective(600px) rotateY(0deg);
    -o-transform: perspective(600px) rotateY(0deg);
    transform: perspective(600px) rotateY(0deg);
}
.portfolio-item-single .content {
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 15px;
    z-index: 1;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}
.portfolio-item-single .content h2 {
    font-family: var(--tp-ff-space);
    font-size: 28px;
    letter-spacing: -0.04em;
    margin-bottom: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
    visibility: hidden;
    opacity: 0;
}
.portfolio-item-single:hover .content h2 {
    transition-delay: 0.2s;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}
.portfolio-item-single .content strong {
    visibility: hidden;
    opacity: 0;
    transition-delay: 0s;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
}
.portfolio-item-single:hover .content strong {
    bottom: 15px;
    visibility: visible;
    opacity: 1;
    transition-delay: 0.3s;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
}
.portfolio-item-single .zoom-icon {
    position: absolute;
    top: 35px;
    right: 35px;
    transform: scale(0);
    z-index: 9;
}
.portfolio-item-single:hover .zoom-icon{
    transform: scale(1);
}
.portfolio-item-single .zoom-icon a {
    height: 45px;
    width: 45px;
    text-align: center;
    border: 2px solid rgba(3, 4, 28, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--no-change-color1);
    font-size: 16px;
    border-radius: 50%;
    transform: scale(0);
}
.portfolio-item-single:hover .zoom-icon a{
    transform: scale(1);
}
.portfolio-item-single .zoom-icon a:hover{
    color: var(--white-color);
    background: var(--primary-color);
    border-color: var(--primary-color);
}
.portfolio-item-single .content h2 a {
    font-size: 26px;
    color: var(--no-change-color1);
}
.portfolio-item-single .content h2 a:hover{
    color: var(--primary-color);
}
.portfolio-cate-list-full ul li {
    display: inline-block;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    color: var(--headding-color);
    padding: 0px 13px;
}
/*.portfolio-cate-list-full ul li:first-child {
    padding-left: 0;
}*/
.portfolio-cate-list-full ul li.mixitup-control-active {
    color: var(--primary-color);
    position: relative;
}
.portfolio-cate-list-full ul li:last-child {
    padding-right: 0;
}
.portfolio-cate-list-full ul li.mixitup-control-active:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    top: calc( 50% - 3px );
    left: 3px;
    border-radius: 50%;
}
.portfolio-cate-list-full ul li:hover {
    color: var(--primary-color);
}
.portfolio-slider-full .portfolio-nav i {
    position: absolute;
    top: calc( 50% - 35px );
    left: 15%;
    z-index: 999;
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    text-align: center;
    color: var(--no-change-color1);
    background-color: var(--white-color);
    border-radius: 50%;
    font-size: 18px;
    box-shadow: 0px 30px 50px rgba(3, 4, 28, 0.2);
}
.portfolio-slider-full .portfolio-nav .portfolio-button-next i{
    right: 15%;
    left: inherit;
}
.portfolio-slider-full .portfolio-nav i:hover{
    background-color: var(--primary-color);
    color: var(--white-color);
}
@media (max-width:1399px){
    .portfolio-slider-full .portfolio-nav i{
        left: 7%;
    }
    .portfolio-slider-full .portfolio-nav .portfolio-button-next i{
        right: 7%;
    }
}
.portfolio-slider-full .portfolio-slider-dot {
    text-align: center;
    margin-top: 40px;
}
.portfolio-slider-dot .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background-color: #D4D4DD;
    opacity: 1;
    margin: 0 9px !important;
    position: relative;
}
.portfolio-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background-color: var(--primary-color);
}
.portfolio-slider-dot .swiper-pagination-bullet::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: calc(100% + 16px);
    height: calc(100% + 16px);
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
}
.portfolio-slider-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
    border-color: var(--primary-color);
    transform: translate(-50%, -50%) scale(1);
}
.portfolio-slider-dot .swiper-pagination-bullet button {
    font-size: 0;
    border: none;
    display: none;
}
/* 
 * #-Banner Section
*/
.banner-section-1 {
    padding: 150px 0px;
    position: relative;
    z-index: 1;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.banner-section-1:after {
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: var(--secondary-color);
    top: 0;
    left: 0;
    opacity: .7;
}
.banner-section-1 .content {
    max-width: 700px;
    margin: 0 auto;
}
.banner-section-1 .content .ct-section-title h4 {
    color: var(--white-color);
}
.banner-section-1 .content .ct-section-title  h2 {
    color: var(--white-color);
    font-size: 55px;
}
.banner-section-1 .content .ct-section-title {
    margin-bottom: 30px;
}
/* 
 * Banner 2
*/
.home-banner2-sec {
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 50px 40px;
}
.home-banner2-sec h2 {
    font-size: 42px;
    color: var(--white-color);
    letter-spacing: 1px;
}
/* 
 * #-Team 
*/
.team-card-single {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    transition: all .3s ease;
}
.team-card-single:hover {
    transform: translateY(-8px);
}
.team-card-single .social {
    position: absolute;
    background: var(--primary-color);
    width: 40px;
    border-radius: 20px;
    padding: 12px 0px;
    bottom: 50px;
    right: 15px;
    text-align: center;
    transform: scaleY(0);
    transition: all .4s ease;
    transform-origin: bottom;
}
.team-card-single:hover .social {
    transform: scaleY(1);
}
.team-card-single img {
    transition: all .6s ease;
}
.team-card-single:hover img {
    transform: scale(1.2);
}
.team-card-single .social span {
    display: inline-block;
    width: 100%;
    margin: 6px 0px;
}
.team-card-single .social span a {
    color: var(--white-color);
    font-size: 14px;
}
.team-card-single .social span a svg {
    width: 14px;
    fill: var(--white-color);
}
.team-card-single .content {
    position: absolute;
    z-index: 1;
    bottom: 10px;
    left: 15px;
    width: calc( 100% - 72px );
}
.team-card-single .content h4 {
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 600;
    padding: 8px 15px;
    line-height: 20px;
    border-radius: 3px;
    display: inline-block;
}
.team-card-single .content p {
    background: var(--primary-color);
    display: inline-block;
    margin-bottom: 5px;
    padding: 2px 16px;
    color: var(--white-color);
    font-size: 12px;
    font-weight: 400;
    line-height: 24px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
/*
 * #-Testimonial
*/
.testimonial-card {
    background: var(--white-bg);
    padding: 30px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}
.testimonial-card .rating-a {
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
}
.testimonial-card .rating-a .quote {
    line-height: 1;
    font-size: 45px;
    margin-right: 5px;
    -webkit-text-stroke-width: 1.5px;
    -webkit-text-stroke-color: var(--headding-color);
    color: transparent;
    transform: translateY(5px);
}
.testimonial-card .rating-a  .rating i {
    font-size: 18px;
    color: #ff8a43;
}
.testimonial-card .content {
    margin-bottom: 20px;
}
.testimonial-card .content p {
    font-size: 16px;
    font-style: italic;
}
.testimonial-card .t-btm {
    overflow: hidden;
}
.testimonial-card .t-btm .thum {
    width: 60px;
    height: 60px;
    float: left;
    margin-right: 20px;
}
.testimonial-card .t-btm .thum img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}
.testimonial-card .t-btm .r-name {
    overflow: hidden;
}
.testimonial-card .t-btm .r-name h4 {
    font-size: 16px;
    margin-top: 4px;
    padding-bottom: 10px;
    font-weight: 700;
    letter-spacing: 1px;
}
.top-slider-tes .swiper-slide{
    width: 320px;
}
/*
 * #-Work In Progress
*/
.ct-workin-progress{
    position: relative;
}
.ct-workin-progress .process-line {
    position: absolute;
    left: 0;
    bottom: 50px;
    width: 100%;
    text-align: center;
}
.work-in-progress-card {
    position: relative;
    box-shadow: 0px 10px 15px rgb(8 14 28 / 1%);
    border-radius: 5px;
    background-color: var(--white-bg);
    text-align: center;
    padding: 30px 20px;
    max-width: 230px;
    margin-left: auto;
    margin-right: auto;
    height: 100%;
}
.work-in-progress-card .card-num{
    height: 60px;
    width: 60px;
    line-height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    text-align: center;
    position: absolute;
    top: -30px;
    left: -30px;
    z-index: 2;
    font-size: 36px;
    font-weight: 700;
    color: var(--white-color);
    -webkit-transition: .5s -webkit-animation ripple-blue-18 1s linear infinite;
    animation: ripple-blue-18 1s linear infinite;
}
.work-in-progress-card .icon {
    margin-bottom: 20px;
    font-size: 38px;
    line-height: 1;
    color: var(--primary-color);
}
.work-in-progress-card .icon svg {
    width: 40px;
    fill: var(--primary-color);
}
.work-in-progress-card .content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}
@-webkit-keyframes ripple-white-18 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(54, 48, 255, 0.3), 0 0 0 6px rgba(54, 48, 255, 0.3), 0 0 0 12px rgba(54, 48, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(54, 48, 255, 0.3), 0 0 0 6px rgba(54, 48, 255, 0.3), 0 0 0 12px rgba(54, 48, 255, 0.3);
    }
    100% {
        -webkit-box-shadow: 0 0 0 6px rgba(54, 48, 255, 0.3), 0 0 0 12px rgba(54, 48, 255, 0.3), 0 0 0 18px rgba(54, 48, 255, 0);
        box-shadow: 0 0 0 6px rgba(54, 48, 255, 0.3), 0 0 0 12px rgba(54, 48, 255, 0.3), 0 0 0 18px rgba(54, 48, 255, 0);
    }
}
@-webkit-keyframes ripple-white-18 {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 6px rgba(255, 255, 255, 0.3), 0 0 0 12px rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3), 0 0 0 6px rgba(255, 255, 255, 0.3), 0 0 0 12px rgba(255, 255, 255, 0.3);
    }
    100% {
        -webkit-box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3), 0 0 0 12px rgba(255, 255, 255, 0.3), 0 0 0 18px rgba(255, 255, 255, 0);
        box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3), 0 0 0 12px rgba(255, 255, 255, 0.3), 0 0 0 18px rgba(255, 255, 255, 0);
    }
}
/*
 * #-Pricing Plan
*/
.tab-pane.fade.show {
    transform: translateY(0rem);
}
.tab-pane.fade {
    transition: all 0.3s ease-out;
    transform: translateY(1rem);
}
.ct-pricing-plan-section p.save-txt {
    color: var(--headding-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
}
.ct-pricing-plan-section ul.nav {
    border-bottom: none;
    display: inline-block;
}
.ct-pricing-plan-section ul.nav li.nav-item{
    display: inline-block;
}
.ct-pricing-plan-section ul.nav li.nav-item button {
    text-transform: capitalize;
    padding: 5px 30px;
    position: relative;
    color: var(--headding-color);
    background: transparent;
    border: none;
    font-size: 18px;
    width: auto;
    border: none !important;
    font-family: var(--headding-font);
    font-weight: 500;
}
.ct-pricing-plan-section ul.nav li:first-child button {
    padding-left: 0 !important;
}
.ct-pricing-plan-section ul.nav li:nth-child(2) button {
    padding-right: 0px;
}
.ct-pricing-plan-section ul.nav li button::before {
    position: absolute;
    content: "";
    width: 47px;
    height: 25px;
    background: var(--white-bg);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    right: -27px;
    top: 68%;
    margin-top: -20px;
    border: 1px solid var(--primary-color) !important;
    z-index: 1;
}
.ct-pricing-plan-section ul.nav li button::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    background: var(--primary-color);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    margin-top: -15px;
    z-index: 1;
    top: 66.5%;
    right: -22px;
    animation-name: fadeInLeft;
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    animation-duration: .3s;
    -webkit-animation-duration: .3s;
    -moz-animation-duration: .3s;
}
.ct-pricing-plan-section ul.nav li:nth-child(even) button{
    text-align:right
}
.ct-pricing-plan-section ul.nav li:nth-child(even) button::before{
    left:-27px;
    right:auto
}
.ct-pricing-plan-section ul.nav li:nth-child(even) button::after{
    right:auto;
    left:-22px;
    animation-name:fadeInRight;
    -webkit-animation-name:fadeInRight;
    -moz-animation-name:fadeInRight;
    animation-duration:.3s;
    -webkit-animation-duration:.3s;
    -moz-animation-duration:.3s
}
.ct-pricing-plan-section ul.nav li button.active::after, 
.ct-pricing-plan-section ul.nav li button.active::before{
    display:none;
    z-index:-9
}
.ct-pricing-plan-section ul.nav li button.active {
    color: var(--primary-color);
    font-weight: 600;
}
.ct-price-card {
    height: 100%;
    border: 1px solid var(--ct-border-color2);
    position: relative;
    padding: 30px;
}
.ct-price-card h4 {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.ct-price-card .price {
    margin-bottom: 15px;
}
.ct-price-card .price h2 {
    font-weight: 600;
    font-size: 40px;
}
.ct-price-card .price h2 sub {
    font-size: 16px;
    line-height: 1;
}
.ct-price-card .s-content p {
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--headding-color);
}
.ct-price-card .badge-text {
    position: absolute;
    top: 20px;
    z-index: 1;
    right: -12px;
    background: var(--no-change-color1);
    padding: 6px 16px;
    display: inline-block;
    box-sizing: border-box;
    padding-left: 32px;
    clip-path: polygon(100% 0%, 100% 50%, 100% 100%, 0 100%, 18% 51%, 0 0);
}
.ct-price-card .badge-text p {
    color: var(--white-color);
    line-height: 1;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}
.ct-price-card .p-con ul li {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    font-size: 15px;
    font-weight: 400;
    padding: 5px 0px;
}
.ct-price-card .p-con ul li i {
    color: var(--headding-color);
    padding-right: 3px;
}
.ct-price-card .p-con ul li.no i {
    color: #ff8b8b;
}
.ct-price-card .p-con ul li.no {
    opacity: .8;
}
.ct-price-card  .p-button {
    margin-top: 20px;
}
.button-2 {
    background: var(--white-bg);
    padding: 16px 30px 16px;
    border: 2px solid var(--ct-border-color2);
    font-weight: 600;
    font-size: 16px;
    color: var(--headding-color);
    display: inline-flex;
    align-items: center;
    line-height: 25px;
}
.button-2 i{
    padding-left: 8px;
}
.button-2:hover{
    background: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}
.ct-price-card .button-2{
    padding: 10px 30px 10px;
}
.ct-price-card.active {
    border-color: var(--headding-color);
}
.ct-client-logo-slider .swiper-slide {
    width: 200px;
    padding: 0px 45px;
}
.ct-client-logo-sec .ct-l-text p {
    color: var(--headding-color);
    font-weight: 500;
    font-size: 18px;
    font-family: var(--headding-font);
}
.ct-client-logo-sec .ct-l-text p span{
    color: var(--primary-color);
    font-weight: 600;
}
/*
 * Nav Tab Image Section
*/
.ct-tab-image-left .nav.nav-tabs {
    border: none !important;
}
.ct-tab-image-left .nav.nav-tabs .nav-link {
    border: none !important;
    width: 100%;
    margin-right: 20px;
    background-color: transparent !important;
}
@media (min-width:992px){
    .ct-tab-image-left .nav.nav-tabs .nav-link {
        margin-right: 20px;
    }
    .ct-why-choose-us-section.skts .content {
        padding-right: 20px;
    }
}
.ct-tab-image-left .nav.nav-tabs .nav-link .nav-item-signle{
    margin-bottom: 15px;
    border: 1px solid var(--ct-border-color2);
    border-radius: 5px;
    padding: 20px;
    display: flex;
    cursor: pointer;
}
.ct-tab-image-left .nav.nav-tabs .nav-link:last-child .nav-item-signle{
    margin-bottom: 0;
}
.ct-tab-image-left .nav.nav-tabs .nav-link.active .nav-item-signle{
    -webkit-box-shadow: 0px 10px 50px rgba(11, 23, 40, 0.1);
    box-shadow: 0px 10px 50px rgba(11, 23, 40, 0.1);
    border-color: var(--primary-color);
    background-color: var(--white-bg);
}
.ct-tab-image-left .nav.nav-tabs .nav-link .nav-item-signle .number span {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--ct-border-color2);
    font-size: 18px;
    border-radius: 50%;
    color: var(--body-color);
}
.ct-tab-image-left .nav.nav-tabs .nav-link.active .nav-item-signle .number span{
    color: var(--primary-color);
    border-color: var(--primary-color);
}
.ct-tab-image-left .nav.nav-tabs .nav-link .nav-item-signle .content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    font-weight: 600;
}
.ct-video-banner-image .banner-img{
    position: relative;
    z-index: 1;
}
.ct-video-banner-image .banner-img:after{
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
/*
 * #-Industry We Serve
*/
.ct-industry-item {
    padding: 1.5rem;
    background: var(--white-bg);
    border-radius: 5px;
    text-align: center;
}
.ct-industry-item:hover{
    box-shadow: 0px 10px 30px 0px rgb(0 0 0 / 7%);
}
.ct-industry-item .icon {
    width: 65px;
    height: 65px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    margin-bottom: 1.5rem;
    border: 1px solid var(--ct-border-color);
    box-sizing: border-box;
    border-radius: 50%;
}
.ct-industry-item:hover .icon{
    border-color: var(--primary-color);
}
.ct-industry-item .icon svg {
    width: 28px;
    fill: var(--body-color);
}
.ct-industry-item:hover .icon svg{
    fill: var(--primary-color);
}
.ct-industry-item .icon i {
    color: var(--body-color);
    font-size: 28px;
    line-height: 1.1;
}
.ct-industry-item:hover .icon i{
    color: var(--primary-color);
}
.ct-industry-item .icon .im img {
    width: 28px;
}
.ct-industry-item .icon .im.hover img.img-hover {
    display: none;
}
.ct-industry-item:hover .icon .im.hover img{
    display: none;
}
.ct-industry-item:hover .icon .im.hover img.img-hover {
    display: block;
}
.ct-industry-item h2 {
    font-size: 1.05rem;
    font-weight: 600;
}
.ct-industry-item:hover h2{
    color: var(--primary-color);
}
/*
 * #-Contact Us
*/
.ct-contact-list .item-cf {
    margin-bottom: 30px;
    overflow: hidden;
    background: var(--section-bg);
    border-radius: 5px;
    padding: 30px;
    display: flex;
}
.ct-contact-list .item-cf:last-child{
    margin-bottom: 0px;
}
.ct-contact-list .item-cf .icon {
    width: 75px;
    height: 75px;
    background: var(--white-bg);
    margin-right: 16px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 27px;
    color: var(--primary-color);
}
.ct-contact-list .item-cf .icon svg {
    width: 30px;
    fill: var(--primary-color);
}
.ct-contact-list .item-cf h4 {
    font-size: 20px;
    margin-bottom: 8px;
}
.ct-contact-from {
    background: var(--section-bg);
    border-radius: 5px;
    padding: 30px;
}
.ct-contact-from h2 {
    font-size: 30px;
    margin-bottom: 30px;
}
.single-input label {
    display: block;
    margin-bottom: 2px;
    font-size: 15px;
    font-weight: 500;
    color: var(--headding-color);
}
.single-input input,
.single-input select,
.single-input textarea {
    width: 100%;
    border: 1px solid var(--section-bg);
    padding: 13px 18px;
    outline: none;
}
.single-input textarea{
    height: 120px;
}
.single-input input:focus,
.single-input select:focus,
.single-input textarea:focus {
    border-color: var(--primary-color);
}
.single-input input[type='submit'] {
    width: auto;
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 500;
    letter-spacing: 1px;
    padding: 13px 30px;
    color: var(--white-color);
    outline: none;
}
.single-input input[type='submit']:hover{
    color: var(--white-color);
    background: var(--headding-color);
    border-color: var(--headding-color);
}
.single-input br {
    display: none;
}
.ct-client-logo-section .ct-l-text p {
    color: var(--headding-color);
    font-weight: 500;
    font-size: 18px;
    font-family: var(--headding-font);
}
.ct-client-logo-section .ct-l-text p span{
    color: var(--primary-color);
}
.ct-client-logo-section .single-logo-item2 {
    border-radius: 4px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 20px 20px 20px;
}
.services-contact-section {
    max-width: 600px;
    margin: 0 auto;
    background: #dbdbf5;
    border-radius: 5px;
    padding: 35px 30px;
    position: relative;
    padding-left: 35px;
}
.services-contact-section .icon {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--white-bg);
    font-size: 28px;
    color: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0px 0px 4px 0px #cccccc63;
    position: absolute;
    top: -35px;
    left: -35px;
}
.services-contact-section p {
    font-size: 16px;
    font-weight: 600;
    color: var(--headding-color);
}
.services-contact-section a.button-2 {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--white-color);
    border-radius: 5px;
    padding: 10px 28px;
}
.services-contact-section .text-md-right {
    text-align: right;
}
.services-contact-section a.button-2:hover{
    color: var(--headding-color);
    background: transparent;
}
.services-details-list {
    background: var(--section-bg);
    border-radius: 4px;
    padding: 30px 30px;
}
.services-details-list h3 {
    font-size: 24px;
    margin-bottom: 15px;
}
.services-details-list ul li {
    display: inline-block;
    width: 100%;
    line-height: 30px;
    margin: 6px 0px;
}
.services-details-list ul li a {
    display: inline-block;
    width: 100%;
    background: var(--white-bg);
    padding: 7px 20px;
    line-height: 28px;
    font-weight: 600;
    font-size: 14px;
    padding-top: 10px;
    color: var(--headding-color);
}
.services-details-list ul li a:hover {
    color: var(--white-color);
    background: var(--primary-color);
}
.services-details-list ul li.yes a {
    color: var(--white-color);
    background: var(--primary-color);
}
.services-details-ct-banner{
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    position: relative;
    z-index: 1;
    padding: 45px 30px;
    text-align: center;
    border-radius: 4px;
    overflow: hidden;
}
.services-details-ct-banner:after{
    content: "";
    clear: both;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}
.services-details-ct-banner .icon {
    height: 60px;
    width: 60px;
    line-height: 30px;
    background-color: var(--white-color);
    border-radius: 50%;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    -webkit-transition: .5s -webkit-animation ripple-white-18 1s linear infinite;
    animation: ripple-white-18 1s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    margin-bottom: 25px;
}
.services-details-ct-banner h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 22px;
    color: var(--white-color);
}
.services-details-ct-banner h5 {
    color: var(--white-color);
    font-size: 18px;
}
/*
 * Faq
*/
.accordion-item {
    border: 1px solid var(--ct-border-color2) !important;
    border-bottom: none !important;
    background-color: transparent !important;
}
.accordion-item:last-child{
    border-bottom: 1px solid var(--ct-border-color2) !important;
}
.accordion-item .accordion-header {
    line-height: 1;
    margin: 0;
    padding: 0;
}
.accordion-item .accordion-header a {
    font-size: 16px;
    width: 100%;
    display: inline-block;
    color: var(--headding-color);
    padding: 20px 20px;
    font-weight: 500;
    text-transform: capitalize;
    position: relative;
}
.accordion-item .accordion-header a::after {
    content: "-";
    clear: both;
    overflow: hidden;
    position: absolute;
    top: 14px;
    right: 10px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    color: var(--white-color);
    font-size: 20px;
    height: 30px;
}
.accordion-item .accordion-header a.collapsed::after{
    content: "+";
}
.accordion-item .accordion-body {
    border: none;
    padding: 15px 20px;
    border-top: 1px solid var(--ct-border-color2);
}
.accordion-item .accordion-collapse {
    border: none;
}
.accordion-item .accordion-body p {
    line-height: 30px;
    color: var(--body-color);
}
h2.accordion-header {
    padding: 0 !important;
    margin: 0 !important;
}
.accordion-item .accordion-header a:hover{
    color: var(--primary-color);
}

.ct-hero-section2,
.ct-hero-section3{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
.ct-video-banner-image .banner-img{
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 200px 0px 200px 0px;
    margin: -200px 0px 0px 0px;
}
.v-banner-bottom-p {
    padding-bottom: 280px;
}
.services-details-ct-banner:after {
    background-color: #0100FED6;
}
.section-bg .ct-contact-list .item-cf {
    background: var(--white-bg);
}
.section-bg .ct-contact-list .item-cf .icon {
    background: var(--section-bg);
}
.section-bg .ct-contact-from {
    background: var(--white-bg);
}
.menu.one-page ul li a {
    padding: 30px 13px;
}
.sticky .menu ul li.current a {
    color: var(--primary-color);
}
[data-bs-theme="dark"] .ct-counter-section .ct-cs-full .counter-item .icon {
    box-shadow: 0px 0px 28px 0px rgb(201 201 201 / 9%);
}
[data-bs-theme="dark"] .services-contact-section {
    background: #06061a;
}

[data-bs-theme="dark"] .sticky .menu ul li a{
    color: var(--no-change-color1);
}
    
[data-bs-theme="dark"] .sticky .menu ul li > ul li a{
    color: var(--white-color);
}
[data-bs-theme="dark"] .sticky .menu ul li:hover > a {
    color: var(--primary-color);
}
[data-bs-theme="dark"] .button-1:hover {
    color: var(--no-change-color1);
}
[data-bs-theme="dark"] .header .button-1:hover{
    color: var(--white-color);
}
[data-bs-theme="dark"] .services-card-item {
    -webkit-box-shadow: 0px 10px 30px 0px rgb(172 172 172 / 7%);
    box-shadow: 0px 10px 30px 0px rgb(172 172 172 / 7%);
}



.ct-hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh; /* ensures full-screen coverage */
  background-repeat: no-repeat;
  background-size: cover; /* stretches the image to fill */
  background-position: center center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Optional: to make text pop if background is bright */
.ct-hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25); /* subtle overlay */
  z-index: 0;
}

.ct-hero-section .content,
.ct-hero-section .image {
  position: relative;
  z-index: 1;
}








/* ===== HEADER ALIGNMENT PATCH ===== */

/* keep the row aligned vertically */
.header .row{ align-items:center; }

/* make the right column a flex row that contains: [menu] [CTA] */
.header .col-lg-10{
  display:flex;
  align-items:center;
  gap:16px;
}

/* put menu on the left of the right column and let it take space */
.header .menu{
  order:1;
  flex: 1 1 auto;               /* menu expands, CTA stays at the end */
  min-width: 0;                  /* allow shrinking to avoid wrapping */
}

/* center the links and stop them wrapping into 2 lines */
.header .menu nav > ul{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;                      /* adjust spacing if needed */
  margin:0; padding:0; list-style:none;
  flex-wrap:nowrap;
}
.header .menu nav > ul > li{ white-space:nowrap; } /* keep “Contact Us” on one line */
.header .menu nav > ul > li > a{ padding:12px 6px; } /* slightly tighter padding */

/* put the button at the far right IN FLOW (not absolute) */
.header .h-right-button{
  position: static !important;   /* override any absolute positioning */
  order:2;
  margin-left:auto;              /* pushes it to the edge */
  flex: 0 0 auto;
}

/* hide hamburger on desktop so it doesn't push the layout */
@media (min-width: 992px){
  .canvas_open_full{ display:none !important; }
}

/* optional: if your header has a fixed width container, let it breathe */
.header .container{ width: min(1280px, 92%); }

/* dropdown caret spacing polish */
.header .menu .menu-item-has-children > a i{ margin-left:4px; }















/*---Consultant page-*/

.consult-section {
  padding: 80px 0;
  background: linear-gradient(145deg, #edf1f8 0%, #e3ebf5 50%, #f7f8fc 100%);
}

.consult-section .row {
  --bs-gutter-x: 2.5rem;
}

.consult-info-card {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 26px;
  padding: 40px 36px;
  box-shadow: 0 25px 60px rgba(14, 38, 68, 0.1);
  position: sticky;
  top: 90px;
}

.consult-info-card .label {
  font-size: 13px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #3A6EA5;
  font-weight: 600;
  margin-bottom: 10px;
}

.consult-info-card .title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172a;
  margin-bottom: 16px;
}

.consult-info-card .desc {
  color: #4b5563;
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.7;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
  display: grid;
  gap: 10px;
}
.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #111827;
  font-weight: 500;
}
.feature-list i {
  color: #1B9AAA;
  margin-top: 3px;
}

.call-box {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(58, 110, 165, 0.15);
  border-radius: 18px;
  padding: 12px 18px;
  width: fit-content;
}
.call-box .icon {
  width: 42px;
  height: 42px;
  background: #3A6EA5;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
}
.call-box .small {
  font-size: 12px;
  color: #6b7280;
  display: block;
}
.call-box .call-link {
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}
.call-box .call-link:hover {
  color: #1B9AAA;
}

.consult-form-card {
  background: #ffffff;
  border-radius: 26px;
  padding: 35px 30px;
  box-shadow: 0 25px 60px rgba(8, 25, 44, 0.08);
  border: 1px solid rgba(14, 52, 82, 0.05);
  position: sticky;
  top: 90px;
}
.consult-form-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #0f172a;
}

.consult-form-card .form-control,
.consult-form-card select,
.consult-form-card textarea {
  background: #f3f4f6;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 11px 14px;
  font-size: 14px;
  transition: all .15s ease-in-out;
}
.consult-form-card .form-control:focus,
.consult-form-card select:focus,
.consult-form-card textarea:focus {
  background: #fff;
  border-color: rgba(58, 110, 165, .35);
  box-shadow: 0 0 0 4px rgba(58, 110, 165, .07);
  outline: none;
}

.btn-submit {
  background: linear-gradient(135deg, #3A6EA5 0%, #1B9AAA 100%);
  border: none;
  color: #fff;
  padding: 13px 18px;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  transition: all .2s ease-in-out;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(58, 110, 165, 0.25);
}

.error {
  display: none;
  color: #d90429;
  font-size: 11px;
  margin-top: 3px;
}
.form-message {
  font-weight: 600;
  display: none;
}

@media (max-width: 991.98px) {
  .consult-info-card,
  .consult-form-card {
    position: static;
  }
  .consult-info-card {
    margin-bottom: 20px;
  }
  .consult-info-card .title {
    font-size: 30px;
  }
}
@media (max-width: 575.98px) {
  .consult-section {
    padding: 50px 0 70px;
  }
  .consult-form-card,
  .consult-info-card {
    padding: 25px 20px;
  }
}
/*----Consultant end */



/*---Blog---*/
.blog-section {
  background: linear-gradient(145deg, #f5f7fa 0%, #e8edf6 50%, #f5f6fb 100%);
  padding: 90px 0;
}

.section-header .subtitle {
  color: #20477b;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-header .title {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.section-header .desc {
  color: #6b7280;
  font-size: 15px;
  max-width: 600px;
  margin: 0 auto;
}

.blog-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  border: 1px solid rgba(230, 235, 240, 0.8);
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(58, 110, 165, 0.15);
}

.blog-card .thumb {
  position: relative;
  overflow: hidden;
}
.blog-card .thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .thumb img {
  transform: scale(1.08);
}

.blog-card .date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(25, 25, 25, 0.85);
  color: #fff;
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-card .date-badge i {
  font-size: 12px;
}

.blog-content {
  padding: 20px 22px 26px;
}
.blog-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.4;
}
.blog-content h3 a {
  text-decoration: none;
  color: inherit;
}
.blog-content h3 a:hover {
  color: #3A6EA5;
}

.blog-content .meta {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  padding: 0;
  list-style: none;
}
.blog-content .meta li {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-content .meta i {
  color: #1B9AAA;
}

@media (max-width: 767.98px) {
  .section-header .title {
    font-size: 28px;
  }
  .blog-card .thumb img {
    height: 220px;
  }
}

/*---Blog end----*/

/*---Poppins fontforce*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html, body,
p, a, li,
h1, h2, h3, h4, h5, h6,
button, input, textarea {
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}















/* 1. stop sideways scroll on mobile */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* 2. make breadcrumb not overflow */
.breadcrumb-section {
  background-size: cover;
  background-position: center;
  width: 100%;
}

/* 3. sometimes a .row has negative margins and pushes page sideways */
@media (max-width: 991px) {
  .breadcrumb-section .row,
  .section-padding-2 .row,
  .about-section .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* 4. just in case any img is too wide */
img {
  max-width: 100%;
  height: auto;
}



/* hero */


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            overflow-x: hidden;
            background: #000;
            color: #fff;
        }

        #canvas-container {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        #canvas, #water-canvas {
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
        }

        #water-canvas {
            pointer-events: none;
            z-index: 5;
        }

        .content-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            pointer-events: none;
            z-index: 10;
        }

        .header-nav {
            position: absolute;
            top: 40px;
            left: 60px;
            display: flex;
            align-items: center;
            gap: 15px;
            pointer-events: auto;
        }

        

        .brand-name {
            font-size: 24px;
            font-weight: 600;
            letter-spacing: 4px;
        }

        .header-buttons {
            position: absolute;
            top: 40px;
            right: 60px;
            display: flex;
            gap: 20px;
            pointer-events: auto;
        }

        .btn {
            padding: 12px 28px;
            border: none;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: #5856d6;
            color: white;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            backdrop-filter: blur(10px);
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(88, 86, 214, 0.3);
        }

        /* ================= DESKTOP ================= */

.main-title {
    font-size: 100px;
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 20px; /* tighter gap */
    background: linear-gradient(180deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 20px;
    font-weight: 400;
    text-align: center;
    opacity: 0.6;
    margin-top: 0;
    margin-bottom: 60px;
    letter-spacing: 3px;
    text-transform: uppercase;
}


/* ================= TABLET ================= */

@media (max-width: 1024px) {
    .main-title {
        font-size: 100px;
        margin-bottom: 18px;
        padding: 0 40px;
    }

    .subtitle {
        font-size: 18px;
        margin-bottom: 45px;
        padding: 0 40px;
    }
}


/* ================= MOBILE ================= */

@media (max-width: 768px) {
    .main-title {
        font-size: 190px;
        margin-top: 90px;     /* space above title */
        margin-bottom: 15px;  /* very tight between title & subtitle */
        padding: 0 20px;
    }

    .subtitle {
        font-size: 14px;
        margin-top: 0;
        margin-bottom: 35px;
        padding: 0 20px;
    }
}


/* ================= SMALL MOBILE ================= */

@media (max-width: 480px) {
    .main-title {
        font-size: 34px;
        margin-top: 80px;
        margin-bottom: 12px;
    }

    .subtitle {
        font-size: 12px;
        margin-bottom: 30px;
    }
}
.main-title,
.subtitle {
    margin-top: 0;   /* remove browser default top gap */
}


        .scroll-indicator {
            position: absolute;
            bottom: 60px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
            opacity: 0.6;
            pointer-events: auto;
            cursor: pointer;
        }

        .scroll-text {
            font-size: 12px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .scroll-arrow {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(10px); }
        }

        .floating-logo {
            position: absolute;
            pointer-events: auto;
            user-select: none;
            opacity: 0.85;
            transition: all 0.3s ease;
            filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
            cursor: pointer;
        }

        .floating-logo:hover {
            opacity: 1;
            filter: drop-shadow(0 8px 24px rgba(88, 86, 214, 0.6));
            z-index: 100;
        }

        .floating-logo img {
            display: block;
            width: 100%;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .floating-logo:hover img {
            transform: scale(1.3) rotate(5deg);
        }

        header {
    padding-top: 15px;   /* increase for more gap */
    padding-bottom: 15px; /* keeps it balanced */
}
