*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f3f5f8;
    color:#222;
    margin:0;
    overflow-x:hidden;
}
/*=========================================
            HEADER
==========================================*/

header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 10px 18px;
    box-sizing: border-box;
}

/*=========================================
            NAVBAR
==========================================*/

.navbar{
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 12px 22px;

    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

/* Scroll */

.navbar.sticky{
    background: rgba(255,255,255,.96);
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}

/*=========================================
                LOGO
==========================================*/

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    display:block;
    width:auto;
    max-height:50px;
}

/*=========================================
                MENU
==========================================*/

.nav-menu{
    list-style:none;
    display:flex;
    align-items:center;
    gap:28px;
}

.nav-menu li{
    position:relative;
}

.nav-menu li a{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#001a33;
    font-size:15px;
    font-weight:500;
    padding:8px 0;
    transition:.3s;
    position:relative;
}

.nav-menu li a i:first-child{
    color:#001a33;
    transition:.3s;
}

.nav-menu li a:hover{
    color:#000;
}

.nav-menu li a:hover i:first-child{
    color:#CC5500;
}

.nav-menu li a.active{
    color:#000;
}

/* Underline */

.nav-menu li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:3px;
    background:#CC5500;
    border-radius:20px;
    transition:.35s;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after{
    width:100%;
}

/*=========================================
            DROPDOWN
==========================================*/

.dropdown-menu{
    position:absolute;
    left:0;
    top:calc(100% + 10px);

    min-width:260px;

    background:#fff;
    list-style:none;
    padding:8px;

    border-radius:14px;
    box-shadow:0 15px 35px rgba(0,0,0,.10);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s;
    z-index:999;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:12px 16px;
    border-radius:10px;
}

.dropdown-menu li a:hover{
    background:#f5f6f8;
    padding-left:22px;
}

.arrow{
    font-size:11px;
    transition:.3s;
}

.dropdown:hover .arrow,
.dropdown.active .arrow{
    transform:rotate(180deg);
}

/*=========================================
            RIGHT SIDE
==========================================*/

.right-side{
    display:flex;
    align-items:center;
    gap:12px;
}

.book-btn{
    padding:11px 24px;
    border-radius:40px;
    background:#CC5500;
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.book-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 20px rgba(204,85,0,.25);
}

.circle-btn{
    width:44px;
    height:44px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#111;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.circle-btn:hover{
    transform:rotate(45deg);
}

/*=========================================
            MENU BUTTON
==========================================*/

.menu-btn{
    display:none;
    border:none;
    background:none;
    cursor:pointer;
    font-size:26px;
    color:#111;
}

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

@media (max-width:991px){

    header{
        padding:8px 14px;
    }

    .navbar{
        padding:12px 18px;
    }

    .logo img{
        max-height:44px;
    }

    .menu-btn{
        display:block;
        z-index:1001;
    }

    .right-side{
        display:none;
    }

    .nav-menu{
        position:absolute;
        top:76px;
        left:0;
        right:0;

        display:none;
        flex-direction:column;
        gap:0;

        background:#fff;
        padding:14px;
        border-radius:16px;

        box-shadow:0 12px 30px rgba(0,0,0,.10);
    }

    .nav-menu.active{
        display:flex;
    }

    .nav-menu li{
        width:100%;
    }

    .nav-menu li a{
        width:100%;
        padding:14px 8px;
        border-bottom:1px solid #eee;
    }

    .nav-menu li:last-child a{
        border-bottom:none;
    }

    .nav-menu li a::after{
        display:none;
    }

    .dropdown-toggle{
        display:flex;
        align-items:center;
        width:100%;
    }

    .menu-left{
        display:flex;
        align-items:center;
        gap:12px;
    }

    .arrow{
        margin-left:auto;
    }

    .dropdown-menu{
        position:static;
        display:none;
        width:100%;

        margin-top:8px;

        opacity:1;
        visibility:visible;
        transform:none;

        background:#f7f8fa;
        border-radius:10px;
        box-shadow:none;
    }

    .dropdown.active .dropdown-menu{
        display:block;
    }
}

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

@media (max-width:768px){

    header{
        padding:8px 10px;
    }

    .navbar{
        padding:10px 14px;
    }

    .logo img{
        max-height:40px;
    }
}

@media (max-width:480px){

    header{
        padding:6px 8px;
    }

    .navbar{
        padding:10px 12px;
        border-radius:14px;
    }

    .logo img{
        max-height:36px;
    }

    .nav-menu{
        top:68px;
        padding:12px;
    }
}



/*=========================================
            HERO SECTION
==========================================*/

.hero{
    position: relative;
    width: 100%;
    min-height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 130px 20px 80px;

    background: url("../images/hero.png") center center/cover no-repeat;
    overflow: hidden;
}

.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,.48),
        rgba(0,0,0,.58)
    );
}

.hero-content{
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
    animation: fadeUp .9s ease;
}

/*=========================================
            HERO TEXT
==========================================*/

.hero-content h1{
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -.5px;
    margin-bottom: 18px;
}

.hero-content h2{
    color: #dfff45;
    font-size: clamp(22px, 2.8vw, 32px);
    font-weight: 700;
    min-height: 48px;
    margin-bottom: 22px;
}

.hero-content p{
    max-width: 760px;
    margin: 0 auto 45px;
    color: rgba(255,255,255,.92);
    font-size: clamp(15px,1.4vw,18px);
    line-height: 1.8;
}

/*=========================================
            TYPING EFFECT
==========================================*/

#typing-text{
    border-right: 3px solid #dfff45;
    padding-right: 5px;
    white-space: nowrap;
    animation: blink .8s infinite;
}

@keyframes blink{
    50%{
        border-color: transparent;
    }
}

/*=========================================
            HERO BUTTONS
==========================================*/

.hero-buttons{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

/*=========================================
            SERVICE CARD
==========================================*/

.service-card{
    flex: 1;
    max-width: 340px;
    min-width: 260px;
    min-height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    padding: 16px 20px;

    text-decoration: none;
    color: #fff;

    border-radius: 50px;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.20);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition: .35s ease;
}

.service-card:hover{
    transform: translateY(-5px);
    background: rgba(255,255,255,.18);
    border-color: rgba(255,255,255,.35);
}

.service-card i{
    font-size: 20px;
}

.service-card span{
    font-size: 16px;
    font-weight: 500;
}

.service-card.active{
    background: #fff;
    color: #111;
}

.service-card.active:hover{
    background: #fff;
}

.service-card.active .fa-arrow-right{
    margin-left: 8px;
}

/*=========================================
            ANIMATION
==========================================*/

@keyframes fadeUp{

    0%{
        opacity:0;
        transform:translateY(50px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }

}

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

@media (max-width:1200px){

    .hero{
        padding:120px 25px 80px;
    }

    .hero-content{
        max-width:900px;
    }

}

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

@media (max-width:991px){

    .hero{
        min-height:100vh;
        padding:120px 20px 70px;
    }

    .hero-content{
        max-width:700px;
    }

    .hero-content h1{
        font-size:40px;
    }

    .hero-content h2{
        font-size:28px;
        min-height:42px;
    }

    .hero-content p{
        font-size:17px;
        margin-bottom:40px;
    }

    .hero-buttons{
        gap:16px;
    }

    .service-card{
        width:320px;
    }

}

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

@media (max-width:768px){

    .hero{
        min-height: 75vh;
        padding: 85px 18px 40px;
    }

    .hero-content h1{
        font-size: 32px;
    }

    .hero-content h2{
        font-size: 22px;
        min-height: 32px;
    }

    .hero-content p{
        margin-bottom: 25px;
    }

    .hero-buttons{
        flex-direction: column;
        gap: 12px;
    }

}

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

@media (max-width:480px){

    .hero{
        padding:100px 15px 50px;
    }

    .hero-content h1{
        font-size:28px;
        line-height:1.3;
    }

    .hero-content h2{
        font-size:20px;
        min-height:32px;
    }

    .hero-content p{
        font-size:15px;
        line-height:1.7;
        margin-bottom:30px;
    }

    .service-card{
        width:100%;
        padding:15px 18px;
        min-height:62px;
    }

    .service-card i{
        font-size:18px;
    }

    .service-card span{
        font-size:15px;
    }

}

/*home services*/

/*==================================
   Circuit Byte Systems - Services
==================================*/

.cbs-services-area{
    width:100%;
    padding:60px 20px;
    background:#fff;
}

.cbs-wrapper{
    max-width:1400px;
    margin:auto;
}

.cbs-heading-box{
    max-width:850px;
    margin:0 auto 60px;
    text-align:center;
}

.cbs-title-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#CC5500;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.cbs-badge-dot{
    width:14px;
    height:14px;
    border:2px solid #CC5500;
    border-radius:50%;
}

.cbs-main-title{
    font-size:28px;
    color:#0b1b3f;
    font-weight:700;
    margin-bottom:18px;
}

.cbs-main-description{
    max-width:760px;
    margin:auto;
    font-size:16px;
    line-height:1.8;
    color:#6b7280;
}

.cbs-services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:26px;
}

.cbs-service-box{
    position:relative;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:center;
    padding:35px 24px;
    min-height:360px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 10px 25px rgba(11,27,63,.08);
}

.cbs-service-box::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:3px;
    background:linear-gradient(90deg,#0b1b3f,#CC5500,#0b1b3f,#CC5500);
    background-size:300% 100%;
    animation:cbsBorderMove 5s linear infinite;
}

@keyframes cbsBorderMove{
    from{background-position:0 0;}
    to{background-position:300% 0;}
}

.cbs-service-box:hover{
    
    border-color:#CC5500;
    box-shadow:0 20px 40px rgba(11,27,63,.15);
}

.cbs-icon-box{
    width:70px;
    height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:22px;
}

.cbs-icon-box i{
    font-size:42px;
    color:#CC5500;
}

.cbs-service-title{
    font-size:22px;
    font-weight:700;
    color:#0b1b3f;
    margin-bottom:15px;
}

.cbs-service-text{
    flex:1;
    font-size:15px;
    line-height:1.8;
    color:#6b7280;
    margin-bottom:22px;
}

.cbs-service-link{
    display:inline-flex;
    align-items:center;
    gap:8px;
    margin-top:auto;
    text-decoration:none;
    color:#0b1b3f;
    font-weight:600;
}

.cbs-service-link:hover{
    color:#CC5500;
}

.cbs-service-link i{
    transition:.3s;
}

.cbs-service-link:hover i{
    transform:translateX(5px);
}

@media(max-width:1200px){
.cbs-services-grid{grid-template-columns:repeat(2,1fr);}
.cbs-main-title{font-size:40px;}
}

@media(max-width:768px){
.cbs-services-area{padding:60px 18px;}
.cbs-services-grid{grid-template-columns:1fr;}
.cbs-main-title{font-size:30px;}
.cbs-main-description{font-size:15px;}
.cbs-service-box{min-height:auto;max-width:420px;margin:auto;}
}

@media(max-width:480px){
.cbs-main-title{font-size:24px;}
.cbs-service-title{font-size:20px;}
.cbs-service-text{font-size:14px;}
}


/*==============================
  WHY CHOOSE US SECTION
==============================*/

.vision-section{
    padding:70px 20px;
    background:
    #0b1b3f;

    position:relative;
    overflow:hidden;
}

.vision-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    background:radial-gradient(circle,rgba(138,92,255,.18),transparent 70%);
    top:-170px;
    right:-140px;
}

.vision-wrapper{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1.2fr .9fr;
    gap:45px;
    align-items:flex-start;
    position:relative;
    z-index:2;
}

.vision-tag{
    display:inline-flex;
    align-items:center;
    gap:8px;
    color:#CC5500;
    font-size:12px;
    font-weight:600;
    letter-spacing:1.8px;
    margin-bottom:18px;
}

.vision-tag i{
    font-size:10px;
}

.vision-title{
    font-size:40px;
    line-height:1.2;
    font-weight:700;
    color:#fff;
    margin-bottom:18px;
}

