
:root {
    --primary-color: #2563eb;
    --text-color: #1f2937;
    --light-bg: #f3f4f6;
    --gradient: linear-gradient(135deg, #2563eb, #3b82f6);
    --transition: 0.3s ease;
    --white: #ffffff;
    --primary: #2563eb;
    --secondary: #3b82f6;
    --text-dark: #2B3445;
    --text-light: #64748b;
    --container-width-lg: 1200px;
    --container-width-md: 960px;
    --container-width-sm: 720px;
    --container-padding: 1rem;
    --header-height: 70px;
    --emergency-height: 40px;
    --total-header: calc(var(--header-height) + var(--emergency-height));
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
}

main {
    margin-top: 0;
    padding-top: 0;
}

section {
    margin-top: 0;
    padding-top: 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    section {
        padding: 3rem 0;
    }
}

h1,
.h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h2,
.h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.3;
    margin-bottom: 1.25rem;
}

h3,
.h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.4;
    margin-bottom: 1rem;
}

p,
.text {
    font-size: clamp(1rem, 2vw, 1.135rem);
    line-height: 1.6;
    margin-bottom: 1rem;
}



/* navrbar start */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav-container {
    max-width: 1950px;
    height: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
    position: relative;
    transition: var(--transition);
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-item:hover::before,
.nav-item.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-item:hover,
.nav-item.active {
    color: var(--primary);
}

.menu-icon {
    display: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 102;
}

.bar1, .bar2, .bar3 {
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: var(--transition);
}

.bar1 { top: 0; }
.bar2 { top: 50%; transform: translateY(-50%); }
.bar3 { bottom: 0; }


/* Mobile Navigation */
@media screen and (max-width: 968px) {

     :root {
        --container-padding: 1rem;
    }
    .menu-icon {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transition: var(--transition);
        z-index: 101;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateY(20px);
        transition: var(--transition);
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
        transition-delay: calc(0.1s * var(--i));
    }

    .menu-icon.active .bar1 {
        transform: rotate(-45deg) translate(-5px, 6px);
        background-color: var(--primary);
    }

    .menu-icon.active .bar2 {
        opacity: 0;
    }

    .menu-icon.active .bar3 {
        transform: rotate(45deg) translate(-5px, -6px);
        background-color: var(--primary);
    }

    .nav-item {
        font-size: 1.4rem;
    }
}

@media screen and (max-width: 576px) {
    .nav-container {
        padding: 0 1rem;
    }

    .logo img {
        height: 50px;
    }

    .nav-item {
        font-size: 1.2rem;
    }
}










.team-banner {
    position: relative;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8eeff 100%);
      padding: 160px 0 100px;
    overflow: hidden;
    min-height: calc(100vh - 80px);
}

