 html, body {
            margin: 0;
            padding: 0;
            font-family: "Figtree", sans-serif;
            background-color: #000;
            color: #fff;
        }

       
        /* From Uiverse.io by cssbuttons-io */ 
.about-btn {
 --glow-color: rgb(206, 189, 223);
 --glow-spread-color: rgba(179, 106, 248, 0.781);
 --enhanced-glow-color: rgb(107, 86, 128);
 --btn-color: rgb(114, 53, 170);
 border: .25em solid var(--glow-color);
 padding: 1em 3em;
 color: var(--glow-color);
 font-size: 15px;
top:100px;
 font-weight: bold;
 background-color: var(--btn-color);
 border-radius: 1em;
 outline: none;
 box-shadow: 0 0 1em .25em var(--glow-color),
        0 0 4em 1em var(--glow-spread-color),
        inset 0 0 .75em .25em var(--glow-color);
 text-shadow: 0 0 .5em var(--glow-color);
 position: absolute;
 transition: all 0.3s;
}

button::after {
 pointer-events: none;
 content: "";
 position: absolute;
 top: 50%;
 left: 0;
 height: 80%;
 width: 100%;
 background-color: var(--glow-spread-color);
 filter: blur(2em);
 opacity: .7;
 transform: perspective(1.5em) rotateX(35deg) scale(1, .6);
}

button:hover {
 color: var(--btn-color);
 background-color:#000;
 box-shadow: 0 0 1em .25em var(--glow-color),
        0 0 4em 2em var(--glow-spread-color),
        inset 0 0 .75em .25em var(--glow-color);
}