.vision-description{
    color:#b6bfd2;
    font-size:15px;
    line-height:1.7;
    max-width:600px;
    margin-bottom:32px;
}

.vision-feature-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.vision-feature-card{
    display:flex;
    gap:15px;
    padding-bottom:18px;
    border-bottom:1px solid rgba(255,255,255,.08);
}

.vision-feature-card:last-child{
    border-bottom:none;
    padding-bottom:0;
}

.feature-icon-box{
    width:42px;
    height:42px;
    min-width:42px;
    border-radius:50%;
    background:#CC5500;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:15px;
    box-shadow:0 8px 20px rgba(251,193,131,.30);
}

.feature-text h4{
    color:#fff;
    font-size:18px;
    font-weight:600;
    margin-bottom:6px;
    line-height:1.35;
}

.feature-text p{
    color:#aab5c9;
    font-size:14px;
    line-height:1.6;
}

.solution-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:30px;
}

.solution-card{
    position:relative;
    height:145px;
    border-radius:18px;
    overflow:hidden;
    padding:18px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    background-size:cover;
    background-position:center;
    border:1px solid rgba(218,207,253,.35);
    transition:.35s ease;
}

.solution-overlay{
    position:absolute;
    inset:0;
    background:rgba(15,14,28,.60);
    transition:.35s;
}

.solution-card>*{
    position:relative;
    z-index:2;
}

.solution-card:hover{
    
    border-color:#CC5500;
    box-shadow:0 16px 35px rgba(0,0,0,.30);
}

.solution-card:hover .solution-overlay{
    background:rgba(18,14,35,.45);
}

.solution-icon{
    width:45px;
    height:45px;
    border-radius:12px;
    background:rgba(204,85,0,.18);
    border:1px solid #CC5500;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#CC5500;
    font-size:18px;
}

.solution-card h4{
    color:#fff;
    font-size:17px;
    font-weight:600;
    line-height:1.4;
}

.client-section{
    margin-top:8px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
}

.client-section h5{
    color:#CC5500;
    font-size:12px;
    letter-spacing:1.8px;
    margin-bottom:16px;
}

.client-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.client-box{
    padding:10px 15px;
    border-radius:10px;
    border:1px solid rgba(255,255,255,.10);
    color:#d9deea;
    font-size:13px;
    transition:.3s;
}

.client-box:hover{
    background:#CC5500;
    border-color:#CC5500;
    color:#fff;
}

.expert-contact{
    margin-top:28px;
    padding-top:25px;
    border-top:1px solid rgba(255,255,255,.08);
}

.expert-contact h3{
    color:#CC5500;
    font-size:22px;
    font-weight:600;
    margin-bottom:16px;
}

.expert-contact ul{
    list-style:none;
    margin:0;
    padding:0;
}

.expert-contact li{
    position:relative;
    padding-left:20px;
    margin-bottom:12px;
    color:#b8c2d5;
    font-size:14px;
    line-height:1.6;
}

.expert-contact li::before{
    content:"";
    position:absolute;
    left:0;
    top:9px;
    width:7px;
    height:7px;
    border-radius:50%;
    background:#CC5500;
}

/*==============================
        Responsive
==============================*/

@media(max-width:1200px){

    .vision-wrapper{
        grid-template-columns:1fr;
    }

    .vision-title{
        font-size:36px;
    }

}

@media(max-width:768px){

    .vision-section{
        padding:55px 18px;
    }

    .vision-wrapper{
        gap:35px;
    }

    .vision-title{
        font-size:30px;
    }

    .vision-description{
        font-size:14px;
    }

    .solution-grid{
        grid-template-columns:1fr;
    }

    .solution-card{
        height:170px;
    }

    .client-list{
        flex-direction:column;
    }

    .client-box{
        text-align:center;
    }

}

@media(max-width:480px){

    .vision-title{
        font-size:26px;
    }

    .vision-description{
        font-size:13px;
    }

    .feature-text h4{
        font-size:17px;
    }

    .feature-text p{
        font-size:13px;
    }

    .solution-card h4{
        font-size:16px;
    }

    .expert-contact h3{
        font-size:20px;
    }

    .expert-contact li{
        font-size:13px;
    }

}

/*====================================================
                    TESTIMONIAL SECTION
====================================================*/

.testimonial-section{
    padding:70px 20px;
    background:#ffffff;
}

.testimonial-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 60px;
}

.testimonial-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    color:#CC5500;
    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.testimonial-tag i{
    font-size:10px;
}

.testimonial-heading h2{
    font-size:25px;
    font-weight:700;
    line-height:1.3;
    color:#0b1b3f;
    margin-bottom:18px;
}

.testimonial-heading p{
    max-width:720px;
    margin:auto;
    color:#6b7280;
    font-size:15px;
    font-weight:400;
    line-height:1.8;
}

/*====================================================
                    SLIDER
====================================================*/

.testimonial-slider-wrapper{
    position:relative;
    max-width:1450px;
    margin:auto;
    padding:0 70px;
}

.swiper{
    overflow:hidden;
}

.swiper-slide{
    height:auto;
    display:flex;
}

/*====================================================
                    CARD
====================================================*/

.testimonial-card{
    width:100%;
    background:#ffffff;
    border:1px solid #0b1b3f;
    padding:32px;
    min-height:320px;
    border-radius:6px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    transition:all .35s ease;
}

.testimonial-card:hover{
   
    border-color:#CC5500;
    box-shadow:0 20px 40px rgba(11,27,63,.15);
}

/*====================================================
                    ICON
====================================================*/

.quote{
    color:#CC5500;
    font-size:30px;
    margin-bottom:18px;
}

/*====================================================
                REVIEW TEXT
====================================================*/

.testimonial-card p{
    color:#434343;
    font-size:15px;
    font-weight:400;
    line-height:1.8;
}

/*====================================================
                    USER
====================================================*/

.user{
    margin-top:28px;
    padding-top:18px;
    border-top:1px solid rgba(11,27,63,.08);
}

.user h4{
    color:#6b7280;
    font-size:14px;
    font-weight:500;
    line-height:1.5;
    margin-bottom:8px;
}

.user span{
    color:#0b1b3f;
    font-size:20px;
    font-weight:700;
    line-height:1.3;
}

/*====================================================
                NAVIGATION BUTTONS
====================================================*/

.testimonial-prev,
.testimonial-next{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:54px;
    height:54px;
    border-radius:50%;
    border:1px solid #0b1b3f;
    background:#ffffff;
    color:#0b1b3f;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:all .3s ease;
    z-index:10;
    box-shadow:0 8px 18px rgba(11,27,63,.08);
}

.testimonial-prev{
    left:0;
}

.testimonial-next{
    right:0;
}

.testimonial-prev i,
.testimonial-next i{
    font-size:18px;
}

.testimonial-prev:hover,
.testimonial-next:hover{
    background:#0b1b3f;
    color:#ffffff;
    border-color:#0b1b3f;
}

/*====================================================
                RESPONSIVE
====================================================*/

/* Laptop */

@media(max-width:1200px){

    .testimonial-slider-wrapper{
        padding:0 60px;
    }

}

/* Tablet */

@media(max-width:991px){

    .testimonial-section{
        padding:60px 20px;
    }

    .testimonial-heading{
        margin-bottom:50px;
    }

    .testimonial-heading h2{
        font-size:22px;
    }

    .testimonial-slider-wrapper{
        padding:0 55px;
    }

    .testimonial-card{
        padding:28px;
        min-height:300px;
    }

    .quote{
        font-size:28px;
    }

}

/* Mobile */

@media(max-width:767px){

    .testimonial-section{
        padding:55px 18px;
    }

    .testimonial-heading{
        margin-bottom:40px;
    }

    .testimonial-heading h2{
        font-size:20px;
    }

    .testimonial-heading p{
        font-size:14px;
        line-height:1.8;
    }

    .testimonial-slider-wrapper{
        padding:0 45px;
    }

    .testimonial-card{
        min-height:auto;
        padding:25px;
        border-radius:16px;
    }

    .testimonial-card p{
        font-size:14px;
    }

    .user{
        margin-top:22px;
        padding-top:16px;
    }

    .user h4{
        font-size:13px;
    }

    .user span{
        font-size:18px;
    }

    .testimonial-prev,
    .testimonial-next{
        width:44px;
        height:44px;
    }

    .testimonial-prev i,
    .testimonial-next i{
        font-size:16px;
    }

}

/* Small Mobile */

@media(max-width:480px){

    .testimonial-section{
        padding:50px 15px;
    }

    .testimonial-slider-wrapper{
        padding:0 40px;
    }

    .testimonial-heading h2{
        font-size:18px;
    }

    .testimonial-heading p{
        font-size:13px;
    }

    .testimonial-card{
        padding:22px;
    }

    .quote{
        font-size:26px;
    }

    .testimonial-card p{
        font-size:13px;
    }

    .user span{
        font-size:17px;
    }

    .testimonial-prev,
    .testimonial-next{
        width:40px;
        height:40px;
    }

}

/*=========================================
            TRANSFORM CTA
=========================================*/

.gc-transform-section{

    width:100%;
    background:#f47a1b;
    padding:90px 20px;
    text-align:center;

}

.gc-transform-container{
    max-width:1450px;
    margin:auto;

}

.gc-transform-title{
    color:#fff;
    font-size:40px;
    font-weight:700;
    line-height:1.5;
    font-weight:700;
    margin-bottom:40px;
     font-family:'Clash Display',sans-serif;
    max-width:1200px;
    margin-left:auto;
    margin-right:auto;
    padding:0 40px;   /* Left & Right space */
    text-align:center;
}

.gc-transform-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 34px;
    background:#081225;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:600;
    border-radius:50px;
    transition:.35s ease;
    box-shadow:0 10px 25px rgba(8,18,37,.25);
}

.gc-transform-btn:hover{
    transform:translateY(-4px);
    background:#0b1b3f;
    box-shadow:0 20px 40px rgba(8,18,37,.35);
}

/* Tablet */

@media(max-width:992px){

.gc-transform-title{

    font-size:35px;

}

.gc-transform-btn{

    font-size:22px;
    padding:16px 38px;

}

}

/* Mobile */

@media(max-width:768px){

.gc-transform-section{

    padding:70px 20px;

}

.gc-transform-title{

    font-size:34px;
    line-height:1.3;
    margin-bottom:35px;

}

.gc-transform-btn{

    font-size:18px;
    padding:15px 32px;

}

}

@media(max-width:480px){

.gc-transform-title{

    font-size:28px;

}

.gc-transform-btn{

    width:220px;

}

}

/* Smooth Scroll */

html{

    scroll-behavior:smooth;

}

/*popup form*/
/*=========================================
        CONTACT POPUP
=========================================*/

.gc-contact-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.65);
    display:none;
    align-items:center;
    justify-content:center;
    padding:16px;
    z-index:9999;
}

.gc-contact-modal.active{
    display:flex;
}

.gc-contact-box{
    width:100%;
    max-width:1200px;
    max-height:92vh;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    display:grid;
    grid-template-columns:360px 1fr;
    box-shadow:0 24px 60px rgba(0,0,0,.22);
    animation:gcPopup .35s ease;
}

@keyframes gcPopup{
from{opacity:0;transform:scale(.96);}
to{opacity:1;transform:scale(1);}
}

/* LEFT PANEL */

.gc-contact-left{
    background:#0b1b3f;
    padding:40px;
    color:#fff;
    display:flex;
    flex-direction:column;
}

.gc-contact-logo{
    width:90px;
    margin-bottom:28px;
}

.gc-contact-left h2{
    font-size:25px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:18px;
}

.gc-contact-left p{
    font-size:15px;
    line-height:1.6;
    margin-bottom:30px;
    opacity:.96;
    color: #fff;
}

.gc-contact-info{margin-top:auto;}

.gc-contact-item{
    display:flex;
    align-items:center;
    gap:14px;
    margin-bottom:18px;
}