.banner-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.banner-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.banner-text {
    max-width: 600px;
     margin-left: auto;
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(37, 99, 235, 0.1);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.badge-icon {
    font-size: 20px;
}

/* TITLE */
.banner-title {
    font-size: 44px;
    line-height: 1.25;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 700;
}

.banner-description {
    font-size: 17px;
    line-height: 1.7;
    color: #000000;
    margin-bottom: 35px;
    text-align: justify;
}
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}
.btn-primary {
    background: linear-gradient(135deg, #2563eb, #053075);
    color: #ffffff;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}
.banner-image {
     display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}
.image-container {
    position: relative;
    width: fit-content;
    margin: auto;
    padding: 2px;
    border-radius: 28px;
    overflow: hidden;
}

/* 🔥 CONTINUOUS ROTATING BORDER */
.image-container::before {
    content: "";
    position: absolute;
    inset: -100%;
    background:
        conic-gradient(
            from 0deg,
            transparent 0deg,
            transparent 300deg,
            #7c3aed 330deg,
            #2563eb 350deg,
            transparent 360deg
        ),
        conic-gradient(
            from 180deg,
            transparent 0deg,
            transparent 300deg,
            #7c3aed 330deg,
            #3b82f6 350deg,
            transparent 360deg
        );

    animation: rotateBorder 4s linear infinite;
    z-index: 1;
}

/* INNER MASK */
.image-container::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #eef2ff;
    border-radius: 26px;
    z-index: 2;
}

/* IMAGE */
.image-container img {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 520px;
    height: auto;
    display: block;
    border-radius: 26px;
    object-fit: cover;
}

/* 🔥 ROTATION */
@keyframes rotateBorder {
    100% {
        transform: rotate(360deg);
    }
}
.banner-bg-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.shape {
    position: absolute;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 50%;
}
.shape-1 {
    width: 280px;
    height: 280px;
    top: -120px;
    left: -120px;
}
.shape-2 {
    width: 180px;
    height: 180px;
    top: 50%;
    right: -90px;
}
.shape-3 {
    width: 140px;
    height: 140px;
    bottom: -70px;
    left: 50%;
}

@media (max-width: 992px) {
    .banner-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .banner-text {
        max-width: 100%;
    }

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

    .image-container img {
        max-width: 450px;
    }
}

@media (max-width: 576px) {
    .team-banner {
        padding: 120px 20px 60px;
    }
    .banner-container {
    padding: 0 10px;
   }

    .banner-title {
        font-size: 28px;
    }

    .banner-description {
        font-size: 15px;
    }

    .image-container img {
        max-width: 100%;
    }
}







/* WHY SECTION */
.why-section {
    padding: 80px 0;
    background: #edf1ff;
    text-align: center;
}

.why-section .container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

.why-section .section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.section-subtitle {
    color: #3f3f3f;
    margin-bottom: 50px;
}

/* GRID */
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.why-card {
     background: #ffffff;
    padding: 30px 20px;
    border-radius: 30px;
    transition: 0.3s ease;
    box-shadow: 0 25px 15px rgba(117, 119, 121, 0.705);

}

.why-card i {
    font-size: 30px;
    color: #2563eb;
    margin-bottom: 15px;
}

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

.why-card p {
    font-size: 14px;
    color: #555;
}

/* HOVER EFFECT */
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(117, 119, 121, 0.4);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}






/* ================= SECTION ================= */
.services-section {
    background: linear-gradient(135deg, #f8f9ff, #e8eeff);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* GLOW EFFECTS */
.services-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.12), transparent);
    top: -120px;
    left: -120px;
    filter: blur(90px);
}

.services-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.12), transparent);
    bottom: -100px;
    right: -100px;
    filter: blur(90px);
}

.container {
    max-width: 1500px;
    margin: auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* TITLE */
.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 70px;
    color: #000000;
}

/* LAYOUT */
.services-wrapper {
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(500px, 1.5fr);
    gap: 70px;
    align-items: center;
}

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

.services-left {
    display: flex;
    justify-content: center;
}

.services-image {
    position: relative;
    padding: 10px;
    border-radius: 28px;
    overflow: hidden;
}

.services-image::before {
    content: "";
    position: absolute;
    inset: -100%;
    background: conic-gradient(
        from 0deg,
        transparent,
        #2563eb,
        transparent 30%
    );
    animation: rotateBorder 6s linear infinite;
}

.services-image::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: #edf1ff;
    border-radius: 24px;
    z-index: 1;
}

.services-image img {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    display: block;
}

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

.services-right {
    display: flex;
    gap: 25px;
}

.services-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.service-item h3,
.service-item p {
    position: relative;
    z-index: 2;
    transition: 0.4s ease;
}
.service-item:hover h3 {
    color: #ffffff;
}

.service-item:hover p {
    color: #ffffff;
}

/* PREMIUM CARDS */
.service-item {
    position: relative;
    padding: 30px;
    border-radius: 24px;

    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,0.4);

    box-shadow:
        0 10px 35px rgba(0,0,0,0.08),
        inset 0 0 20px rgba(255,255,255,0.2);

    overflow: hidden;

    transition: 0.4s ease;

    z-index: 1;
}


.service-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
}

/* COMMON FILL */
.service-item::after {
    content: "";
    position: absolute;
    inset: 0;

    transform: translateX(-100%);
    transition: transform 0.6s ease;

    z-index: 0;
     /* opacity: 0.12; */
}

.service-item:hover::after {
    transform: translateX(0%);
}