button:active {
 box-shadow: 0 0 0.6em .25em var(--glow-color),
        0 0 2.5em 2em var(--glow-spread-color),
        inset 0 0 .5em .25em var(--glow-color);
}
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0 20px;
        }     
        .main-content {
            max-width: 900px;
            text-align: center;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease-in-out, transform 1s ease-in-out;
            z-index: 10;
        }

        .main-content.fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        .main-heading {
            font-family: "Figtree", sans-serif;
            font-size: clamp(3rem, 8vw, 6rem);
            font-weight: 600;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: -0.02em;
        }

        .subtitle {
            font-family: "Figtree", sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.5;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Trust Section */
        .trust-section {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1200px;
            text-align: center;
            z-index: 100;
            opacity: 0;
            transition: opacity 0.7s ease-out;
        }

        .trust-section.visible {
            opacity: 1;
        }

        .trust-banner {
            font-size: 14px;
            font-family: "Figtree", sans-serif;
            color: rgba(255, 253, 253, 0.9);
            margin-bottom: 40px;
            font-weight: 500;
            letter-spacing: 0.02em;
        }

        .logo-slider {
            width: 600px;
            max-width: 100vw;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
            height: 60px;
        }

        .logo-slider::before,
        .logo-slider::after {
            content: '';
            position: absolute; 
            top: 0;
            bottom: 0;
            width: 80px;
            pointer-events: none;
            z-index: 10;
            background: linear-gradient(to right, #1b1b1b00 65%, transparent 100%);
        }

        .logo-slider::after {
            right: 0;
            background: linear-gradient(to left, #00000000 65%, transparent 100%);
        }

        .logo-slider::before {
            left: 0;
        }

        .logo-track {
            display: flex;
            gap: 48px;
            align-items: center;
            width: max-content;
            animation: slideLeftContinuous 50s linear infinite;
            will-change: transform;
            backface-visibility: hidden;
        }

        .logo-item {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            background: transparent;
            border-radius: 8px;
            backdrop-filter: blur(10px);
            white-space: nowrap;
            font-weight: 500;
            font-size: 16px;
            color: #ffffff;
            min-width: 120px;
            height: 40px;
            flex-shrink: 0;
            opacity: 0.7;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .logo-item:hover {
            opacity: 1;
            transform: scale(1.05);
        }

        .logo-item img {
            height: 28px;
            max-width: 120px;
            object-fit: contain;
            filter: grayscale(85%) brightness(1.3);
            user-select: none;
            pointer-events: none;
        }

        .logo-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(255,255,255,0.1), rgba(255,255,255,0.3));
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: rgba(255, 254, 254, 0.8);
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .logo-placeholder:hover {
            background: linear-gradient(45deg, rgba(255,255,255,0.2), rgba(255,255,255,0.4));
            border-color: rgba(255, 255, 255, 0.4);
            color: rgba(255, 255, 255, 1);
        }

        @keyframes slideLeftContinuous {
            0% { 
                transform: translateX(0); 
            }
            100% { 
                transform: translateX(-50%); 
            }
        }

        /* Who We Are Section */
        .container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 100px 20px 50px;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .who-we-are-section {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s ease;
        }

        .who-we-are-section.visible {
            opacity: 1;
            transform: translateX(0);
        }

        

        .main-title {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            letter-spacing: -0.02em;
            font-family: "Figtree", sans-serif;
        }

        .description {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto 60px;
            font-weight: 400;
            font-family: "Figtree", sans-serif;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .stat-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: left;
            backdrop-filter: blur(10px);
            transition: all 0.8s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            font-family: "Figtree", sans-serif;
        }

        .stat-card:nth-child(1) {
            transform: translateX(-60px);
        }

        .stat-card:nth-child(2) {
            transform: translateX(60px);
        }

        .stat-card:nth-child(3) {
            transform: translateX(-60px);
        }

        .stat-card.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .stat-card:hover::before {
            opacity: 1;
        }

        .stat-card:hover {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        .stat-icon {
            font-size: 2rem;
            margin-bottom: 20px;
            display: block;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #ffffff;
        }

        .stat-label {
            font-size: 1.2rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 10px;
        }

        .stat-description {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.5;
        }

        .spacer {
            height: 100vh;
            background: #000;
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .about-btn {
                top: 100px;
                font-size: 11px;
                padding: 8px 16px;
            }

            .main-heading {
                font-size: clamp(2.5rem, 8vw, 4rem);
            }

            .subtitle {
                font-size: 16px;
            }

            .container {
                padding: 80px 15px 30px;
            }

            .stats-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .stat-card {
                padding: 30px 25px;
            }

            .who-we-are-section {
                transform: translateX(-30px);
            }

            .stat-card:nth-child(1),
            .stat-card:nth-child(3) {
                transform: translateX(-30px);
            }

            .stat-card:nth-child(2) {
                transform: translateX(30px);
            }

            .trust-section {
                bottom: 30px;
            }

            .logo-slider {
                width: 90vw;
            }

            .logo-track {
                gap: 30px;
                animation: slideLeftContinuous 48s linear infinite;
            }

            .logo-item {
                padding: 8px 16px;
                font-size: 14px;
                min-width: 100px;
                height: 35px;
            }

            .logo-placeholder {
                font-size: 10px;
            }
        }
		/* our Values*/
		.values-section1 {
            padding: 100px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .container1 {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .values-header1 {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .values-header1.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-subtitle1 {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
            font-family: "Figtree", sans-serif;
        }

        .main-title1 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            letter-spacing: -0.02em;
            font-family: "Figtree", sans-serif;
            color: #ffffff;
        }

        .main-description1 {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto;
            font-weight: 400;
            font-family: "Figtree", sans-serif;
        }

        /* Values Grid */
        .values-grid1 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            max-width: 1000px;
            margin: 0 auto;
        }

        .value-card1 {
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: left;
            backdrop-filter: blur(10px);
            transition: all 0.8s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            cursor: pointer;
        }

        /* Different colored backgrounds for each card */
        .value-card1:nth-child(1) {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(-60px);
        }

        .value-card1:nth-child(2) {
            background:rgba(255, 255, 255, 0.05);
            transform: translateX(60px);
        }

        .value-card1:nth-child(3) {
            background:rgba(255, 255, 255, 0.05);
            transform: translateX(-60px);
        }

        .value-card1:nth-child(4) {
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(60px);
        }

        .value-card1.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .value-card1:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        /* Enhanced hover effects for each card */
       
        /* Icons */
        .value-icon1 {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #6366f1, #8b5cf6);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 1.5rem;
        }

        .value-icon1.innovation1 {
            background: linear-gradient(135deg, #06b6d4, #3b82f6);
        }

        .value-icon1.integrity1 {
            background: linear-gradient(135deg, #8b5cf6, #a855f7);
        }

        .value-icon1.growth1 {
            background: linear-gradient(135deg, #f59e0b, #ef4444);
        }

        .value-icon1.customer1 {
            background: linear-gradient(135deg, #10b981, #06b6d4);
        }

        /* Card Content */
        .value-title1 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 15px;
            color: #ffffff;
            font-family: "Figtree", sans-serif;
            line-height: 1.3;
        }

        .value-description1 {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.6;
            font-family: "Figtree", sans-serif;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .values-section1 {
                padding: 80px 0;
            }

            .container1 {
                padding: 0 15px;
            }

            .values-header1 {
                margin-bottom: 60px;
            }

            .values-grid1 {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .value-card1 {
                padding: 30px 25px;
            }

            /* Adjust mobile animations */
            .value-card1:nth-child(1),
            .value-card1:nth-child(3) {
                transform: translateX(-30px);
            }

            .value-card1:nth-child(2),
            .value-card1:nth-child(4) {
                transform: translateX(30px);
            }

            .value-icon1 {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .value-title1 {
                font-size: 1.2rem;
            }

            .value-description1 {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .values-grid1 {
                gap: 25px;
            }

            .value-card1 {
                padding: 25px 20px;
            }
        }
		
        /* Why Us Section */
        .why-us-section3 {
            padding: 100px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .container3 {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .why-header3 {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .why-header3.visible {
            opacity: 1;
            transform: translateY(0);
        }

        

        .main-title3 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            margin-bottom: 30px;
            line-height: 1.2;
            letter-spacing: -0.02em;
            font-family: "Figtree", sans-serif;
            color: #ffffff;
        }

        .main-description3 {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            max-width: 500px;
            margin: 0 auto;
            font-weight: 400;
            font-family: "Figtree", sans-serif;
        }

        /* Comparison Container */
        .comparison-container3 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            max-width: 1100px;
            margin: 0 auto;
        }

        .comparison-card3 {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 40px 30px;
            width: 300px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: all 0.8s ease;
            position: relative;
            overflow: hidden;
            opacity: 0;
            cursor: pointer;
        }

        /* Manual Work Card - Left slide */
        .comparison-card3.manual3 {
            transform: translateX(-60px);
            background: rgba(255, 255, 255, 0.05);
        }

        /* AI Automation Card - Right slide */
        .comparison-card3.automation3 {
            transform: translateX(60px);
            background: rgba(255, 255, 255, 0.05);
        }

        .comparison-card3.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .comparison-card3:hover {
            border-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-5px);
        }

        
        /* Card Icons */
        .comparison-icon3 {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2rem;
        }

        .comparison-icon3.manual-icon3 {
            background: linear-gradient(135deg, #ef4444, #f59e0b);
        }

        .comparison-icon3.automation-icon3 {
            background: linear-gradient(135deg, #10b981, #06b6d4);
        }

        /* Card Titles */
        .comparison-title3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            color: #ffffff;
            font-family: "Figtree", sans-serif;
            line-height: 1.3;
        }

        /* Features List */
        .features-list3 {
            list-style: none;
            text-align: left;
            margin-bottom: 30px;
        }

        .feature-item3 {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 15px;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
            line-height: 1.5;
            font-family: "Figtree", sans-serif;
        }

        .feature-icon3 {
            font-size: 1.2rem;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .manual3 .feature-icon3 {
            color: #ef4444;
        }

        .automation3 .feature-icon3 {
            color: #10b981;
        }

        /* Bottom Stats */
        .comparison-stats3 {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 25px;
            text-align: center;
        }

        .stat-number3 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 8px;
            font-family: "Figtree", sans-serif;
        }

        .manual3 .stat-number3 {
            color: #ef4444;
        }

        .automation3 .stat-number3 {
            color: #10b981;
        }

        .stat-label3 {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.7);
            font-family: "Figtree", sans-serif;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .why-us-section3 {
                padding: 80px 0;
            }

            .container3 {
                padding: 0 15px;
            }

            .why-header3 {
                margin-bottom: 60px;
            }

            .comparison-container3 {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .comparison-card3 {
                padding: 30px 25px;
            }

            /* Adjust mobile animations */
            .comparison-card3.manual3 {
                transform: translateX(-30px);
            }

            .comparison-card3.automation3 {
                transform: translateX(30px);
            }

            .comparison-icon3 {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }

            .comparison-title3 {
                font-size: 1.5rem;
            }

            .feature-item3 {
                font-size: 0.95rem;
            }

            .stat-number3 {
                font-size: 1.5rem;
            }
        }

        @media (max-width: 480px) {
            .comparison-container3 {
                gap: 30px;
            }

            .comparison-card3 {
                padding: 25px 20px;
            }
        }
		 /* Team Section with Enhanced Visual Appeal */
      .team-section4 {
        padding: 120px 0;
        background: #000;
        min-height: 100vh;
        display: flex;
        justify-content: center; /* Center the single card horizontally */
        align-items: center;
        position: relative;
        overflow: hidden;
      }

      /* Animated Background Elements */
      .team-section4::before {
        content: "";
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(
          45deg,
          transparent 30%,
          rgba(100, 70, 234, 0.05) 40%,
          transparent 50%,
          rgba(139, 92, 246, 0.05) 60%,
          transparent 70%
        );
        animation: backgroundFloat 20s ease-in-out infinite;
        z-index: 1;
      }

      @keyframes backgroundFloat {
        0%,
        100% {
          transform: translate(-50%, -50%) rotate(0deg);
        }
        50% {
          transform: translate(-48%, -52%) rotate(180deg);
        }
      }

      .container4 {
        max-width: 250px; /* reduce container width to fit one card nicely */
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 2;
        text-align: center;	
      }

      /* Enhanced Header with Better Typography */
      .team-header4 {
        margin-bottom: 70px;
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        transition: all 1.2s cubic-bezier(0.23, 1, 0.32, 1);
      }

      .team-header4.visible {
        opacity: 1;
        transform: translateY(0) scale(1);
      }

      .section-subtitle4 {
        font-size: 20px;
        color: #fff;
        margin-bottom: 25px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-family: "Figtree", sans-serif;
        position: relative;
      }

      .section-subtitle4::after {
        content: "";
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 20	px;
        background: linear-gradient(90deg, #6446ea, #a679ff);
        border-radius: 2px;
      }

      .main-title4 {
        font-size: 40px;
        font-weight: 800;
        
        line-height: 1.1;       
        font-family: "Figtree", sans-serif;
        background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }

      .main-description4 {
        font-size: 18px;
        line-height: 1.7;
        color: rgba(255, 255, 255, 0.7);
        max-width: 500px;
        margin: 0 auto;
        font-weight: 200;
        font-family: "Figtree", sans-serif;
      }

      /* Team Grid with only one card */
      .team-grid4 {
        display: grid;
        grid-template-columns: 1fr;
        
        max-width: 400px;
        margin: 0 auto;
        perspective: 1000px;
      }

      /* Dramatically Enhanced Team Card */
      .team-card4 {
        background: linear-gradient(
          145deg,
          rgba(255, 255, 255, 0.08) 0%,
          rgba(255, 255, 255, 0.02) 100%
        );
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 24px;	
        text-align: center;
        backdrop-filter: blur(20px);
        transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
        position: relative;
        overflow: hidden;
        opacity: 0;
        transform: translateY(60px) rotateX(15deg);
        cursor: pointer;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      }

      .team-card4.visible {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
      }

      /* Glowing Border Effect */
      

     
      .team-card4:hover {
        transform: translateY(-15px) scale(1.02);
        box-shadow: 0 30px 60px rgba(100, 70, 234, 0.3);
        border-color: rgba(255, 255, 255, 0.2);
      }

      /* Enhanced Team Member Photo with Glow Effect */
      .team-photo4 {
        width: 240px;
        height: 340px;
        margin: 0 auto 30px;
        overflow: hidden;
        position: relative;
        border: 4px solid transparent;
        transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
        box-shadow: 0 0 0 0 rgba(100, 70, 234, 0.5);	
      }

     
      .team-photo4 img {
        width: calc(100% - 8px);
        height: calc(100% - 8px);

        object-fit: cover;
        position: absolute;
        top: 4px;
        left: 1px;
        transition: all 0.4s ease;
      }

      .team-photo4:hover img {
        transform: scale(1.05);
      }

      
     

      /* Team Member Info */
      .team-name4 {
        font-size: 1.6rem;
        font-weight: 700;
        margin-bottom: 12px;
        color: #ffffff;
        font-family: "Figtree", sans-serif;
        line-height: 1.2;
        letter-spacing: -0.01em;
      }

      .team-position4 {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.6);
        margin-bottom: 25px;
        font-family: "Figtree", sans-serif;
        font-weight: 500;
        letter-spacing: 0.5px;
      }

      /* Enhanced LinkedIn Icon with Glow */
      .team-linkedin4 {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 98px;
        height: 28px;
        background: linear-gradient(
          135deg,
          rgba(0, 119, 181, 0.8),
          rgba(0, 119, 181, 0.6)
        );
        border: 2px solid rgba(0, 119, 181, 0.3);
        border-radius: 10px;
        color: white;
        text-decoration: none;
        transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        font-size: 1.3rem;
        position: relative;
        overflow: hidden;
      }
    
      .team-linkedin4:hover {
        background: linear-gradient(135deg, #0077b5, #005885);
        border-color: #0077b5;
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 10px 25px rgba(0, 119, 181, 0.4);
      }

      /* Responsive */
      @media (max-width: 768px) {
        .team-section4 {
          padding: 100px 0;
        }

        .container4 {
          padding: 0 15px;
        }

        .team-header4 {
          margin-bottom: 80px;
        }

        .team-grid4 {
          grid-template-columns: 1fr;
          gap: 40px;
        }

        .team-card4 {
          padding: 35px 25px;
          transform: translateY(40px) scale(0.95);
        }

        .team-card4.visible {
          transform: translateY(0) scale(1);
        }

        .team-photo4 {
          width: 120px;
          height: 120px;
        }

        .team-name4 {
          font-size: 1.4rem;
        }

        .team-position4 {
          font-size: 1rem;
        }
      }

      @media (max-width: 480px) {
        .team-grid4 {
          gap: 30px;
        }

        .team-card4 {
          padding: 30px 20px;
        }

        .team-photo4 {
          width: 100px;
          height: 100px;
        }

        
      }
/* FAQ Section */
        .faq-section6 {
            padding: 120px 0;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }

        .container6 {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* FAQ Header */
        .faq-header6 {
            text-align: center;
            margin-bottom: 80px;
            opacity: 0;
            transform: translateX(-80px) scale(0.95); /* Slides from further left with scale */
    transition: all 1s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .faq-header6.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .section-subtitle6 {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            font-family: "Figtree", sans-serif;
        }

        .main-title6 {
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
            letter-spacing: -0.02em;
            font-family: "Figtree", sans-serif;
            color: #ffffff;
        }

        .main-subtitle6 {
            font-size: clamp(1.1rem, 2.5vw, 1.3rem);
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
            font-family: "Figtree", sans-serif;
        }

        /* FAQ Container */
        .faq-container6 {
            max-width: 900px;
			Background:#000;
            margin: 0 auto;
        }

        .faq-item6 {
 
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
            backdrop-filter: blur(10px);
        }

        .faq-item6.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .faq-item6:hover {
            border-color: rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.08);
        }

        .faq-question6 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 30px;
            cursor: pointer;
            user-select: none;
            transition: all 0.3s ease;
        }

        .faq-question6:hover {
            background: rgba(255, 255, 255, 0.03);
        }

        .faq-question-text6 {
            font-size: 1.2rem;
            font-weight: 600;
            color: #ffffff;
            font-family: "Figtree", sans-serif;
            line-height: 1.4;
            flex: 1;
            margin-right: 20px;
        }

        .faq-icon6 {
            font-size: 1.5rem;
            color: rgba(255, 255, 255, 0.6);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .faq-item6.active .faq-icon6 {
            transform: rotate(45deg);
            color: #6446ea;
        }

        .faq-answer6 {
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            background: rgba(255, 255, 255, 0.02);
        }

        .faq-item6.active .faq-answer6 {
            max-height: 300px;
            padding: 0 30px 30px 30px;
        }

        .faq-answer-text6 {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            font-family: "Figtree", sans-serif;
            padding-top: 10px;
        }

        /* Active state styling */
        .faq-item6.active {
            border-color: rgba(100, 70, 234, 0.3);
            background: rgba(100, 70, 234, 0.05);
        }

        .faq-item6.active .faq-question-text6 {
            color: #ffffff;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .faq-section6 {
                padding: 100px 0;
            }

            .container6 {
                padding: 0 15px;
            }

            .faq-header6 {
                margin-bottom: 60px;
            }

            .faq-question6 {
                padding: 20px 25px;
            }

            .faq-question-text6 {
                font-size: 1.1rem;
                margin-right: 15px;
            }

            .faq-icon6 {
                font-size: 1.3rem;
            }

            .faq-item6.active .faq-answer6 {
                padding: 0 25px 25px 25px;
            }

            .faq-answer-text6 {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 480px) {
            .faq-question6 {
                padding: 18px 20px;
            }

            .faq-question-text6 {
                font-size: 1rem;
            }

            .faq-item6.active .faq-answer6 {
                padding: 0 20px 20px 20px;
            }
        }