.gc-contact-icon{
    width:50px;
    height:50px;
    background:rgba(255,255,255,.18);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.gc-contact-item span{
    display:block;
    font-size:11px;
    letter-spacing:1px;
    text-transform:uppercase;
    opacity:.75;
    margin-bottom:3px;
}

.gc-contact-item strong{
    font-size:13px;
    font-weight:600;
}

/* RIGHT PANEL */

.gc-contact-right{
    position:relative;
    background:#fff;
    padding:40px 45px;
    overflow-y:auto;
}

.gc-close-btn{
    position:absolute;
    top:18px;
    right:18px;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#f5f5f5;
    color:#555;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    transition:.3s;
}

.gc-close-btn:hover{
    background:#f47a1b;
    color:#fff;
}

/* FORM */

.gc-form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:18px;
}

.gc-input-group{
    display:flex;
    flex-direction:column;
}

.gc-input-group label{
    font-size:14px;
    font-weight:600;
    color:#081225;
    margin-bottom:6px;
}

.gc-input-group label span{
    color:#f47a1b;
}

.gc-input-group input,
.gc-input-group select,
.gc-input-group textarea{
    width:100%;
    border:none;
    border-bottom:2px solid #ddd;
    background:transparent;
    padding:10px 0;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    outline:none;
    transition:.3s;
}

.gc-input-group textarea{
    resize:none;
    min-height:100px;
}

.gc-input-group input:focus,
.gc-input-group select:focus,
.gc-input-group textarea:focus{
    border-color:#f47a1b;
}

.gc-input-group input::placeholder,
.gc-input-group textarea::placeholder{
    color:#999;
}

.gc-input-group select{
    cursor:pointer;
    appearance:none;
}

/* BUTTON */

.gc-btn-area{
    margin-top:25px;
    display:flex;
    justify-content:flex-end;
}

.gc-submit-btn{
    border:none;
    background:#081225;
    color:#fff;
    padding:14px 34px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.35s ease;
    box-shadow:0 8px 24px rgba(244,122,27,.22);
}

.gc-submit-btn:hover{
    background:#f47a1b;
    transform:translateY(-2px);
}

/* RESPONSIVE */

@media(max-width:1100px){
    .gc-contact-box{
        grid-template-columns:1fr;
        max-height:90vh;
        overflow:auto;
    }

    .gc-contact-left{padding:35px;}
    .gc-contact-right{padding:35px;}
}

@media(max-width:768px){

    .gc-contact-left{
        padding:30px;
    }

    .gc-contact-logo{
        width:75px;
    }

    .gc-contact-left h2{
        font-size:30px;
    }

    .gc-contact-left p{
        font-size:15px;
    }

    .gc-contact-icon{
        width:45px;
        height:45px;
        font-size:16px;
    }

    .gc-contact-item strong{
        font-size:15px;
    }

    .gc-form-row{
        grid-template-columns:1fr;
        gap:16px;
    }

    .gc-contact-right{
        padding:28px 20px;
    }

    .gc-btn-area{
        justify-content:center;
    }

    .gc-submit-btn{
        width:100%;
        padding:13px;
        font-size:15px;
    }
}

@media(max-width:480px){

    .gc-contact-left{
        padding:25px 20px;
    }

    .gc-contact-right{
        padding:25px 18px;
    }

    .gc-contact-logo{
        width:70px;
    }

    .gc-contact-left h2{
        font-size:24px;
    }

    .gc-contact-left p{
        font-size:14px;
    }

    .gc-close-btn{
        width:36px;
        height:36px;
        font-size:20px;
    }
}

/*=========================================
        GCA SERVICE HERO
        Compact Professional Version
=========================================*/

.gca-service-hero{
    position:relative;
    width:100%;
    min-height:72vh;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#081225;
}

.gca-service-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
}

.gca-service-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(8,18,37,.96) 0%,
        rgba(8,18,37,.90) 40%,
        rgba(8,18,37,.68) 72%,
        rgba(8,18,37,.42) 100%
    );
}

.gca-service-wrapper{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:90px 20px;
}

.gca-service-content{
    max-width:560px;
}

.gca-service-tag{
    display:inline-block;
    padding:6px 14px;
    margin-bottom:16px;
    background:rgba(204,85,0,.12);
    border:1px solid rgba(204,85,0,.30);
    border-radius:30px;
    color:#ffb36a;
    font-size:11px;
    font-weight:600;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.gca-service-content h1{
    color:#fff;
    font-family:'Sora',sans-serif;
    font-size:clamp(28px,4vw,46px);
    font-weight:700;
    line-height:1.2;
    letter-spacing:-.5px;
    margin-bottom:18px;
}

.gca-service-content h1 span{
    color:#CC5500;
}

.gca-service-content p{
    color:#d8ddea;
    font-size:15px;
    line-height:1.8;
    margin-bottom:28px;
}

.gca-service-buttons{
    display:flex;
    gap:12px;
    flex-wrap:wrap;
}

.gca-btn-primary,
.gca-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:12px 24px;
    border-radius:35px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.35s ease;
}

.gca-btn-primary{
    background:#CC5500;
    color:#fff;
    box-shadow:0 8px 22px rgba(204,85,0,.25);
}

.gca-btn-primary:hover{
    background:#e66500;
    transform:translateY(-2px);
}

.gca-btn-secondary{
    color:#fff;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter:blur(8px);
}

.gca-btn-secondary:hover{
    background:#fff;
    color:#081225;
    transform:translateY(-2px);
}

/* Laptop */

@media(max-width:1200px){

.gca-service-wrapper{padding:80px 20px;}

.gca-service-content h1{font-size:40px;}

.gca-service-content p{font-size:14px;}

}

/* Tablet */

@media(max-width:768px){

.gca-service-hero{min-height:64vh;}

.gca-service-bg{object-position:70% center;}

.gca-service-wrapper{padding:70px 18px;}

.gca-service-content{
    max-width:100%;
    text-align:center;
    margin:auto;
}

.gca-service-content h1{
    font-size:34px;
}

.gca-service-content p{
    font-size:14px;
}

.gca-service-buttons{
    justify-content:center;
}

}

/* Mobile */

@media(max-width:480px){

.gca-service-hero{
    min-height:58vh;
}

.gca-service-wrapper{
    padding:60px 16px;
}

.gca-service-tag{
    font-size:10px;
    padding:5px 12px;
}

.gca-service-content h1{
    font-size:26px;
}

.gca-service-content p{
    font-size:13px;
    line-height:1.7;
    margin-bottom:22px;
}

.gca-service-buttons{
    flex-direction:column;
    gap:10px;
}

.gca-btn-primary,
.gca-btn-secondary{
    width:100%;
    font-size:13px;
    padding:11px 18px;
}

}


/* ==============================
        OUR STORY SECTION
==============================*/

.story-section{
    padding:70px 20px;
    background:#ffffff;
}

.story-container{
    max-width:1180px;
    margin:auto;
}

.story-content{
    text-align:center;
    margin-bottom:45px;
}

/* Small Heading */

.story-tag{

    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    color:#CC5500;
    text-transform:uppercase;
    margin-bottom:12px;
}

/* Main Heading */

.story-title{

    font-size:25px;
    font-weight:700;
    color:#111;
    line-height:1.3;
    margin-bottom:22px;
}

/* Paragraph */

.story-text{

    width:80%;
    margin:0 auto 18px;
    font-size:15px;
    color:#666;
    line-height:1.8;
    font-weight:400;
}

/* Image */

.story-image{

    border-radius:20px;
    overflow:hidden;
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

.story-image img{

    width:100%;
    display:block;
    object-fit:cover;
}

/* ==========================
        Laptop
==========================*/

@media(max-width:1200px){

.story-container{

    max-width:1000px;
}

.story-title{

    font-size:20px;
}

.story-text{

    width:90%;
}

}

/* ==========================
        Tablet
==========================*/

@media(max-width:992px){

.story-section{

    padding:60px 18px;
}

.story-title{

    font-size:18px;
}

.story-tag{

    font-size:11px;
}

.story-text{

    width:95%;
    font-size:11px;
    line-height:1.7;
}

.story-image{

    border-radius:18px;
}

}

/* ==========================
        Mobile
==========================*/

@media(max-width:768px){

.story-section{

    padding:50px 15px;
}

.story-title{

    font-size:16px;
    line-height:1.4;
}

.story-tag{

    font-size:10px;
    letter-spacing:1.5px;
}

.story-text{

    width:100%;
    font-size:10px;
    line-height:1.7;
    margin-bottom:15px;
}

.story-image{

    border-radius:16px;
}

}

/* ==========================
        Small Mobile
==========================*/

@media(max-width:480px){

.story-section{

    padding:40px 12px;
}

.story-title{

    font-size:14px;
}

.story-tag{

    font-size:9px;
}

.story-text{

    font-size:9.5px;
    line-height:1.7;
}

.story-image{

    border-radius:14px;
}
}


/*=========================
      Mission Vision
==========================*/

.mv-section{
    padding:10px 10px;
    background:#fff;
}

.mv-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr 2fr;
    gap:18px;
}

/*=========================
    Animated Border Cards
==========================*/

.mv-card,
.work-card{
    position:relative;
    background:#fff;
    border-radius:22px;
    padding:30px 25px;
    transition:.35s;
    z-index:1;
    overflow:hidden;
}

/* Animated Border */
.mv-card::before,
.work-card::before{
    content:"";
    position:absolute;
    inset:-2px;
    border-radius:24px;
    background:linear-gradient(
        90deg,
        #061A40,
        #ff7a00,
        #ffffff,
        #061A40,
        #ff7a00,
        #ffffff
    );
    background-size:400% 400%;
    animation:borderMove 20s linear infinite;
    z-index:-2;
}
/* White Card Layer */
.mv-card::after,
.work-card::after{
    content:"";
    position:absolute;
    inset:2px;
    background:#fff;
    border-radius:20px;
    z-index:-1;
}

@keyframes borderMove{
    0%{
        background-position:0% 50%;
    }
    100%{
        background-position:400% 50%;
    }
}

/* Hover Effect */
.mv-card:hover,
.work-card:hover{
    transform:translateY(-6px);
    box-shadow:0 15px 35px rgba(6,26,64,.18);
}

.mv-card{
    text-align:center;
}

.mv-icon{
    width:64px;
    height:64px;
    border-radius:50%;
    background:#061A40;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    margin:auto;
    margin-bottom:20px;
}

.mv-card h3{
    font-size:18px;
    font-weight:700;
    color:#111;
    margin-bottom:8px;
}

.mv-line{
    display:block;
    width:40px;
    height:3px;
    background:#ff7a00;
    margin:12px auto 22px;
    border-radius:30px;
}

.mv-card p{
    font-size:14px;
    color:#666;
    line-height:1.9;
}

/*=========================
      Right Side
==========================*/

.work-card h2{
    text-align:center;
    font-size:22px;
    font-weight:700;
    color:#111;
    margin-bottom:8px;
}

.work-card .mv-line{
    margin-bottom:30px;
}

.work-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px 35px;
}

.work-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

.work-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#eef3ff;
    color:#061A40;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:18px;
    flex-shrink:0;
}

.work-item h4{
    font-size:15px;
    font-weight:700;
    margin-bottom:6px;
    color:#111;
}

.work-item p{
    font-size:13px;
    color:#666;
    line-height:1.7;
}

/*=========================
      Laptop
==========================*/

@media(max-width:1100px){

.mv-container{
    grid-template-columns:1fr 1fr;
}

.work-card{
    grid-column:1/3;
}

}

/*=========================
      Tablet
==========================*/

@media(max-width:768px){

.mv-container{
    grid-template-columns:1fr;
}

.work-card{
    grid-column:auto;
}

.work-grid{
    grid-template-columns:1fr;
}

.mv-card,
.work-card{
    padding:30px 22px;
}

.work-card h2{
    font-size:20px;
}

.mv-card h3{
    font-size:17px;
}

.mv-card p,
.work-item p{
    font-size:13px;
}

}