/* ================= BLUE ================= */
.card-blue::before,
.card-blue::after {
    background: linear-gradient(
        135deg,
        #062361,
        #60a5fa
    );
}

/* ================= PURPLE ================= */
.card-purple::before,
.card-purple::after {
    background: linear-gradient(
        135deg,
        #26075c,
        #af6dec
    );
}

/* ================= GREEN ================= */
.card-green::before,
.card-green::after {
    background: linear-gradient(
        135deg,
        #033d2b,
        #34d399
    );
}

/* ================= ORANGE ================= */
.card-orange::before,
.card-orange::after {
    background: linear-gradient(
        135deg,
        #ac4209,
        #fb923c
    );
}

/* ================= PINK ================= */
.card-pink::before,
.card-pink::after {
    background: linear-gradient(
        135deg,
        #68062f,
        #ec4899
    );
}



/* TEXT */
.service-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111;
}

.service-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #000000;
}

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

@keyframes rotateBorder {
    100% {
        transform: rotate(360deg);
    }
}

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

@media (max-width: 992px) {

    .services-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .services-right {
        flex-direction: column;
    }

    .section-title {
        font-size: 32px;
    }

    .services-image img {
        max-width: 450px;
    }
}

@media (max-width: 576px) {

    .services-section {
        padding: 80px 0;
    }

    .services-section .container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 26px;
        margin-bottom: 45px;
    }

    .service-item {
        padding: 22px;
    }

    .service-item h3 {
        font-size: 19px;
    }

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









/* ================= TECH SECTION ================= */


.tech-section {
    background: #edf1ff;
    padding: 100px 0;
    overflow: hidden;
}

.tech-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* TEXT */
.tech-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
}

.tech-text p {
    font-size: 18px;
    color: #141414;
    line-height: 1.6;
}

/* ================= CIRCLE ================= */