/*=========================
      Mobile
==========================*/

@media(max-width:480px){

.mv-section{
    padding:50px 15px;
}

.mv-card,
.work-card{
    border-radius:18px;
    padding:25px 18px;
}

.mv-card::before,
.work-card::before{
    border-radius:20px;
}

.mv-card::after,
.work-card::after{
    border-radius:16px;
}

.mv-icon{
    width:56px;
    height:56px;
    font-size:20px;
}

.work-icon{
    width:38px;
    height:38px;
    font-size:16px;
}

.work-card h2{
    font-size:18px;
}

.mv-card h3{
    font-size:16px;
}

.work-item h4{
    font-size:14px;
}

.mv-card p,
.work-item p{
    font-size:12px;
    line-height:1.8;
}

}

/*=========================================
            CAREER SECTION
=========================================*/

.gc-career-section{
    width:100%;
    padding:45px 5%;
    background:#ffffff;
    font-family:'Poppins',sans-serif;
}

.gc-career-container{
    max-width:1150px;
    margin:auto;
}

.gc-career-heading{
    text-align:center;
    margin-bottom:35px;
}

.gc-career-subtitle{
    display:inline-block;
    background:rgba(253,126,20,.10);
    color:#fd7e14;
    border:1px solid rgba(253,126,20,.20);
    padding:5px 14px;
    border-radius:30px;
    font-size:10px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:.5px;
    margin-bottom:10px;
}

.gc-career-heading h2{
    font-size:28px;
    color:#0b1b3f;
    font-weight:700;
    margin-bottom:10px;
    line-height:1.3;
}

.gc-career-heading p{
    max-width:600px;
    margin:auto;
    color:#666;
    font-size:13px;
    line-height:1.7;
}

/*=========================================
                GRID
=========================================*/

.gc-career-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

/*=========================================
              CARD
=========================================*/

.gc-career-card{
    background:#ffffff;
    border:1px solid rgba(11,27,63,.10);
    border-radius:12px;
    padding:18px;
    box-shadow:0 8px 22px rgba(11,27,63,.06);
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.gc-career-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:#fd7e14;
    transform:scaleX(0);
    transition:.35s;
}

.gc-career-card:hover{
  
    border-color:#fd7e14;
    box-shadow:0 14px 30px rgba(11,27,63,.10);
}

.gc-career-card:hover::before{
    transform:scaleX(1);
}

/*=========================================
              TOP
=========================================*/

.gc-career-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:15px;
}

.gc-career-category,
.gc-career-opening{
    background:rgba(253,126,20,.10);
    color:#fd7e14;
    border:1px solid rgba(253,126,20,.18);
    padding:5px 12px;
    border-radius:25px;
    font-size:10px;
    font-weight:600;
}

.gc-career-card h3{
    font-size:20px;
    color:#0b1b3f;
    margin-bottom:10px;
    font-weight:700;
}

.gc-career-desc{
    color:#666;
    font-size:13px;
    line-height:1.6;
    margin-bottom:16px;
}

/*=========================================
            INFO
=========================================*/

.gc-career-info{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-bottom:18px;
}

.gc-career-info span{
    display:flex;
    align-items:center;
    gap:6px;
    padding:8px 12px;
    border:1px solid rgba(11,27,63,.10);
    border-radius:8px;
    background:#fff;
    font-size:11px;
    color:#0b1b3f;
    transition:.3s;
}

.gc-career-info span:hover{
    border-color:#fd7e14;
    background:rgba(253,126,20,.05);
}

.gc-career-info i{
    color:#fd7e14;
    font-size:12px;
}

/*=========================================
            SKILLS
=========================================*/

.gc-career-skills{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:8px;
    margin-bottom:18px;
}

.gc-career-skills div{
    display:flex;
    align-items:flex-start;
    gap:6px;
    border:1px solid rgba(11,27,63,.08);
    border-radius:8px;
    padding:8px 10px;
    font-size:12px;
    color:#555;
    line-height:1.5;
    transition:.3s;
}

.gc-career-skills div:hover{
    border-color:#fd7e14;
    background:rgba(253,126,20,.05);
}

.gc-career-skills i{
    color:#fd7e14;
    font-size:12px;
    margin-top:2px;
}

/*=========================================
            BUTTON
=========================================*/

.gc-career-btn{
    display:inline-block;
    text-decoration:none;
    background:#0b1b3f;
    color:#fff;
    border:2px solid #0b1b3f;
    padding:9px 18px;
    border-radius:8px;
    font-size:12px;
    font-weight:600;
    transition:.35s;
}

.gc-career-btn:hover{
    background:#fd7e14;
    border-color:#fd7e14;
    color:#fff;
    box-shadow:0 8px 18px rgba(253,126,20,.25);
}

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

@media(max-width:992px){

    .gc-career-grid{
        grid-template-columns:1fr;
    }

    .gc-career-heading h2{
        font-size:24px;
    }

    .gc-career-card{
        padding:16px;
    }

}

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

@media(max-width:768px){

    .gc-career-section{
        padding:40px 20px;
    }

    .gc-career-heading{
        margin-bottom:28px;
    }

    .gc-career-heading h2{
        font-size:22px;
    }

    .gc-career-heading p{
        font-size:12px;
    }

    .gc-career-card{
        padding:15px;
    }

    .gc-career-card h3{
        font-size:18px;
    }

    .gc-career-desc{
        font-size:12px;
    }

    .gc-career-info{
        flex-direction:column;
    }

    .gc-career-info span{
        width:100%;
        font-size:11px;
    }

    .gc-career-skills{
        grid-template-columns:1fr;
    }

    .gc-career-skills div{
        font-size:11px;
    }

    .gc-career-btn{
        width:100%;
        text-align:center;
        font-size:12px;
    }

}

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

@media(max-width:480px){

    .gc-career-section{
        padding:35px 15px;
    }

    .gc-career-heading h2{
        font-size:20px;
    }

    .gc-career-subtitle{
        font-size:9px;
        padding:5px 12px;
    }

    .gc-career-card{
        padding:14px;
        border-radius:10px;
    }

    .gc-career-card h3{
        font-size:17px;
    }

    .gc-career-desc{
        font-size:11px;
    }

    .gc-career-category,
    .gc-career-opening{
        font-size:9px;
        padding:5px 10px;
    }

    .gc-career-info span{
        font-size:10px;
        padding:7px 10px;
    }

    .gc-career-skills div{
        font-size:10px;
        padding:7px 9px;
    }

    .gc-career-btn{
        padding:9px 16px;
        font-size:11px;
    }

}


.gc-contact-section{
    background:#ffffff;
    padding:60px 0;
}

/* ===========================
   CONTACT SECTION
=========================== */
.gc-contact-section{
    width:100%;
    padding:60px 5%;
    background:#ffffff;
    font-family:'Poppins',sans-serif;
}

.gc-contact-container{
    max-width:1300px;
    margin:auto;
    display:grid;
    grid-template-columns:0.9fr 1.1fr;
    gap:45px;
    align-items:center;
}

/*=========================
LEFT IMAGE
=========================*/

.gc-contact-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.gc-contact-image img{
    width:100%;
    max-width:520px;
    height:430px;
    object-fit:cover;
    border-radius:16px;
    display:block;
    box-shadow:0 15px 35px rgba(11,31,58,.12);
}

/*=========================
RIGHT FORM
=========================*/

.gc-contact-form{
    width:100%;
}

.gc-title{
    font-size:38px;
    font-weight:700;
    margin-bottom:22px;
    color:#0B1F3A;
    line-height:1.3;
}

.gc-dynamic-text{
    color: #fd7e14;
}

/*=========================
INPUT GROUP
=========================*/

.gc-input-group{
    margin-bottom:16px;
}

.gc-input-group label{
    display:block;
    margin-bottom:6px;
    font-size:15px;
    font-weight:600;
    color:#0B1F3A;
}

.gc-input-group input,
.gc-input-group textarea,
.gc-input-group select{

    width:100%;
    border:1px solid #D9E3F0;
    border-radius:10px;
    outline:none;
    padding:11px 14px;
    font-size:14px;
    transition:.3s;
    font-family:'Poppins',sans-serif;
    background:#ffffff;
    color:#0B1F3A;
}

.gc-input-group textarea{
    min-height:110px;
    resize:vertical;
}

.gc-input-group input::placeholder,
.gc-input-group textarea::placeholder{
    color:#8b95a5;
}



/*=========================
UPLOAD
=========================*/

.gc-upload-row{
    display:flex;
    align-items:center;
    gap:12px;
}

.gc-upload-row input[type="url"]{
    flex:1;
}

.gc-or-text{
    font-size:13px;
    color:#0B1F3A;
}

.gc-upload-btn{

    background:#FFF7F0;
    color:#E76F00;
    border:1px solid #E76F00;
    padding:11px 18px;
    border-radius:10px;
    cursor:pointer;
    transition:.35s;
    font-size:14px;
    white-space:nowrap;
    font-weight:600;
}

.gc-upload-btn:hover{

    background:#E76F00;
    color:#ffffff;

}

/*=========================
BUTTON
=========================*/

.gc-submit-btn{

    margin-top:8px;
    padding:12px 30px;
    border:none;
    border-radius:10px;
    background:#E76F00;
    color:#ffffff;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.35s;
    box-shadow:0 10px 25px rgba(231,111,0,.25);

}

.gc-submit-btn:hover{

    background:#0B1F3A;
    transform:translateY(-3px);

}

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

@media(max-width:992px){

.gc-contact-container{

    grid-template-columns:1fr;
    gap:35px;

}

.gc-contact-image{

    order:2;

}

.gc-contact-form{

    order:1;

}

.gc-title{

    font-size:32px;

}

.gc-contact-image img{

    max-width:460px;
    height:360px;

}

}

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

@media(max-width:768px){

.gc-contact-section{

    padding:40px 20px;

}

.gc-title{

    font-size:28px;

}

.gc-input-group label{

    font-size:14px;

}

.gc-input-group input,
.gc-input-group textarea,
.gc-input-group select{

    padding:10px 12px;
    font-size:13px;

}

.gc-upload-row{

    flex-direction:column;
    align-items:stretch;

}

.gc-upload-btn{

    width:100%;
    text-align:center;

}

.gc-contact-image img{

    width:100%;
    height:300px;

}

.gc-submit-btn{

    width:100%;
    font-size:14px;

}

}

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

@media(max-width:480px){

.gc-title{

    font-size:24px;

}

.gc-contact-image img{

    height:240px;

}

.gc-input-group label{

    font-size:13px;

}

.gc-input-group input,
.gc-input-group textarea,
.gc-input-group select{

    font-size:12px;

}

.gc-submit-btn{

    padding:10px 22px;
    font-size:13px;

}

}


/*=========================================
        CONTACT INFO
=========================================*/
.gci-contact-section{
    width:100%;
    max-width:1200px;
    margin:40px auto;
    padding:0 20px;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

/*=========================================
        CARD
=========================================*/

.gci-card{
    position:relative;
    background:#fff;
    border-radius:18px;
    padding:24px 20px;
    text-align:center;
    overflow:hidden;
    transition:.4s ease;
    z-index:1;
}

/* Animated Border */

.gci-card::before{
    content:"";
    position:absolute;
    inset:-1px;
    border-radius:20px;
    background:linear-gradient(
        135deg,
        #0B1F3A,
        #E76F00,
        #0B1F3A,
        #E76F00,
        #0B1F3A
    );
    background-size:400% 400%;
    animation:gciBorder 8s linear infinite;
    z-index:-2;
}

.gci-card::after{
    content:"";
    position:absolute;
    inset:2px;
    background:#fff;
    border-radius:16px;
    z-index:-1;
}

@keyframes gciBorder{

    0%{
        background-position:0% 50%;
    }

    100%{
        background-position:400% 50%;
    }

}

.gci-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(11,31,58,.12);
}

/*=========================================
        ICON
=========================================*/

.gci-icon{
    width:56px;
    height:56px;
    margin:auto auto 14px;
    border-radius:50%;
    background:#0B1F3A;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    transition:.4s;
}

.gci-card:hover .gci-icon{
    background:#E76F00;
    
}

/*=========================================
        TEXT
=========================================*/

.gci-card h3{
    margin-bottom:10px;
    font-size:18px;
    color:#0B1F3A;
    font-weight:600;
}

.gci-card a{
    color:#555;
    text-decoration:none;
    font-size:13px;
    transition:.3s;
    word-break:break-word;
}

.gci-card a:hover{
    color:#E76F00;
}

/*=========================================
        SOCIAL
=========================================*/

.gci-social{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:10px;
    margin-top:10px;
}

.gci-social-icon{
    width:38px;
    height:38px;
    border-radius:50%;
    border:1px solid #ddd;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#0B1F3A !important;
    background:#fff;
    font-size:15px !important;
    transition:.35s;
}

.gci-social-icon:hover{
    background:#E76F00;
    border-color:#E76F00;
    color:#fff !important;
    transform:translateY(-4px);
}

.gci-whatsapp{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    margin-top:8px;
    padding:10px 16px;
    border-radius:8px;
    background:#25D366;
    color:#fff !important;
    font-size:12px !important;
    font-weight:500;
    transition:.35s;
}

.gci-whatsapp:hover{
    background:#1ba94c;
    transform:translateY(-3px);
}

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

@media(max-width:992px){

.gci-contact-section{
    grid-template-columns:1fr;
}

}

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

@media(max-width:768px){

.gci-contact-section{
    padding:0 15px;
}

.gci-card{
    padding:20px 16px;
}

.gci-icon{
    width:50px;
    height:50px;
    font-size:18px;
}

.gci-card h3{
    font-size:16px;
}

.gci-card a{
    font-size:12px;
}

.gci-social-icon{
    width:34px;
    height:34px;
    font-size:14px !important;
}

.gci-whatsapp{
    width:100%;
    font-size:12px !important;
}

}

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

@media(max-width:480px){

.gci-card{
    padding:18px 14px;
}

.gci-icon{
    width:44px;
    height:44px;
    font-size:16px;
}

.gci-card h3{
    font-size:15px;
}

.gci-card a{
    font-size:11px;
}

.gci-social-icon{
    width:32px;
    height:32px;
    font-size:13px !important;
}

.gci-whatsapp{
    padding:9px 12px;
    font-size:11px !important;
}

}

/*ai automation*/
.ai-services{
    padding:70px 20px;
    background:#fff;
}

.ai-services .section-title{
    text-align:center;
    margin-bottom:45px;
}

.ai-services .section-title h2{
    font-size:30px;
    color:#0b1b3f;
    font-weight:700;
    margin-bottom:12px;
}

.ai-services .section-title span{
    display:inline-block;
    width:60px;
    height:3px;
    border-radius:30px;
    background:#fd7e14;
}

/*==============================
GRID
==============================*/

.ai-services-grid{
    max-width:1380px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/*==============================
CARD
==============================*/

.ai-service-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:22px;
    padding:28px;
    transition:.35s ease;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
}