.tech-circle {
    position: relative;
    width: 420px;
    height: 420px;
    margin: auto;
    

    perspective: 1000px; /* 🔥 3D depth */
     animation: floatY 6s ease-in-out infinite;
}
@keyframes floatY {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* CENTER LOGO */
.tech-center {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
     box-shadow: 
        0 10px 30px rgba(0,0,0,0.2),
        0 0 25px rgba(37, 99, 235, 0.25);
    z-index: 3;
}

.tech-center img {
    width: 100px;
    
}
.tech-orbit {
    position: absolute;
    inset: 0;
    animation: rotateOrbit 20s linear infinite;

    transform-style: preserve-3d;
}
.tech-icon-inner {
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
     box-shadow: 
        0 10px 30px rgba(0,0,0,0.3),
        0 0 25px rgba(37, 99, 235, 0.25);

    /* 🔥 THIS MAKES ICON ROTATE LIKE WHEEL */
    animation: spinSelf 10s linear infinite;
}
.tech-icon-inner img {
    width: 30px;
}
@keyframes spinSelf {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 🔥 ROTATING RING */
.tech-ring {
    position: absolute;
    inset: 0;
    border: 2px dashed #f59e0b;
    border-radius: 50%;
}


/* ANIMATION */
@keyframes rotateOrbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* @keyframes counterRotate {
    0%   { transform: rotate(0deg); }
    50%  { transform: rotate(-10deg); }
    100% { transform: rotate(0deg); }
} */


.tech-circle:hover .tech-orbit {
    animation-play-state: paused;
}

.tech-circle:hover .tech-icon-inner {
    animation-play-state: paused;
}


.tech-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px;
}

.tech-orbit.outer {
    animation: rotateOrbit 36s linear infinite;
    transform: rotateX(20deg);
}

.tech-orbit.inner {
    animation: rotateOrbitReverse 48s linear infinite;
    transform: rotateX(20deg);
}
.tech-ring.small {
    width: 260px;
    height: 260px;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 2px dashed #60a5fa;
}

.tech-icon.small {
    width: 45px;
    height: 45px;
    margin: -22.5px;
}

/* 🔥 OUTER POSITIONS (5 ITEMS) */
.tech-orbit.outer .tech-icon:nth-child(2) { transform: rotate(0deg) translate(195px); }
.tech-orbit.outer .tech-icon:nth-child(3) { transform: rotate(72deg) translate(195px); }
.tech-orbit.outer .tech-icon:nth-child(4) { transform: rotate(144deg) translate(195px); }
.tech-orbit.outer .tech-icon:nth-child(5) { transform: rotate(216deg) translate(195px); }
.tech-orbit.outer .tech-icon:nth-child(6) { transform: rotate(288deg) translate(195px); }

/* 🔥 INNER POSITIONS (3 ITEMS) */
.tech-orbit.inner .tech-icon:nth-child(2) { transform: rotate(0deg) translate(120px); }
.tech-orbit.inner .tech-icon:nth-child(3) { transform: rotate(120deg) translate(120px); }
.tech-orbit.inner .tech-icon:nth-child(4) { transform: rotate(240deg) translate(120px); }

/* REVERSE ANIMATION */
@keyframes rotateOrbitReverse {
    from { transform: rotate(360deg); }
    to { transform: rotate(0deg); }
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .tech-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .tech-circle {
        width: 350px;
        height: 350px;
    }

     .tech-ring.small {
        width: 230px;
        height: 230px;
    }


     .tech-orbit.outer .tech-icon:nth-child(2) { transform: rotate(0deg) translate(160px); }
    .tech-orbit.outer .tech-icon:nth-child(3) { transform: rotate(72deg) translate(160px); }
    .tech-orbit.outer .tech-icon:nth-child(4) { transform: rotate(144deg) translate(160px); }
    .tech-orbit.outer .tech-icon:nth-child(5) { transform: rotate(216deg) translate(160px); }
    .tech-orbit.outer .tech-icon:nth-child(6) { transform: rotate(288deg) translate(160px); }

    /* Inner radius (based on 200px ring) */
    .tech-orbit.inner .tech-icon:nth-child(2) { transform: rotate(0deg) translate(120px); }
    .tech-orbit.inner .tech-icon:nth-child(3) { transform: rotate(120deg) translate(120px); }
    .tech-orbit.inner .tech-icon:nth-child(4) { transform: rotate(240deg) translate(120px); }
}


@media (max-width: 768px){


.tech-section {
    padding: 50px 0;
}
    /* LAYOUT */
    .tech-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .tech-text h3 {
        font-size: 26px;
    }

    .tech-text p {
        font-size: 16px;
        text-align: justify;
    }

    .tech-circle {
        width: 300px;
        height: 300px;
        margin: 0 auto;
    }

    .tech-center {
        width: 100px;
        height: 100px;
    }

    .tech-center img {
        width: 70px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
        margin: -25px; /* always half */
    }

    .tech-icon.small {
        width: 36px;
        height: 36px;
        margin: -18px;
    }

    .tech-icon-inner img {
        width: 22px;
    }

    /* ✅ RINGS */
    .tech-ring.small {
        width: 200px;
        height: 200px;
    }

    /* ===================================== */
    /* 🔥 PERFECT POSITIONING (FINAL FIX) */
    /* ===================================== */

    .tech-orbit.outer .tech-icon:nth-child(2) { transform: rotate(0deg) translate(140px); }
    .tech-orbit.outer .tech-icon:nth-child(3) { transform: rotate(72deg) translate(140px); }
    .tech-orbit.outer .tech-icon:nth-child(4) { transform: rotate(144deg) translate(140px); }
    .tech-orbit.outer .tech-icon:nth-child(5) { transform: rotate(216deg) translate(140px); }
    .tech-orbit.outer .tech-icon:nth-child(6) { transform: rotate(288deg) translate(140px); }

    /* Inner radius (based on 200px ring) */
    .tech-orbit.inner .tech-icon:nth-child(2) { transform: rotate(0deg) translate(95px); }
    .tech-orbit.inner .tech-icon:nth-child(3) { transform: rotate(120deg) translate(95px); }
    .tech-orbit.inner .tech-icon:nth-child(4) { transform: rotate(240deg) translate(95px); }

}








/* Process Section starts */


.process-section {
    background: linear-gradient(135deg, #f8f9ff, #e1e7fa);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

/* 🔥 BACKGROUND GLOW */
.process-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37,99,235,0.15), transparent);
    top: -100px;
    left: -100px;
    filter: blur(80px);
}

.process-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59,130,246,0.15), transparent);
    bottom: -100px;
    right: -100px;
    filter: blur(80px);
}
.process-header {
    text-align: center;
    max-width: 700px;
    margin: auto;
    margin-bottom: 80px;
}

.process-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: #000;
}

.process-header p {
    color: #333333;
    font-size: 18px;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: auto;
}

/* 🔥 PREMIUM LINE */
.process-timeline::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(
        to bottom,
        #0e4aca,
        #468ee6,
        #3b82f6,
        #0e4aca
    );
    transform: translateX(-50%);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(37,99,235,0.4);
}

/* STEP */
.process-step {
    position: relative;
    width: 50%;
    padding: 35px;

    opacity: 0;

    transition:
        opacity 0.9s ease,
        transform 0.9s ease;

   
}


.process-step:nth-child(odd) {
    left: 0;
    text-align: right;

    transform: translateX(-150px);
}

.process-step:nth-child(even) {
    left: 50%;
    transform: translateX(150px);
}
/* SHOW */
.process-step.show {
    opacity: 1;
}.process-step:nth-child(even) .step-card {
    animation-delay: 2s;
}

.process-step:nth-child(odd).show {
    transform: translateX(0);
}

.process-step:nth-child(even).show {
    transform: translateX(0);
}

.step-number {
    position: absolute;
    top: 30px;
    width: 65px;
    height: 65px;

    background: linear-gradient(135deg, #266afc, #0c57cf);
    border-radius: 50%;

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

    font-weight: 700;
    font-size: 18px;
    color: #fff;

    box-shadow:
        0 10px 30px rgba(37,99,235,0.5),
        0 0 20px rgba(59,130,246,0.5);

    z-index: 2;
}

.step-number::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(37,99,235,0.2);
}

.process-step:nth-child(odd) .step-number {
    right: -32px;
}

.process-step:nth-child(even) .step-number {
    left: -32px;
}

.step-card {
    background: #fff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    padding: 28px;
    border-radius: 20px;

    border: 1px solid rgba(255,255,255,0.4);

    box-shadow: 
        0 15px 10px rgba(37, 99, 235, 0.25),
        0 0 40px rgba(37, 99, 235, 0.25);

    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
     animation: floatCard 6s ease-in-out infinite;
}

.step-card h3 {
    margin-bottom: 10px;
    font-size: 22px;
    color: #000;
}

.step-card p {
    font-size: 16px;
    color: #222222;
}

.step-card:hover {
    transform: translateY(-2px);
}

/* FLOAT ANIMATION */
@keyframes floatCard {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

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

@media (max-width: 768px) {

    .process-section {
    padding: 50px 0;
}

    .process-timeline::before {
        left: 22px;
    }

    .process-step {
        width: 100%;
        padding-left: 50px;
        padding-right: 10px;
        margin-bottom: 30px;
        text-align: left !important;
    }

    .process-step:nth-child(odd),
    .process-step:nth-child(even) {
        left: 0;
    }

    .step-number {
        left: 0 !important;
    }

    .process-header h2 {
        font-size: 30px;
    }
    .process-header p {
    font-size: 16px;
   }

   .step-card h3 {
    font-size: 20px;
   }
   .step-card p {
    font-size: 15px;
}
}




/* Process Section ends */








/* FAQ Section starts */


.faq-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9ff, #eef2ff);
    position: relative;
    overflow: hidden;
}

/* BACKGROUND GLOW */
.faq-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(37,99,235,0.12), transparent);
    top: -100px;
    left: -100px;
    filter: blur(80px);
}

.faq-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

/* 🔥 MAIN LAYOUT */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* ================= LEFT SIDE ================= */


.faq-left h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #000000;
}

.faq-left p {
    font-size: 16px;
    color: #383838;
    margin-bottom: 30px;
}