.ai-service-card:hover{
    border-color: #fd7e14;
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

/*==============================
ICON
==============================*/

.service-icon{
    width:54px;
    height:54px;
    border-radius:15px;
    background:#f4f0ff;
    border:1px solid #ddd5ff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:22px;
}

.service-icon i{
    font-size:20px;
    color:#0b1b3f;
}

/*==============================
TITLE
==============================*/

.ai-service-card h3{
    font-size:16px;
    color:#0b1b3f;
    line-height:1.45;
    margin-bottom:14px;
    font-weight:700;
}

/*==============================
TEXT
==============================*/

.ai-service-card p{
    font-size:14px;
    color:#5c687d;
    line-height:1.8;
}

/*==================================
LAPTOP
==================================*/

@media(max-width:1200px){

.ai-services-grid{
    grid-template-columns:repeat(2,1fr);
}

.ai-service-card{
    padding:26px;
}

}

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

@media(max-width:768px){

.ai-services{
    padding:60px 18px;
}

.ai-services .section-title{
    margin-bottom:35px;
}

.ai-services .section-title h2{
    font-size:26px;
}

.ai-services-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.ai-service-card{
    padding:24px;
}

.service-icon{
    width:48px;
    height:48px;
}

.service-icon i{
    font-size:18px;
}

.ai-service-card h3{
    font-size:15px;
}

.ai-service-card p{
    font-size:13px;
}

}

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

@media(max-width:480px){

.ai-services{
    padding:50px 15px;
}

.ai-services .section-title h2{
    font-size:22px;
}

.ai-services .section-title span{
    width:50px;
}

.ai-service-card{
    padding:20px;
    border-radius:18px;
}

.service-icon{
    width:44px;
    height:44px;
    border-radius:12px;
    margin-bottom:18px;
}

.service-icon i{
    font-size:16px;
}

.ai-service-card h3{
    font-size:14px;
    margin-bottom:10px;
}

.ai-service-card p{
    font-size:12px;
    line-height:1.7;
}
}

/*2nd*/
.gca-solutions-section{
    padding:70px 20px;
    background:#ffffff;
}

.gca-solutions-heading{
    text-align:center;
    margin-bottom:45px;
}

.gca-solutions-heading h2{
    font-size:28px;
    font-weight:700;
    color:#0b1b3f;
    margin-bottom:12px;
}

.gca-heading-line{
    display:inline-block;
    width:55px;
    height:3px;
    background:#fd7e14;
    border-radius:30px;
}

/*==========================
    Solutions Grid
==========================*/

.gca-solutions-wrapper{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:18px;
}

/*==========================
    Solution Card
==========================*/
.gca-solution-box{
    position:relative;
    padding:28px 18px;
    border-radius:15px;
    text-align:center;
    background:linear-gradient(
        90deg,
        #0b1b3f,
        #ff7a00,
        #0b1b3f,
        #ff7a00
    );
    background-size:300% 300%;
    animation:gcaBorderFlow 8s linear infinite;
    transition:all .35s ease;
    box-shadow:0 4px 14px rgba(0,0,0,.05);
}

.gca-solution-box::before{
    content:"";
    position:absolute;
    top:1px;
    left:1px;
    right:1px;
    bottom:1px;
    background:#fff;
    border-radius:14px;
    z-index:0;
}

.gca-solution-box>*{
    position:relative;
    z-index:1;
}

@keyframes gcaBorderFlow{

    0%{
        background-position:0% 50%;
    }

    50%{
        background-position:100% 50%;
    }

    100%{
        background-position:0% 50%;
    }

}

.gca-solution-box:hover{
    
    box-shadow:0 12px 28px rgba(11,27,63,.18);
}

/*==========================
    Icon
==========================*/

.gca-solution-icon{
    width:72px;
    height:72px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.gca-solution-icon i{
    font-size:48px;
    color:#fd7e14;
}

/*==========================
    Heading
==========================*/

.gca-solution-box h3{
    font-size:15px;
    line-height:1.45;
    font-weight:700;
    color:#08152f;
    margin:0;
}

/*==========================
        Tablet
==========================*/

@media (max-width:1200px){

    .gca-solutions-wrapper{
        grid-template-columns:repeat(3,1fr);
    }

}

/*==========================
        Mobile
==========================*/

@media (max-width:768px){

    .gca-solutions-section{
        padding:60px 18px;
    }

    .gca-solutions-heading h2{
        font-size:24px;
    }

    .gca-solutions-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .gca-solution-box{
        padding:24px 16px;
    }

    .gca-solution-icon{
        width:60px;
        height:60px;
    }

    .gca-solution-icon i{
        font-size:38px;
    }

    .gca-solution-box h3{
        font-size:14px;
    }

}

/*==========================
      Small Mobile
==========================*/

@media (max-width:480px){

    .gca-solutions-section{
        padding:50px 15px;
    }

    .gca-solutions-wrapper{
        grid-template-columns:1fr;
    }

    .gca-solutions-heading h2{
        font-size:22px;
    }

    .gca-solution-box{
        border-radius:15px;
        padding:22px 15px;
    }

    .gca-solution-icon{
        width:55px;
        height:55px;
    }

    .gca-solution-icon i{
        font-size:34px;
    }

    .gca-solution-box h3{
        font-size:13px;
        line-height:1.5;
    }

}


.automation-cta-area{
    padding:60px 20px;
    background:#ffffff;
}

.automation-cta-wrapper{
    max-width:1200px;
    margin:auto;
    background:#1C133A;
    border-radius:22px;
    padding:50px 55px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

/* Left Content */

.automation-cta-title{
    color:#ffffff;
    font-size:28px;
    font-weight:700;
    margin-bottom:16px;
    line-height:1.2;
}

.automation-cta-text{
    color:#F4F4F4;
    font-size:14px;
    line-height:1.8;
    margin:0;
}

/* Button */

.automation-cta-action{
    flex-shrink:0;
}

.automation-cta-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    background:#ffffff;
    color:#11153A;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    border-radius:12px;
    transition:.3s ease;
    white-space:nowrap;
}

.automation-cta-button span{
    margin-left:8px;
    font-size:16px;
}

.automation-cta-button:hover{
    background:#7B4CFF;
    color:#ffffff;
}

/*==========================
        Tablet
==========================*/

@media (max-width:992px){

.automation-cta-wrapper{
    padding:40px 35px;
    gap:30px;
}

.automation-cta-title{
    font-size:24px;
}

.automation-cta-text{
    font-size:13px;
}

.automation-cta-button{
    font-size:14px;
    padding:14px 28px;
}

}

/*==========================
        Mobile
==========================*/

@media (max-width:768px){

.automation-cta-wrapper{
    flex-direction:column;
    text-align:center;
    padding:35px 25px;
}

.automation-cta-title{
    font-size:22px;
}

.automation-cta-text{
    font-size:13px;
    line-height:1.7;
}

.automation-cta-action{
    width:100%;
}

.automation-cta-button{
    width:220px;
}

}

/*==========================
      Small Mobile
==========================*/

@media (max-width:480px){

.automation-cta-area{
    padding:40px 15px;
}

.automation-cta-wrapper{
    padding:30px 20px;
    border-radius:18px;
}

.automation-cta-title{
    font-size:20px;
}

.automation-cta-text{
    font-size:12px;
}

.automation-cta-button{
    width:100%;
    padding:14px 20px;
    font-size:13px;
}

}

.service-content{
    display:none;
}

.service-content.active{
    display:block;
}

/*==========================
 Development Process
==========================*/

.gcx-process-section{
    width:100%;
    padding:70px 20px;
    background:#fff;
    overflow:hidden;
}

.gcx-process-container{
    max-width:1300px;
    margin:auto;
}

.gcx-process-title{
    text-align:center;
    margin-bottom:70px;
}

.gcx-process-title h2{
    font-size:42px;
    font-weight:700;
    color:#091b44;
    margin:0;
    font-family:'Poppins',sans-serif;
}

.gcx-process-wrapper{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:25px;
}

.gcx-process-line{
    position:absolute;
    top:31px;
    left:8%;
    right:8%;
    border-top:2px dashed #d5a9ff;
    z-index:0;
}

.gcx-process-item{
    width:20%;
    text-align:center;
    position:relative;
    z-index:2;
}

.gcx-process-circle{
    width:62px;
    height:62px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#6b42ff,#4a2ec9);
    color:#fff;
    font-size:17px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 8px 18px rgba(92,63,255,.28);
}

.gcx-process-item h4{
    margin:18px 0 12px;
    font-size:14px;
    font-weight:700;
    line-height:1.35;
    color:#061d45;
    font-family:'Poppins',sans-serif;
}

.gcx-process-item p{
    margin:0 auto;
    width:92%;
    font-size:11.5px;
    line-height:1.8;
    color:#6d7285;
    font-family:'Poppins',sans-serif;
}

/*==========================
 Tablet
==========================*/

@media(max-width:991px){

.gcx-process-title h2{
    font-size:34px;
}

.gcx-process-wrapper{
    flex-wrap:wrap;
    row-gap:50px;
}

.gcx-process-line{
    display:none;
}

.gcx-process-item{
    width:48%;
}

}

/*==========================
 Mobile
==========================
*/
@media(max-width:576px){

.gcx-process-section{
    padding:55px 18px;
}

.gcx-process-title{
    margin-bottom:45px;
}

.gcx-process-title h2{
    font-size:28px;
}

.gcx-process-item{
    width:100%;
}

.gcx-process-circle{
    width:58px;
    height:58px;
    font-size:16px;
}

.gcx-process-item h4{
    font-size:15px;
}

.gcx-process-item p{
    font-size:12px;
    width:90%;
}

}



/*=====================================
   AI Process Section
=====================================*/

.ai-process-section{
    padding:60px 5%;
    background:#fff;
}

.ai-container{
    max-width:1250px;
    margin:auto;
    display:grid;
    grid-template-columns:1.1fr .8fr 1.5fr;
    align-items:center;
    gap:40px;
}

/*=====================
      Headings
======================*/

.applications h2,
.approach h2{
    font-size:20px;
    font-weight:700;
    color:#0b1b3f;
    margin-bottom:25px;
}

/*=====================
      Left List
======================*/

.application-list{
    list-style:none;
    padding:0;
    margin:0;
}

.application-list li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    font-size:13px;
    font-weight:500;
    color:black;
    line-height:1.6;
}

.application-list .check{
    width:24px;
    height:24px;
    background:#fd7e14;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:12px;
    flex-shrink:0;
}

/*=====================
     AI Circle
======================*/

.ai-center{
    display:flex;
    justify-content:center;
    align-items:center;
}

.ai-circle{
    width:140px;
    height:140px;
    border:1.5px solid #fff1cf;
    border-radius:50%;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#fffdfa;
}

.center-text{
    font-size:22px;
    font-weight:700;
    color:#fd7e14;
}

.icon{
    position:absolute;
    width:34px;
    height:34px;
    background:#fff;
    border-radius:8px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:14px;
    box-shadow:0 4px 12px rgba(0,0,0,.12);
}

.icon.top{
    top:-12px;
    left:50%;
    transform:translateX(-50%);
}

.icon.bottom{
    bottom:-12px;
    left:50%;
    transform:translateX(-50%);
}

.icon.left{
    left:-12px;
    top:50%;
    transform:translateY(-50%);
}

.icon.right{
    right:-12px;
    top:50%;
    transform:translateY(-50%);
}

/*=====================
      Timeline
======================*/

.timeline{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    margin-top:35px;
}

.timeline .line{
    position:absolute;
    top:18px;
    left:4%;
    right:4%;
    height:2px;
    background:#fd7e14;
    z-index:0;
}

.step{
    position:relative;
    z-index:1;
    width:110px;
    text-align:center;
}

.number{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#fd7e14;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    margin-bottom:12px;
    font-size:14px;
    font-weight:700;
}

.step h4{
    font-size:11px;
    line-height:1.5;
    font-weight:600;
    color:black;
}

/*=====================================
        Laptop
=====================================*/

@media (max-width:1200px){

.ai-container{
    grid-template-columns:1fr;
    gap:60px;
}

.applications,
.approach{
    text-align:center;
}

.application-list li{
    justify-content:flex-start;
    text-align:left;
}

.timeline{
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}

.timeline .line{
    display:none;
}

.step{
    width:140px;
}

}

/*=====================================
          Tablet
=====================================*/

@media (max-width:768px){

.ai-process-section{
    padding:50px 20px;
}

.applications h2,
.approach h2{
    font-size:18px;
    margin-bottom:20px;
}

.application-list li{
    font-size:12px;
    gap:10px;
    margin-bottom:14px;
}

.application-list .check{
    width:22px;
    height:22px;
    font-size:11px;
}

.ai-circle{
    width:120px;
    height:120px;
}

.center-text{
    font-size:20px;
}

.icon{
    width:28px;
    height:28px;
    font-size:12px;
}

.icon.top{
    top:-10px;
}

.icon.bottom{
    bottom:-10px;
}

.icon.left{
    left:-10px;
}

.icon.right{
    right:-10px;
}

.timeline{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

.step{
    width:100%;
}

.number{
    width:34px;
    height:34px;
    font-size:12px;
}

.step h4{
    font-size:10px;
}

}

/*=====================================
          Mobile
=====================================*/

@media (max-width:480px){

.ai-process-section{
    padding:40px 15px;
}

.ai-container{
    gap:45px;
}

.applications h2,
.approach h2{
    font-size:17px;
}

.application-list li{
    font-size:11px;
    line-height:1.5;
}

.timeline{
    grid-template-columns:1fr;
}

.step{
    max-width:180px;
    margin:auto;
}

.ai-circle{
    width:110px;
    height:110px;
}

.center-text{
    font-size:18px;
}

.icon{
    width:26px;
    height:26px;
    font-size:11px;
}

}

.service-content{
    display:none;
}

.service-content.active{
    display:block;
}

/*====================================================
            COMMON SECTION
====================================================*/

.lab-process-section,
.why-choose-section{
    width:100%;
    padding:70px 5%;
    background:#fff;
    font-family:'Poppins',sans-serif;
}

.section-title{
    max-width:700px;
    margin:0 auto 45px;
    text-align:center;
}

.section-title h2{
    font-size:32px;
    font-weight:700;
    color:#0d1b3d;
    margin-bottom:10px;
}

.section-title span{
    display:block;
    width:70px;
    height:3px;
    background:#ff7a00;
    border-radius:20px;
    margin:0 auto 15px;
}

.section-title p{
    font-size:15px;
    color:#666;
    line-height:1.7;
}

/*====================================================
            PROCESS TIMELINE
====================================================*/

.process-grid{
    max-width:1000px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
    position:relative;
    padding-left:55px;
}

.process-grid::before{
    content:"";
    position:absolute;
    left:24px;
    top:0;
    width:3px;
    height:100%;
    background:#ff7a00;
}

.process-card{
    position:relative;
    background:#fff;
    border:1px solid #0b1b3f;
    border-left:4px solid #ff7a00;
    border-radius:14px;
    padding:20px 22px 20px 28px;
    transition:.35s;
    box-shadow:0 8px 20px rgba(0,0,0,.04);
}

.process-card:hover{
  
    box-shadow:0 15px 35px rgba(13,27,61,.10);
}

.process-number{
    position:absolute;
    left:-52px;
    top:18px;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#ff7a00;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:15px;
    font-weight:700;
    border:4px solid #fff;
    box-shadow:0 0 0 3px #ff7a00;
}

.process-card h3{
    font-size:19px;
    color:#0d1b3d;
    margin-bottom:8px;
}

.process-card p{
    font-size:14px;
    color:#666;
    line-height:1.7;
}

/*====================================================
            WHY CHOOSE
====================================================*/

.why-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.why-card{
    background:#fff;
    border:2px solid #edf1f7;
    border-top:4px solid #ff7a00;
    border-radius:14px;
    padding:24px 20px;
    text-align:center;
    transition:.35s;
    box-shadow:0 8px 20px rgba(0,0,0,.04);
}

.why-card:hover{
    border-color:#ff7a00;
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(13,27,61,.12);
}

.why-card i{
    width:58px;
    height:58px;
    margin:0 auto 18px;
    border-radius:50%;
    background:#fff4eb;
    color:#ff7a00;
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.why-card:hover i{
    background:#ff7a00;
    color:#fff;
}

.why-card h3{
    font-size:20px;
    color:#fd7e14;
    margin-bottom:10px;
}

.why-card p{
    font-size:14px;
    color:#666;
    line-height:1.7;
}

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

@media(max-width:991px){

.lab-process-section,
.why-choose-section{
    padding:60px 4%;
}

.section-title h2{
    font-size:28px;
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.process-card{
    padding:18px 20px 18px 26px;
}

.process-card h3,
.why-card h3{
    font-size:18px;
}

}

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

@media(max-width:768px){

.lab-process-section,
.why-choose-section{
    padding:50px 20px;
}

.section-title{
    margin-bottom:35px;
}

.section-title h2{
    font-size:24px;
}

.section-title p{
    font-size:14px;
}

.process-grid{
    padding-left:40px;
    gap:16px;
}

.process-grid::before{
    left:18px;
}

.process-number{
    width:34px;
    height:34px;
    left:-40px;
    font-size:13px;
}

.process-card{
    padding:16px 18px 16px 22px;
}

.process-card h3{
    font-size:17px;
}

.process-card p{
    font-size:13px;
}

.why-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.why-card{
    padding:20px 18px;
}

.why-card i{
    width:50px;
    height:50px;
    font-size:20px;
}

.why-card h3{
    font-size:17px;
}

.why-card p{
    font-size:13px;
}

}
/*=========================================
        WHY BETTER SECTION
=========================================*/
.gca-why-section{
    padding:60px 5%;
    background:#0d1b3d;
    font-family:'Poppins',sans-serif;
}

.gca-why-heading{
    max-width:700px;
    margin:0 auto 35px;
    text-align:center;
}

.gca-why-heading h2{
    font-size:30px;
    color:#ffffff;
    margin-bottom:10px;
}

.gca-why-heading span{
    display:block;
    width:70px;
    height:4px;
    background:#ff7a00;
    margin:0 auto 15px;
    border-radius:30px;
}

.gca-why-heading p{
    font-size:14px;
    color:rgba(255,255,255,.75);
    line-height:1.8;
}

.gca-why-wrapper{
    max-width:1000px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.gca-why-card{
    background:#ffffff;
    border:1px solid rgba(255,255,255,.08);
    border-radius:14px;
    padding:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.18);
    transition:.35s ease;
}

.gca-why-card:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.gca-best{
    border:2px solid #ff7a00;
    box-shadow:0 15px 40px rgba(255,122,0,.22);
}

.gca-why-card h3{
    font-size:20px;
    color:#0d1b3d;
    margin-bottom:18px;
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}

.gca-best h3{
    color:#ff7a00;
}

.gca-why-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.gca-why-card li{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
    color:#555;
    padding:11px 0;
    border-bottom:1px solid #edf2f7;
    line-height:1.6;
}

.gca-why-card li:last-child{
    border-bottom:none;
}

.gca-best .fa-check{
    color:#22c55e;
}

.gca-why-card .fa-xmark{
    color:#ef4444;
}

.gca-why-card i{
    font-size:15px;
    width:18px;
    text-align:center;
}

/*=========================================
            RESPONSIVE
=========================================*/

@media(max-width:768px){

.gca-why-section{
    padding:50px 20px;
}

.gca-why-heading h2{
    font-size:24px;
}

.gca-why-heading p{
    font-size:13px;
}

.gca-why-wrapper{
    grid-template-columns:1fr;
    gap:18px;
}

.gca-why-card{
    padding:20px;
}

.gca-why-card h3{
    font-size:18px;
}

.gca-why-card li{
    font-size:13px;
    padding:9px 0;
}

}

/*=========================================
        EDUCATIONAL INSTITUTIONS
=========================================*/

.gca-industries-section{
    padding:70px 5%;
    background:#fff;
    font-family:'Poppins',sans-serif;
}

.gca-industries-heading{
    max-width:700px;
    margin:0 auto 40px;
    text-align:center;
}

.gca-industries-heading h2{
    font-size:30px;
    color:#0d1b3d;
    margin-bottom:10px;
}

.gca-industries-heading span{
    display:block;
    width:65px;
    height:3px;
    background:#fd7e14;
    margin:0 auto 15px;
    border-radius:30px;
}

.gca-industries-heading p{
    font-size:14px;
    color:#666;
    line-height:1.7;
}

.gca-industries-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.gca-industry-card{
    background:#fff;
    padding:25px 20px;
    text-align:center;
    border:1px solid #e7edf6;
    border-radius:14px;
    transition:.35s;
    border-color:#fd7e14;
}

.gca-industry-card:hover{
  
    
    box-shadow:0 12px 30px rgba(13,27,61,.08);
}

.gca-industry-icon{
    width:60px;
    height:60px;
    margin:0 auto 18px;
    background:#fff;
    color:#0b1b3f;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.35s;
}

.gca-industry-card:hover .gca-industry-icon{
    background:#ff7a00;
    color:#fff;
}

.gca-industry-card h3{
    font-size:19px;
    color:#0d1b3d;
    margin-bottom:10px;
}

.gca-industry-card p{
    font-size:14px;
    color:#666;
    line-height:1.7;
}

/*=========================================
        RESPONSIVE
=========================================*/

@media(max-width:991px){

.gca-industries-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.gca-industries-section{
    padding:55px 20px;
}

.gca-industries-heading h2{
    font-size:24px;
}

.gca-industries-heading p{
    font-size:13px;
}

.gca-industries-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.gca-industry-card{
    padding:20px 18px;
}

.gca-industry-icon{
    width:50px;
    height:50px;
    font-size:20px;
}

.gca-industry-card h3{
    font-size:17px;
}

.gca-industry-card p{
    font-size:13px;
}

}
.gc-transform-title{
    font-family:'Kaushan Script',cursive;
    font-size:40px;
}

/*idystry we serve*/
/*=================================
 INDUSTRIES SECTION
==================================*/

.gc-industry-section{
    width:100%;
    background:#ffffff;
    padding:90px 5%;
    font-family:'Poppins',sans-serif;
}

.gc-industry-heading{
    max-width:760px;
    margin:auto;
    text-align:center;
    margin-bottom:55px;
}

.gc-industry-heading span{
    display:inline-block;
    color:#ff6b00;
    font-size:11px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.gc-industry-heading h2{
    color:#0d1b3e;      /* Navy Blue */
    font-size:42px;
    font-weight:700;
    margin-bottom:15px;
}

.gc-industry-heading p{
    color:#5b6475;
    font-size:14px;
    line-height:1.8;
}

/*================ GRID ================*/

.gc-industry-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:22px;
}

/*================ CARD ================*/

.gc-industry-card{
    position:relative;
    height:185px;
    overflow:hidden;
    border-radius:16px;
    background:#fff;
    border:1px solid #edf0f5;
    box-shadow:0 10px 30px rgba(13,27,62,.08);
    transition:.35s;
}

.gc-industry-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

/* Navy Overlay */

.gc-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(13,27,62,.92),
        rgba(13,27,62,.18)
    );
}

/* Industry Name */

.gc-industry-card h3{
    position:absolute;
    left:18px;
    right:18px;
    bottom:18px;
    color:#fff;
    font-size:14px;
    font-weight:500;
    line-height:1.5;
    z-index:2;
}

/* Hover */

.gc-industry-card:hover{

    transform:translateY(-1px);

    border-color:#ff6b00;

    box-shadow:
    0 18px 45px rgba(13,27,62,.15),
    0 0 0 2px rgba(255,107,0,.15);

}

.gc-industry-card:hover img{

    transform:scale(1.08);

}

/*================ RESPONSIVE ================*/

@media(max-width:1200px){

.gc-industry-grid{
grid-template-columns:repeat(4,1fr);
}

}

@media(max-width:992px){

.gc-industry-grid{
grid-template-columns:repeat(3,1fr);
}

.gc-industry-heading h2{
font-size:36px;
}

}

@media(max-width:768px){

.gc-industry-grid{
grid-template-columns:repeat(2,1fr);
gap:18px;
}

.gc-industry-card{
height:170px;
}

.gc-industry-heading h2{
font-size:30px;
}

.gc-industry-heading p{
font-size:13px;
}

}

@media(max-width:576px){

.gc-industry-grid{
grid-template-columns:1fr;
}

.gc-industry-card{
height:220px;
}

.gc-industry-heading h2{
font-size:26px;
}

}


/*video*/
/* ===========================================
   CIRCUIT & BYTE SYSTEMS HERO SECTION
=========================================== */

.cbs-hero-video-wrap{
    position:relative;
    width:100%;
    height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Background Video */

.cbs-hero-video-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

/* Overlay */

.cbs-hero-dark-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
    z-index:2;
}

/* Content */

.cbs-hero-content-box{
    position:relative;
    z-index:5;
    width:100%;
    max-width:1200px;
    padding:0 60px;
    text-align:center;
    color:#fff;
}

/* Tagline */

.cbs-hero-tagline{
    display:inline-block;
    color:#ff8c1a;
    font-size:18px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:20px;
}

/* Heading */

.cbs-hero-main-title{
    font-size:64px;
    font-weight:800;
    line-height:1.15;
    margin-bottom:28px;
    color:#fff;
}

/* Paragraph */

.cbs-hero-description{
    max-width:850px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#ededed;
}

/* Buttons */

.cbs-hero-btn-group{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:45px;
    flex-wrap:wrap;
}

/* Common Button */

.cbs-btn-primary,
.cbs-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 38px;
    text-decoration:none;
    border-radius:50px;
    font-size:16px;
    font-weight:700;
    transition:.35s ease;
}

/* Primary */

.cbs-btn-primary{
    background:#ff8c1a;
    color:#fff;
}

.cbs-btn-primary:hover{
    background:#ff6b00;
    transform:translateY(-3px);
}

/* Secondary */

.cbs-btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.cbs-btn-secondary:hover{
    background:#fff;
    color:#111;
    transform:translateY(-3px);
}

/* ===========================================
   Responsive
=========================================== */

@media (max-width:1400px){

.cbs-hero-main-title{
    font-size:58px;
}

}

@media (max-width:1200px){

.cbs-hero-content-box{
    padding:0 40px;
}

.cbs-hero-main-title{
    font-size:50px;
}

.cbs-hero-description{
    font-size:18px;
}

}

@media (max-width:992px){

.cbs-hero-video-wrap{
    height:90vh;
}

.cbs-hero-main-title{
    font-size:42px;
}

.cbs-hero-description{
    font-size:17px;
}

}

@media (max-width:768px){

.cbs-hero-video-wrap{
    height:85vh;
}

.cbs-hero-content-box{
    padding:0 25px;
}

.cbs-hero-tagline{
    font-size:15px;
}

.cbs-hero-main-title{
    font-size:34px;
    line-height:1.25;
}

.cbs-hero-description{
    font-size:16px;
    line-height:1.7;
}

.cbs-btn-primary,
.cbs-btn-secondary{
    width:220px;
}

}

@media (max-width:576px){

.cbs-hero-video-wrap{
    height:80vh;
}

.cbs-hero-main-title{
    font-size:28px;
}

.cbs-hero-description{
    font-size:15px;
}

.cbs-hero-btn-group{
    flex-direction:column;
}

.cbs-btn-primary,
.cbs-btn-secondary{
    width:100%;
    max-width:280px;
}

}

@media (max-width:400px){

.cbs-hero-content-box{
    padding:0 18px;
}

.cbs-hero-main-title{
    font-size:24px;
}

.cbs-hero-description{
    font-size:14px;
}

.cbs-btn-primary,
.cbs-btn-secondary{
    padding:14px 28px;
    font-size:15px;
}

}

/*footer-*
/*==========================
        FOOTER
===========================*/

.gc-footer{
    background:#1C133A;
    padding:50px 0 0;
    color:#c7d0da;
    border-top:1px solid rgba(255,255,255,.08);
    font-family:'Poppins',sans-serif;
}

.gc-footer-container{
    width:90%;
    max-width:1300px;
    margin:auto;

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.4fr;
    gap:45px;
}

/* Logo */

.gc-footer-logo{
    display:inline-block;
    margin-bottom:15px;
}

.gc-footer-logo img{
    width:170px;
    display:block;
}

/* Description */

.gc-footer-desc{
    font-size:14px;
    line-height:1.8;
    color:#a8b4c1;
    max-width:320px;
}

/* Titles */

.gc-footer-title{
    color:#fff;
    font-size:17px;
    font-weight:600;
    margin-bottom:18px;
}

/* Links */

.gc-footer-links{
    list-style:none;
    padding:0;
    margin:0;
}

.gc-footer-links li{
    margin-bottom:10px;
}

.gc-footer-links a{
    text-decoration:none;
    color:#b8c3cf;
    font-size:14px;
    transition:.3s;
}

.gc-footer-links a:hover{
    color:#ff7a00;
    padding-left:5px;
}

/* Contact */

.gc-footer-contact p{
    display:flex;
    gap:10px;
    align-items:flex-start;
    margin-bottom:12px;
    font-size:14px;
    line-height:1.6;
    color:#b8c3cf;
}

.gc-footer-contact i{
    color:#ff7a00;
    margin-top:3px;
}

/* Social */

.gc-footer-social{
    display:flex;
    gap:10px;
    margin-top:18px;
}

.gc-footer-social a{
    width:36px;
    height:36px;
    border:1px solid rgba(255,255,255,.12);
    border-radius:8px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    transition:.3s;
}

.gc-footer-social a:hover{
    background:#ff7a00;
    border-color:#ff7a00;
}

/* Bottom */

.gc-footer-bottom{
    margin-top:40px;
    padding:18px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,.08);
    color:#8f9baa;
    font-size:13px;
}