.faq-help {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-badge {
    display: inline-block;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    width: fit-content;
}

.faq-line {
    width: 120px;
    height: 3px;
    background: linear-gradient(to right, #2563eb, transparent);
}

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

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: rgba(255,255,255,0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.5);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.06),
        inset 0 1px 0 rgba(255,255,255,0.4);

    overflow: hidden;
    transition: all 0.3s ease;
}

/* QUESTION */
.faq-question {
    width: 100%;
    padding: 22px 25px;

    border: none;
    background: transparent;

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

    font-size: 16px;
    text-align: left;
    font-weight: 600;
    color: #000000;

    cursor: pointer;
}

/* ICON */
.faq-question span {
    font-size: 18px;
    width: 30px;
    height: 30px;

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

    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;

    transition: all 0.3s ease;
}
.faq-item.active .faq-question span {
    transform: rotate(45deg);
    background: #2563eb;
    color: #fff;
}
/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
     transition: all 0.4s ease;
}

.faq-answer p {
     padding: 5px 25px 25px;
    font-size: 14.5px;
    color: #252525;
    line-height: 1.7;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}
.faq-item:hover {
    box-shadow:
        0 12px 35px rgba(0,0,0,0.08),
        0 0 25px rgba(37,99,235,0.08);
}
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .faq-section {
    padding: 50px 0;
}

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .faq-left {
    padding: 10px;
   }
    .faq-left h2 {
        font-size: 30px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer p {
        font-size: 14px;
    }
}


/* FAQ Section ends */








.get-started-section { background: #f8faff; padding: 90px 0; }
.get-started-container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

.get-started-header {
    text-align: center; 
    max-width: 720px;
    margin: 0 auto 60px;
}
.get-started-title {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    font-weight: 700; 
    color: #000000;
    margin-bottom: 10px; 
    line-height: 1.3;
}
.get-started-title::after { display: none; }
.get-started-sub {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600; 
    color: #2563eb; 
    margin-bottom: 14px;
}
.get-started-desc { color: #303030; font-size: 1rem; line-height: 1.75; margin: 0; }

/* Sub-headings */
.gs-sub-heading {
    font-size: 1.3rem; 
    font-weight: 700;
    color: #1a1a2e; 
    margin-bottom: 26px;
    position: relative; 
    padding-bottom: 13px;
    display: inline-block;
}
.gs-sub-heading::after {
    content: '';
    position: absolute; 
    bottom: 0; 
    left: 0;
    width: 48px; 
    height: 3px;
    background: linear-gradient(90deg, #2563eb, #3b82f6);
    border-radius: 2px;
}

/* Social wrap */
.gs-social-wrap { margin-bottom: 64px; }
.gs-social-buttons {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}
.gs-social-btn {
    display: flex; 
    align-items: center; 
    gap: 12px;
    padding: 16px 18px; 
    border-radius: 16px;
    text-decoration: none;
    border: 1.5px solid transparent;
    transition: all 0.35s cubic-bezier(0.175,0.885,0.32,1.275);
    position: relative; 
    overflow: hidden;
}
.gs-social-btn:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.14); }
.gs-social-btn:hover .gs-arrow { opacity: 1; transform: translateX(0); }
.gs-arrow {
    margin-left: auto; 
    font-size: 0.82rem;
    opacity: 0; 
    transform: translateX(-7px);
    transition: all 0.3s ease; 
    flex-shrink: 0;
}
.gs-social-icon {
    width: 42px; 
    height: 42px; 
    border-radius: 11px;
    display: flex; 
    align-items: center; 
    justify-content: center;
    font-size: 1.05rem; 
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.gs-social-info { display: flex; flex-direction: column; min-width: 0; overflow: hidden; }
.gs-social-name { font-size: 0.88rem; font-weight: 700; color: #1a1a2e; transition: color 0.3s; white-space: nowrap; }
.gs-social-handle { font-size: 0.72rem; color: #94a3b8; transition: color 0.3s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Facebook */
.gs-facebook { background: rgba(24,119,242,0.07); border-color: rgba(24,119,242,0.2); }
.gs-facebook .gs-social-icon { background: rgba(24,119,242,0.13); color: #1877F2; }
.gs-facebook:hover { background: #1877F2; border-color: #1877F2; }
.gs-facebook:hover .gs-social-icon { background: rgba(255,255,255,0.2); color: #fff; }
.gs-facebook:hover .gs-social-name,.gs-facebook:hover .gs-social-handle,.gs-facebook:hover .gs-arrow { color: #fff; }

/* Instagram */
.gs-instagram { background: rgba(214,41,118,0.07); border-color: rgba(214,41,118,0.2); }
.gs-instagram .gs-social-icon { background: rgba(214,41,118,0.13); color: #d62976; }
.gs-instagram:hover { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; }
.gs-instagram:hover .gs-social-icon { background: rgba(255,255,255,0.2); color: #fff; }
.gs-instagram:hover .gs-social-name,.gs-instagram:hover .gs-social-handle,.gs-instagram:hover .gs-arrow { color: #fff; }

/* LinkedIn */
.gs-linkedin { background: rgba(10,102,194,0.07); border-color: rgba(10,102,194,0.2); }
.gs-linkedin .gs-social-icon { background: rgba(10,102,194,0.13); color: #0A66C2; }
.gs-linkedin:hover { background: #0A66C2; border-color: #0A66C2; }
.gs-linkedin:hover .gs-social-icon { background: rgba(255,255,255,0.2); color: #fff; }
.gs-linkedin:hover .gs-social-name,.gs-linkedin:hover .gs-social-handle,.gs-linkedin:hover .gs-arrow { color: #fff; }

/* YouTube */
.gs-youtube { background: rgba(255,0,0,0.07); border-color: rgba(255,0,0,0.17); }
.gs-youtube .gs-social-icon { background: rgba(255,0,0,0.12); color: #FF0000; }
.gs-youtube:hover { background: #FF0000; border-color: #FF0000; }
.gs-youtube:hover .gs-social-icon { background: rgba(255,255,255,0.2); color: #fff; }
.gs-youtube:hover .gs-social-name,.gs-youtube:hover .gs-social-handle,.gs-youtube:hover .gs-arrow { color: #fff; }

/* WhatsApp */
.gs-whatsapp { background: rgba(37,211,102,0.07); border-color: rgba(37,211,102,0.22); }
.gs-whatsapp .gs-social-icon { background: rgba(37,211,102,0.14); color: #25D366; }
.gs-whatsapp:hover { background: #25D366; border-color: #25D366; }
.gs-whatsapp:hover .gs-social-icon { background: rgba(255,255,255,0.2); color: #fff; }
.gs-whatsapp:hover .gs-social-name,.gs-whatsapp:hover .gs-social-handle,.gs-whatsapp:hover .gs-arrow { color: #fff; }


.gs-map-wrap { }
.gs-map-card {
    display: grid; grid-template-columns: 320px 1fr;
    border-radius: 22px; overflow: hidden;
    box-shadow: 0 18px 54px rgba(37,99,235,0.1);
    border: 1px solid rgba(37,99,235,0.1);
    min-height: 400px;
}
.gs-map-info {
    background: linear-gradient(160deg, #1a1a2e 0%, #16213e 100%);
    padding: 36px 32px;
    display: flex; flex-direction: column; gap: 0;
}
.gs-map-detail {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.gs-map-detail:last-of-type { border-bottom: none; }
.gs-map-detail i { color: #3b82f6; font-size: 1rem; margin-top: 2px; width: 18px; flex-shrink: 0; }
.gs-map-detail div { display: flex; flex-direction: column; gap: 2px; }
.gs-map-detail strong { font-size: 0.75rem; font-weight: 600; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.5px; }
.gs-map-detail span { font-size: 0.87rem; color: #e2e8f0; line-height: 1.5; }
.gs-map-detail a { color: #93c5fd; text-decoration: none; transition: color 0.2s; }
.gs-map-detail a:hover { color: #60a5fa; }
.gs-view-map-btn {
    display: inline-flex; align-items: center; gap: 9px;
    margin-top: 22px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: #fff !important; text-decoration: none;
    padding: 13px 26px; border-radius: 50px;
    font-size: 0.92rem; font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 7px 22px rgba(37,99,235,0.34);
    align-self: flex-start;
}
.gs-view-map-btn:hover { transform: translateY(-3px); box-shadow: 0 13px 32px rgba(37,99,235,0.44); }
.gs-view-map-btn i { color: #fff !important; font-size: 0.95rem; width: auto !important; margin: 0 !important; }
.gs-map-embed { position: relative; min-height: 400px; background: #e8edf2; }
.gs-map-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border-radius: 0; display: block; }





@media (max-width: 768px) {
.get-started-section{
    padding: 60px 0;
}
 .gs-map-card { grid-template-columns: 1fr; }
    .gs-map-embed { min-height: 300px; }
}


@media (max-width: 576px) {
.get-started-section{
    padding: 44px 0;
}
.get-started-container { padding: 0 20px; }
 .gs-social-buttons { 
        grid-template-columns: repeat(2, 1fr);
     }

     .gs-social-name {
        font-size: 10px;
        font-weight: 700;
        color: #1a1a2e;
        transition: color 0.3s;
        white-space: nowrap;

     }

      .get-started-container { padding: 0 20px; }
    .gs-map-info { padding: 26px 22px; }
    .gs-social-wrap { margin-bottom: 44px; }
    .gs-social-buttons { 
        grid-template-columns: repeat(2, 1fr);
     }

     .gs-social-name {
        font-size: 10px;
        font-weight: 700;
        color: #1a1a2e;
        transition: color 0.3s;
        white-space: nowrap;

     }
}








/* Footer container start */

.footer {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #1a1a1a;
    color: #fff;
    padding: 4rem 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

/* Smooth Animation Base */
.footer * {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Footer columns */
.footer-column {
    flex: 1 1 200px;
    min-width: 200px;
}
.footer-logo img {
    max-width: 100px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    text-align: justify;
    margin-top: 10px;
}

.footer-column h3 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-size: 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #007bff;
}

.footer-column p {
    margin-bottom: 0.8rem;
    line-height: 1.6;

}

.footer-column a {
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    position: relative;
    padding: 2px 0;
}

.footer-column a:hover::after {
    width: 100%;
}

.footer-column a:hover {
    color: #db0a7d;
    transform: translateX(8px);
}

.footer-column a:hover i {
    color: #db0a7d;
    transform: scale(1.2);
}

/* Quick Links Icon Animation */
.footer-column .fa-chevron-right {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateX(-5px);
}

.footer-column a:hover .fa-chevron-right {
    opacity: 1;
    transform: translateX(3px);
}

/* Social Icons Animation */
.social-icons {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #303030;
    border-radius: 50%;
  display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.social-link i {
    font-size: 18px;
    color: #fff;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 10px;
}

.social-link:hover {
    transform: translateY(-5px);
    color: #db0a7d;
    box-shadow: 0 6px 12px rgba(219, 10, 125, 0.2);
}

.social-link:hover i {
    transform: scale(1.2);
}

.social-link:active {
    transform: scale(0.95);
}

@media screen and (max-width: 768px) {
    .social-icons {
        justify-content: center;
        gap: 1rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
    }

    .social-link i {
        font-size: 1rem;
    }
}

/* Tooltip Animation */
.social-link[data-tooltip]::before {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%) translateY(10px);
}

.social-link[data-tooltip]:hover::before {
    transform: translateX(-50%) translateY(-5px);
}

.footer-bottom {
    background-color: #111;
    color: #ffffff;
    text-align: center;
    padding: 12px 10px;   /* 🔽 reduced padding */
    line-height: 1.4;     /* tighter text */
}
.footer-bottom p {
    font-size: 1.2rem;
    margin: 5px 0;        /* 🔥 remove default big margin */
}

.footer-bottom a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #007bff;
}

.footer-column i {
    margin-right: 6px;
    color: #007bff;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer {
        padding: 3rem 1rem;
    }

    .footer-column {
        flex: 100%;
        text-align: center;
    }

    .footer-column h3 {
        text-align: center;
    }

    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-icons {
        justify-content: center;
        align-items: center;
    }
    .footer-bottom p {
    font-size: 0.8rem;
}
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 2rem 1rem;
    }

    .footer-logo img {
        max-width: 150px;
    }
}

/* footer section end */