/*==========================
        Tablet
===========================*/

@media(max-width:991px){

.gc-footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.gc-footer-logo img{
    width:150px;
}

}

/*==========================
        Mobile
===========================*/

@media(max-width:768px){

.gc-footer{
    padding-top:40px;
}

.gc-footer-container{
    grid-template-columns:1fr;
    text-align:center;
    gap:30px;
}

.gc-footer-logo{
    display:flex;
    justify-content:center;
}

.gc-footer-logo img{
    width:140px;
}

.gc-footer-desc{
    margin:auto;
    font-size:13px;
    color: #fff;
}

.gc-footer-contact p{
    justify-content:center;
    text-align:left;
}

.gc-footer-social{
    justify-content:center;
}

.gc-footer-title{
    font-size:16px;
}

.gc-footer-links a,
.gc-footer-contact p{
    font-size:13px;
}

.gc-footer-bottom{
    font-size:12px;
}

}

/*sectionnn-*/
/*=========================================
        WHY GENCULTURAI SECTION
==========================================*/

.gc-why-section{
    padding:60px 18px;
    background:#fff;
    font-family:'Poppins',sans-serif;
}

.gc-why-container{
    max-width:1280px;
    margin:auto;
    display:grid;
    grid-template-columns:320px 1fr;
    gap:18px;
    padding:18px;
    border:1px solid #edf2f7;
    border-radius:18px;
    background:#fff;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
}

/*======================
      LEFT BOX
=======================*/

.gc-left-box{
    background:linear-gradient(135deg,#081C3D,#0F3568);
    color:#fff;
    border-radius:16px;
    padding:28px 24px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.gc-badge{
    display:inline-block;
    width:max-content;
    padding:5px 12px;
    font-size:10px;
    font-weight:600;
    letter-spacing:.5px;
    color:#FF8C32;
    background:rgba(255,140,50,.15);
    border:1px solid rgba(255,140,50,.35);
    border-radius:30px;
    margin-bottom:14px;
}

.gc-left-box h2{
    font-size:24px;
    line-height:1.35;
    font-weight:700;
    margin-bottom:14px;
}

.gc-left-box p{
    font-size:12px;
    line-height:1.8;
    color:#e5edf8;
    margin-bottom:22px;
}

.gc-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:max-content;
    padding:10px 22px;
    background:#FF8C32;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-size:12px;
    font-weight:600;
    transition:.3s;
}

.gc-btn:hover{
    background:#ff7a0a;
    transform:translateY(-2px);
}

/*======================
      RIGHT SIDE
=======================*/

.gc-right-box{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:14px;
}

.gc-card{
    display:flex;
    align-items:flex-start;
    gap:14px;
    padding:16px 18px;
    background:#fafbfc;
    border:1px solid #edf2f7;
    border-radius:14px;
    transition:.3s;
    
}



.gc-card-full{
    grid-column:1/-1;
}

.gc-icon{
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#eef5ff;
    font-size:20px;
}

.gc-card h4{
    font-size:15px;
    font-weight:600;
    color:#0B1F3A;
    margin-bottom:6px;
    line-height:1.4;
}

.gc-card p{
    font-size:12px;
    line-height:1.65;
    color:#667085;
    margin:0;
}

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

@media(max-width:991px){

.gc-why-container{
    grid-template-columns:1fr;
}

.gc-left-box{
    text-align:center;
    align-items:center;
}

.gc-right-box{
    grid-template-columns:1fr;
}

.gc-card-full{
    grid-column:auto;
}

}

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

@media(max-width:576px){

.gc-why-section{
    padding:45px 14px;
}

.gc-why-container{
    padding:14px;
    gap:14px;
}

.gc-left-box{
    padding:22px 18px;
}

.gc-badge{
    font-size:9px;
    padding:4px 10px;
}

.gc-left-box h2{
    font-size:20px;
    line-height:1.4;
}

.gc-left-box p{
    font-size:11px;
    line-height:1.7;
}

.gc-btn{
    font-size:11px;
    padding:9px 18px;
}

.gc-card{
    padding:14px;
    gap:12px;
}

.gc-icon{
    width:40px;
    height:40px;
    min-width:40px;
    font-size:18px;
}

.gc-card h4{
    font-size:14px;
    margin-bottom:5px;
}

.gc-card p{
    font-size:11px;
    line-height:1.6;
}

}


/*esds*/
/*==========================
      Ecosystem Section
==========================*/

.gc-ecosystem{
    width:100%;
    padding:70px 8%;
    background:#fff;
}

.gc-eco-heading{
    text-align:center;
    margin-bottom:45px;
}

.gc-eco-heading h5{
    color:#ff7a00;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:10px;
}

.gc-eco-heading h2{
    font-size:34px;
    color:#0b1d33;
    font-weight:700;
    margin-bottom:12px;
}

.gc-eco-heading p{
    max-width:900px;
    margin:auto;
    font-size:16px;
    line-height:1.7;
    color:#666;
}

.gc-eco-wrapper{
    display:grid;
    grid-template-columns:340px 1fr;
    gap:30px;
    align-items:start;
}

/* Left */

.gc-eco-left{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.gc-eco-tab{
    display:flex;
    align-items:center;
    gap:15px;
    padding:18px;
    background:#fafafa;
    border:1px solid #eee;
    border-radius:12px;
    cursor:pointer;
    transition:.3s;
}

.gc-eco-tab:hover{
    border-color:#ff7a00;
    transform:translateX(5px);
}

.gc-eco-tab.active{
    background:#fff7f0;
    border-color:#ff7a00;
}

.gc-eco-tab span{
    width:42px;
    height:42px;
    background:#ff7a00;
    color:#fff;
    border-radius:10px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
    font-weight:600;
}

.gc-eco-tab h3{
    margin:0;
    font-size:17px;
    font-weight:600;
    color:#0b1d33;
}

/* Right */

.gc-eco-right{
    padding:40px;
    background:#fff;
    border:2px solid #0B1F3A;
    border-radius:18px;
    box-shadow:0 10px 35px rgba(0,0,0,.05);
}

.gc-content{
    display:none;
}

.gc-content.active{
    display:block;
    animation:gcFade .4s ease;
}

@keyframes gcFade{
    from{
        opacity:0;
        transform:translateY(15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.gc-content h2{
    margin-bottom:20px;
    font-size:28px;
    color:#0b1d33;
}

.gc-content ul{
    margin:0;
    padding:0;
    list-style:none;
}

.gc-content ul li{
    position:relative;
    padding-left:24px;
    margin-bottom:14px;
    color:#555;
    font-size:15px;
    line-height:1.7;
}

.gc-content ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:1px;
    color:#ff7a00;
    font-size:13px;
    font-weight:700;
}

.gc-eco-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 28px;
    background:#ff7a00;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.gc-eco-btn:hover{
    background:#0b1d33;
    color:#fff;
}

/* Tablet */

@media (max-width:991px){

.gc-eco-wrapper{
    grid-template-columns:1fr;
}

.gc-eco-right{
    padding:30px;
}

.gc-content h2{
    font-size:24px;
}

}

/* Mobile */

@media (max-width:768px){

.gc-ecosystem{
    padding:50px 20px;
}

.gc-eco-heading h2{
    font-size:28px;
}

.gc-eco-heading p{
    font-size:14px;
}

.gc-eco-tab{
    padding:15px;
}

.gc-eco-tab span{
    width:36px;
    height:36px;
    font-size:14px;
}

.gc-eco-tab h3{
    font-size:15px;
}

.gc-content h2{
    font-size:22px;
}

.gc-content ul li{
    font-size:14px;
}

.gc-eco-btn{
    width:100%;
    text-align:center;
}

}

@media (max-width:480px){

.gc-eco-heading h2{
    font-size:24px;
}

.gc-eco-heading h5{
    font-size:14px;
}

.gc-content h2{
    font-size:20px;
}

.gc-eco-wrapper{
    gap:20px;
}

}

/*end*/
/*==============================
    Technology Focus Section
===============================*/

.gc-tech-focus{
    width:100%;
    padding:70px 20px;
    background:#f57c17;
    position:relative;
    overflow:hidden;
}

.gc-tech-focus::before{
    content:"";
    width:500px;
    height:180px;
    background:rgba(255,255,255,.12);
    position:absolute;
    top:-120px;
    left:50%;
    transform:translateX(-50%);
    border-radius:50%;
    filter:blur(25px);
}

.gc-tech-container{
    max-width:950px;
    margin:auto;
    text-align:center;
    position:relative;
    z-index:2;
}

.gc-tech-container h2{
    font-size:48px;
    color:#0b1d42;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.gc-tech-container h2 span{
    color:#fff;
}

.gc-tech-badge{
    display:inline-block;
    background:#fff;
    color:#0b1d42;
    padding:14px 35px;
    border-radius:40px;
    font-size:17px;
    font-weight:600;
    margin-bottom:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.15);
}

.gc-tech-desc{
    max-width:820px;
    margin:auto;
    color:#fff;
    font-size:18px;
    line-height:1.8;
}

.gc-tech-container h4{
    margin-top:40px;
    color:#0b1d42;
    font-size:28px;
    font-style:italic;
    font-weight:700;
}

.gc-tech-btn{
    display:inline-block;
    margin-top:40px;
    padding:14px 34px;
    background:#0b1d42;
    color:#fff;
    text-decoration:none;
    border-radius:40px;
    font-size:15px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    transition:.3s;
}

.gc-tech-btn:hover{
    background:#0b1d42;
    color:#fff;
}

/* Tablet */

@media(max-width:991px){

.gc-tech-container h2{
    font-size:38px;
}

.gc-tech-desc{
    font-size:16px;
}

.gc-tech-container h4{
    font-size:24px;
}

}

/* Mobile */

@media(max-width:768px){

.gc-tech-focus{
    padding:55px 20px;
}

.gc-tech-container h2{
    font-size:28px;
}

.gc-tech-badge{
    font-size:14px;
    padding:12px 22px;
}

.gc-tech-desc{
    font-size:15px;
    line-height:1.7;
}

.gc-tech-container h4{
    font-size:20px;
    line-height:1.5;
}

.gc-tech-btn{
    margin-top:30px;
    padding:12px 28px;
    font-size:14px;
}

}




/*=========================
      OUR CLIENTS
=========================*/

.gc-clients-section{
    padding:60px 0;
    background:#fff;
    overflow:hidden;
}

.gc-container{
    width:90%;
    max-width:1400px;
    margin:auto;
}

.gc-heading{
    text-align:center;
    margin-bottom:25px;
}

.gc-tag{
    display:inline-block;
    color:#ff6b00;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.gc-heading h2{
    font-size:28px;
    color:#162447;
    font-weight:800;
    line-height:1.2;
    margin-bottom:18px;
}

.gc-heading h2 span{
    display:block;
    color:#ff6b00;
}

.gc-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/* Marquee */

.gc-marquee{
    overflow:hidden;
    position:relative;
    width:100%;
}

.gc-marquee-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:gcScroll 30s linear infinite;
}

.gc-marquee:hover .gc-marquee-track{
    animation-play-state:paused;
}

.gc-client-card{
    width:240px;
    height:150px;
    flex-shrink:0;
    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.35s;
}

.gc-client-card:hover{
    border-color:#ff6b00;
   
    box-shadow:0 15px 35px rgba(255,107,0,.15);
}

.gc-client-card img{
    max-width:150px;
    max-height:80px;
    object-fit:contain;
}

@keyframes gcScroll{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* Responsive */

@media(max-width:768px){

.gc-heading h2{
    font-size:24px;
}

.gc-client-card{
    width:180px;
    height:120px;
}

.gc-client-card img{
    max-width:110px;
}

.gc-marquee-track{
    animation-duration:20s;
}

}



/*==================================
      GenCulturAI Hiring Process
===================================*/

.gc-hiring-section{
    padding:90px 8%;
    background:#ffffff;
    font-family:'Poppins',sans-serif;
}

.gc-hiring-header{
    max-width:720px;
    margin:0 auto 60px;
    text-align:center;
}

.gc-hiring-tag{
    display:inline-block;
    padding:7px 18px;
    border-radius:30px;
    background:rgba(255,107,0,.12);
    color:#ff6b00;
    font-size:11px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:16px;
}

.gc-hiring-header h2{
    font-size:34px;
    color:#0b1d42;
    margin-bottom:12px;
    font-weight:700;
}

.gc-hiring-header p{
    font-size:13px;
    color:#5d6779;
    line-height:1.8;
}

.gc-hiring-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

.gc-hiring-card{
    position:relative;
    background:#fff;
    border:1px solid #edf0f5;
    border-radius:18px;
    padding:28px;
    transition:.35s ease;
    overflow:hidden;
}

.gc-hiring-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#ff6b00,#0b1d42);
}

.gc-hiring-card:hover{
    border-color:#ff6b00;
    box-shadow:0 18px 35px rgba(11,29,66,.10);
}

.gc-step-number{
    width:52px;
    height:52px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ff6b00,#ff914d);
    color:#fff;
    font-size:15px;
    font-weight:700;
    margin-bottom:18px;
    box-shadow:0 8px 20px rgba(255,107,0,.25);
}

.gc-hiring-card h3{
    color:#0b1d42;
    font-size:17px;
    margin-bottom:10px;
    font-weight:600;
}

.gc-hiring-card p{
    color:#666;
    font-size:12.5px;
    line-height:1.8;
}



/* Optional connecting line */

.gc-hiring-card::after{
    content:"";
    position:absolute;
    right:-28px;
    top:50%;
    width:28px;
    height:2px;
    background:#ff6b00;
    opacity:.35;
}

.gc-hiring-card:nth-child(3)::after,
.gc-hiring-card:nth-child(6)::after{
    display:none;
}

/* Tablet */

@media(max-width:991px){

.gc-hiring-grid{
    grid-template-columns:repeat(2,1fr);
}

.gc-hiring-card:nth-child(2)::after,
.gc-hiring-card:nth-child(4)::after,
.gc-hiring-card:nth-child(6)::after{
    display:none;
}

.gc-hiring-header h2{
    font-size:30px;
}

}

/* Mobile */

@media(max-width:768px){

.gc-hiring-section{
    padding:70px 20px;
}

.gc-hiring-grid{
    grid-template-columns:1fr;
    gap:18px;
}

.gc-hiring-card::after{
    display:none;
}

.gc-hiring-header h2{
    font-size:25px;
}

.gc-hiring-header p{
    font-size:12px;
}

.gc-hiring-card{
    padding:22px;
}

.gc-step-number{
    width:46px;
    height:46px;
    font-size:13px;
}

.gc-hiring-card h3{
    font-size:15px;
}

.gc-hiring-card p{
    font-size:11.5px;
}

}


