/* Quantum Metacore — style.css */
:root{
  --deep-blue:#0b3b6f;
  --graphite:#1b2840;
  --accent:#7bd389;
  --muted:#9aa7b2;
  --white:#ffffff;
  --glass: rgba(255,255,255,0.04);
  --card-bg: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  --max-width:1200px;
  --radius:14px;
}

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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
      overflow-x: hidden;
      color: #1c2027;
      
    }

    section{
      padding: 4rem 0;
    }

        /* Header Styles */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
            padding: 20px 0;
            transition: all 0.3s ease;
        }

        header.scrolled {
            background: rgba(10, 25, 47, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 2px 20px rgba(0, 242, 254, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        /* Logo */
        .logo {
            font-size: 32px;
            font-weight: 800;
            background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
            color: #fff;
            letter-spacing: 2px;
            text-transform: capitalize;
            transition: all 0.3s ease;
        }

        .logo:hover {
            color: #00f2fe;
            text-shadow: 0 0 20px rgba(0, 242, 254, 0.5);
        }

        /* Navigation */
        nav {
            flex: 1;
            display: flex;
            justify-content: center;
        }

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

        .nav-menu li a {
            color: #fff;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            transition: all 0.3s ease;
            padding: 5px 0;
        }

        .nav-menu li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #00f2fe, #4facfe);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

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

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

        .nav-menu li a.dropdown::after {
            content: ' ▾';
            margin-left: 5px;
        }


        /* Dropdown Submenu Styles */
        .submenu {
            position: absolute;
            top: calc(100% + 20px);
            left: 50%;
            transform: translateX(-50%);
            background: rgba(10, 25, 47, 0.98);
            backdrop-filter: blur(15px);
            border-radius: 15px;
            padding: 20px 0;
            min-width: 220px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 40px rgba(0, 242, 254, 0.2);
            border: 1px solid rgba(0, 242, 254, 0.1);
        }

        .submenu::before {
            content: '';
            position: absolute;
            top: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid transparent;
            border-right: 8px solid transparent;
            border-bottom: 8px solid rgba(10, 25, 47, 0.98);
        }

        .nav-menu li:hover .submenu {
            opacity: 1;
            visibility: visible;
            top: calc(100% + 10px);
        }

        .submenu li {
            width: 100%;
            padding: 0;
            list-style: none;
        }

        .submenu li a {
            display: block;
            padding: 12px 30px;
            color: rgba(255, 255, 255, 0.8);
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
        }

        .submenu li a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 3px;
            height: 0;
            background: linear-gradient(180deg, #00f2fe, #0a9396);
            transition: all 0.3s ease;
        }

        .submenu li a::after {
            display: none;
        }

        .submenu li a:hover {
            color: #00f2fe;
            background: rgba(0, 242, 254, 0.05);
            padding-left: 40px;
        }

        .submenu li a:hover::before {
            height: 100%;
        }

        /* Enquiry Button */
        .enquiry-btn {
            padding: 12px 30px;
            border: 2px solid rgba(255, 255, 255, 0.3);
            background: transparent;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .enquiry-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: linear-gradient(135deg, #00f2fe, #0a9396);
            transition: all 0.5s ease;
            transform: translate(-50%, -50%);
        }

        .enquiry-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .enquiry-btn:hover {
            border-color: #00f2fe;
            color: #fff;
            box-shadow: 0 0 20px rgba(0, 242, 254, 0.4);
        }

        .enquiry-btn span {
            position: relative;
            z-index: 1;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
        }

        .mobile-menu-toggle span {
            width: 30px;
            height: 3px;
            background: #fff;
            transition: all 0.3s ease;
        }
        
         /* Scroll Down Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            text-align: center;
            cursor: pointer;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-20px);
            }
            60% {
                transform: translateX(-50%) translateY(-10px);
            }
        }

        .scroll-indicator span {
            display: block;
            font-size: 14px;
            color: #fff;
            margin-bottom: 10px;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .scroll-indicator::after {
            content: '↓';
            display: block;
            font-size: 30px;
            color: #00f2fe;
        }

        /* Responsive Design */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 56px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0 20px;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            nav {
                position: fixed;
                top: 0px;
                left: -100%;
                width: 100%;
                height: 100vh;
                background: rgba(10, 25, 47, 0.98);
                backdrop-filter: blur(10px);
                transition: all 0.3s ease;
                align-items: center;
            }

            nav.active {
                left: 0;
            }

            .nav-menu {
                flex-direction: column;
                padding: 40px 20px;
                gap: 30px;
            }
            .submenu {
                transform: none;
                opacity: 0;
                visibility: hidden;
                max-height: 0;
                overflow: hidden;
                background: rgba(0, 242, 254, 0.05);
                border: none;
                border-radius: 10px;
                margin-top: 10px;
                box-shadow: none;
                transition: all 0.4s ease;
            }

            .submenu::before {
                display: none;
            }

            .nav-menu li.active .submenu {
                opacity: 1;
                visibility: visible;
                max-height: 500px;
                padding: 10px 0;
            }

            .submenu li a {
                padding: 10px 20px;
                font-size: 14px;
            }

            .submenu li a:hover {
                padding-left: 30px;
            }

            .enquiry-btn {
                display: none;
            }

            .slider-container{
                top: 0;
            }

            .hero-title {
                font-size: 42px;
                text-align: center;
                width: auto;
            }

            .cta-buttons {
                flex-direction: column;
            }

            .hero-content {
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 32px;
            }

            .logo {
                font-size: 24px;
            }

            .cta-primary,
            .cta-secondary {
                padding: 15px 30px;
                font-size: 16px;
            }
        }

    .hero{
      padding: 0;
    }

    .slider-container {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      z-index: 0;
    }

    .slides {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(1.1);
      transition: opacity 1.2s cubic-bezier(0.65, 0, 0.35, 1),
                  transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
      pointer-events: none;
    }

    .slide.active {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
      z-index: 2;
    }

    .slide.exiting {
      opacity: 0;
      transform: scale(0.95);
      z-index: 1;
    }

    .slide-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      filter: brightness(0.7);
      transition: transform 1.5s cubic-bezier(0.65, 0, 0.35, 1);
    }

    .slide.active .slide-bg {
      transform: scale(1);
    }

    .slide-content {
      position: relative;
      z-index: 3;
      max-width: 1200px;
      padding: 0 3rem;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
      width: 100%;
    }

    .content-left {
      opacity: 0;
      transform: translateX(-60px);
      transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1) 0.3s,
                  transform 1s cubic-bezier(0.65, 0, 0.35, 1) 0.3s;
    }

    .slide.active .content-left {
      opacity: 1;
      transform: translateX(0);
    }

    .content-right {
      opacity: 0;
      transform: translateX(60px);
      transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1) 0.4s,
                  transform 1s cubic-bezier(0.65, 0, 0.35, 1) 0.4s;
    }

    .slide.active .content-right {
      opacity: 1;
      transform: translateX(0);
    }

    .slide-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9);
      border: 2px solid rgba(255, 255, 255, 0.2);
    }

    .slide-title {
      font-size: clamp(2rem, 5vw, 6rem);
      font-weight: 600;
      margin-bottom: 1.5rem;
      line-height: 1;
      background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .slide-description {
      font-size: clamp(1rem, 2vw, 1.25rem);
      line-height: 1.7;
      color: #cbd5e1;
      max-width: 500px;
    }

    .slider-nav {
      position: absolute;
      bottom: 4rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 1rem;
      z-index: 10;
    }

    .nav-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.3);
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
      border: none;
      padding: 0;
    }

    .nav-dot:hover {
      background: rgba(255, 255, 255, 0.6);
      transform: scale(1.2);
    }

    .nav-dot.active {
      width: 40px;
      border-radius: 6px;
      background: #3b82f6;
    }

    .slider-arrows {
      position: absolute;
      top: 50%;
      left: 0;
      right: 0;
      transform: translateY(-50%);
      display: flex;
      justify-content: space-between;
      padding: 0 2rem;
      z-index: 10;
      pointer-events: none;
    }

    .arrow {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      backdrop-filter: blur(10px);
      pointer-events: auto;
    }

    .arrow:hover {
      background: rgba(59, 130, 246, 0.3);
      border-color: rgba(59, 130, 246, 0.5);
      transform: scale(1.1);
    }

    .arrow svg {
      width: 24px;
      height: 24px;
      fill: white;
    }

    .slide-counter {
      position: absolute;
      top: 4 rem;
      right: 3rem;
      font-size: 1.2rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.7);
      z-index: 10;
    }

    .slide-counter .current {
      font-size: 2rem;
      color: #3b82f6;
    }

    @media (max-width: 1024px) {
      .slide-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
      }

      .content-right {
        order: -1;
      }

      .slide-image {
        height: 300px;
      }

      .slide-description {
        margin-left: auto;
        margin-right: auto;
      }
    }

    @media (max-width: 768px) {
      .slide-content {
        padding: 0 1.5rem;
      }

      .slider-nav {
        bottom: 2rem;
      }

      .arrow {
        width: 50px;
        height: 50px;
      }

      .slider-arrows {
        padding: 0 1rem;
      }

      .slide-counter {
        
        right: 1.5rem;
        font-size: 1rem;
      }

      .slide-counter .current {
        font-size: 1.5rem;
      }

      .slide-image {
        height: 250px;
      }
    }

    @media (max-width: 480px) {
      .slide-title {
        margin-bottom: 1rem;
      }

      .slide-image {
        height: 200px;
      }

      .arrow {
        width: 45px;
        height: 45px;
      }

      .nav-dot {
        width: 10px;
        height: 10px;
      }

      .nav-dot.active {
        width: 30px;
      }
    }


    .section-header {
      text-align: center;
      margin: 4rem 0;
      opacity: 0;
      transform: translateY(-30px);
      animation: fadeInDown 0.8s ease forwards;
    }

    @keyframes fadeInDown {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .section-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    .section-subtitle {
      font-size: clamp(1rem, 2vw, 1.25rem);
      color: rgba(255, 255, 255, 0.9);
      max-width: 600px;
      margin: 0 auto;
    }

    .cards-container {
      max-width: 1400px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 2.5rem;
      padding: 0 1rem;
    }

    .card {
      position: relative;
      background: white;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(198, 198, 198, 0.2);
      transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
                  box-shadow 0.5s ease;
      cursor: pointer;
      opacity: 0;
      transform: translateY(50px) scale(0.9);
    }

    .card.visible {
      animation: cardAppear 0.8s ease forwards;
    }

    @keyframes cardAppear {
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .card:nth-child(1) { animation-delay: 0.1s; }
    .card:nth-child(2) { animation-delay: 0.3s; }
    .card:nth-child(3) { animation-delay: 0.5s; }

    .card:hover {
      transform: translateY(-15px) scale(1.02);
      box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    }

    .card-image-wrapper {
      position: relative;
      height: 280px;
      overflow: hidden;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    }

    .card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.7s ease;
      opacity: 0.9;
    }

    .card:hover .card-image {
      transform: scale(1.1) rotate(2deg);
    }

    .card-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
      transition: opacity 0.4s ease;
    }

    .card:hover .card-overlay {
      opacity: 0.7;
    }

    .card-number {
      position: absolute;
      top: 1.5rem;
      left: 1.5rem;
      font-size: 5rem;
      font-weight: 900;
      color: #1c2027;
      opacity: 0.3;
      transition: all 0.4s ease;
      z-index: 2;
      text-shadow: 2px 1px 4px rgba(122, 122, 122, 0.9);
    }

    .card:hover .card-number {
      opacity: 0.5;
      transform: scale(1.1);
    }

    .card-accent {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      transition: height 0.4s ease;
    }

    .card:nth-child(1) .card-accent {
      background: linear-gradient(90deg, #00c6ff 0%, #0072ff 100%);
    }

    .card:nth-child(2) .card-accent {
      background: linear-gradient(90deg, #f093fb 0%, #f5576c 100%);
    }

    .card:nth-child(3) .card-accent {
      background: linear-gradient(90deg, #fa709a 0%, #fee140 100%);
    }

    .card:hover .card-accent {
      height: 8px;
    }

    .card-content {
      padding: 2.5rem;
      position: relative;
    }

    .card-title {
      font-size: clamp(1.5rem, 2.5vw, 1.75rem);
      font-weight: 700;
      color: #1e293b ;
      margin-bottom: 1.5rem;
      line-height: 1.3;
      transition: color 0.3s ease;
    }

    .card:nth-child(1):hover .card-title {
      color: #0072ff;
    }

    .card:nth-child(2):hover .card-title {
      color: #f5576c;
    }

    .card:nth-child(3):hover .card-title {
      color: #fa709a;
    }

    .card-description {
      font-size: 1rem;
      line-height: 1.7;
      color: #64748b;
      margin-bottom: 2rem;
    }

    .card-features {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }

    .feature-tag {
      padding: 0.5rem 1rem;
      background: #f1f5f9;
      border-radius: 20px;
      font-size: 0.875rem;
      color: #475569;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .card:hover .feature-tag {
      background: #e2e8f0;
      transform: translateY(-2px);
    }

    .card-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 1rem 1.75rem;
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
      text-decoration: none;
      border-radius: 12px;
      font-weight: 600;
      font-size: 1rem;
      transition: all 0.4s ease;
      box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
    }

    .card-cta:hover {
      transform: translateX(5px);
      box-shadow: 0 6px 25px rgba(102, 126, 234, 0.5);
    }

    .arrow-icon {
      transition: transform 0.3s ease;
    }

    .card-cta:hover .arrow-icon {
      transform: translateX(5px);
    }

    .floating-icon {
      position: absolute;
      bottom: 2rem;
      right: 2rem;
      width: 60px;
      height: 60px;
      background: rgba(102, 126, 234, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s ease;
    }

    .card:hover .floating-icon {
      transform: rotate(360deg) scale(1.1);
      background: rgba(102, 126, 234, 0.2);
    }

    @media (max-width: 1024px) {
      .cards-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
      }

      .card-image-wrapper {
        height: 240px;
      }
    }

    @media (max-width: 768px) {
      
      .section-header {
        margin-bottom: 2.5rem;
      }

      .cards-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .card-content {
        padding: 2rem;
      }

      .card-number {
        font-size: 4rem;
      }

      .floating-icon {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .card-image-wrapper {
        height: 200px;
      }

      .card-content {
        padding: 1.5rem;
      }

      .card-cta {
        width: 100%;
        justify-content: center;
      }
    }



    .about-section {
      position: relative;
      min-height: 100vh;
      padding: 6rem 2rem;
      overflow: hidden;
      background: #1c2027;
    }

    .background-grid {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(rgba(59, 130, 246, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.1) 1px, transparent 1px);
      background-size: 50px 50px;
      animation: gridMove 20s linear infinite;
      opacity: 0.3;
    }

    @keyframes gridMove {
      0% { transform: translate(0, 0); }
      100% { transform: translate(50px, 50px); }
    }

    .floating-elements {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      pointer-events: none;
    }

    .floating-circle {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
      animation: float 15s ease-in-out infinite;
    }

    .circle-1 {
      width: 300px;
      height: 300px;
      top: 10%;
      left: 5%;
      animation-delay: 0s;
    }

    .circle-2 {
      width: 200px;
      height: 200px;
      top: 60%;
      right: 10%;
      animation-delay: 3s;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    }

    .circle-3 {
      width: 150px;
      height: 150px;
      bottom: 20%;
      left: 20%;
      animation-delay: 6s;
      background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(30px, -30px) scale(1.1); }
      66% { transform: translate(-20px, 20px) scale(0.9); }
    }

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

    .about-header {
      text-align: center;
      margin-bottom: 5rem;
      opacity: 0;
      animation: fadeInUp 1s ease forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .section-label {
      display: inline-block;
      padding: 0.5rem 1.5rem;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 30px;
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #3b82f6;
      margin-bottom: 1.5rem;
    }

    .about-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      background: linear-gradient(135deg, #fff 0%, #3b82f6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .about-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
      margin-bottom: 5rem;
    }

    .content-left {
      opacity: 0;
      transform: translateX(-50px);
      animation: slideInLeft 1s ease forwards 0.3s;
    }

    @keyframes slideInLeft {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .image-container {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    }

    .main-image {
      width: 100%;
      height: 500px;
      object-fit: cover;
      transition: transform 0.7s ease;
    }

    .image-container:hover .main-image {
      transform: scale(1.05);
    }

    .image-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
      opacity: 0;
      transition: opacity 0.4s ease;
    }

    .image-container:hover .image-overlay {
      opacity: 1;
    }

    .stat-badge {
      position: absolute;
      background: rgba(10, 10, 10, 0.9);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 16px;
      padding: 1.5rem;
      min-width: 150px;
      animation: float 3s ease-in-out infinite;
    }

    .badge-1 {
      top: 2rem;
      right: -1rem;
      animation-delay: 0s;
    }

    .badge-2 {
      bottom: 2rem;
      left: -1rem;
      animation-delay: 1.5s;
    }

    .stat-number {
      font-size: 2rem;
      font-weight: 800;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 0.25rem;
    }

    .stat-label {
      font-size: 0.875rem;
      color: #94a3b8;
    }

    .content-right {
      opacity: 0;
      transform: translateX(50px);
      animation: slideInRight 1s ease forwards 0.5s;
    }

    @keyframes slideInRight {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .text-content {
      margin-bottom: 2rem;
    }

    .description {
      font-size: clamp(1rem, 2vw, 1.125rem);
      line-height: 1.8;
      color: #cbd5e1;
      margin-bottom: 1.5rem;
    }

    .mission-box {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 16px;
      padding: 2rem;
      margin-top: 2rem;
      position: relative;
      overflow: hidden;
    }

    .mission-box::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899);
      animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
      0%, 100% { transform: translateX(-100%); }
      50% { transform: translateX(100%); }
    }

    .mission-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .mission-icon {
      width: 24px;
      height: 24px;
      fill: #3b82f6;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .feature-item {
      background: rgba(15, 23, 42, 0.5);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 12px;
      padding: 1.5rem;
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .feature-item:hover {
      transform: translateY(-5px);
      border-color: rgba(59, 130, 246, 0.5);
      box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .feature-icon svg {
      width: 24px;
      height: 24px;
      fill: white;
    }

    .feature-title {
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .feature-description {
      font-size: 0.875rem;
      color: #94a3b8;
      line-height: 1.6;
    }

    .cta-buttons {
      display: flex;
      gap: 1rem;
      margin-top: 2rem;
    }

    .btn {
      padding: 1rem 2rem;
      border-radius: 12px;
      font-size: 1rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: none;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      color: white;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.2);
      color: white;
      backdrop-filter: blur(10px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.4);
    }

    @media (max-width: 1024px) {
      .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .content-left {
        order: 2;
      }

      .content-right {
        order: 1;
      }

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

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

      .about-header {
        margin-bottom: 3rem;
      }

      .main-image {
        height: 350px;
      }

      .badge-1, .badge-2 {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        display: inline-block;
        margin: 1rem 0.5rem;
      }

      .cta-buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        justify-content: center;
      }
    }



    .commitment-section {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 6rem 2rem;
      background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #4c1d95 100%);
      overflow: hidden;
    }

    .animated-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden;
    }

    .wave {
      position: absolute;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
      animation: wave 20s linear infinite;
    }

    .wave:nth-child(1) {
      top: -50%;
      left: -50%;
      animation-duration: 25s;
    }

    .wave:nth-child(2) {
      top: -30%;
      left: -30%;
      animation-duration: 30s;
      animation-delay: -5s;
    }

    .wave:nth-child(3) {
      top: -40%;
      left: -40%;
      animation-duration: 35s;
      animation-delay: -10s;
    }

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

    .particles {
      position: absolute;
      width: 100%;
      height: 100%;
    }

    .particle {
      position: absolute;
      width: 4px;
      height: 4px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 50%;
      animation: float-particle 15s ease-in-out infinite;
    }

    @keyframes float-particle {
      0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
      }
      10% {
        opacity: 1;
      }
      90% {
        opacity: 1;
      }
      100% {
        transform: translateY(-100vh) translateX(50px);
        opacity: 0;
      }
    }

    .particle:nth-child(1) { left: 10%; animation-delay: 0s; }
    .particle:nth-child(2) { left: 20%; animation-delay: 2s; }
    .particle:nth-child(3) { left: 30%; animation-delay: 4s; }
    .particle:nth-child(4) { left: 40%; animation-delay: 6s; }
    .particle:nth-child(5) { left: 50%; animation-delay: 8s; }
    .particle:nth-child(6) { left: 60%; animation-delay: 10s; }
    .particle:nth-child(7) { left: 70%; animation-delay: 12s; }
    .particle:nth-child(8) { left: 80%; animation-delay: 14s; }
    .particle:nth-child(9) { left: 90%; animation-delay: 16s; }

    .content-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .commitment-header {
      opacity: 0;
      transform: translateY(-30px);
      animation: fadeInDown 1s ease forwards;
    }

    @keyframes fadeInDown {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 50px;
      margin-bottom: 2rem;
    }

  
    .badge-icon {
      width: 20px;
      height: 20px;
      fill: #fff;
    }

    .badge-text {
      font-size: 0.875rem;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #fff;
    }

    .commitment-title {
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 3rem;
      line-height: 1.1;
      opacity: 0;
      transform: scale(0.9);
      animation: zoomIn 1s ease forwards 0.3s;
    }

    @keyframes zoomIn {
      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .commitment-title span {
      background: linear-gradient(135deg, #fff 0%, #a78bfa 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      display: inline-block;
      animation: shimmer 3s ease-in-out infinite;
    }

    @keyframes shimmer {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.7; }
    }

    .commitment-description {
      font-size: clamp(1.125rem, 2vw, 1.5rem);
      line-height: 1.8;
      color: rgba(255, 255, 255, 0.95);
      max-width: 1000px;
      margin: 0 auto 4rem;
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease forwards 0.6s;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .commitment-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 4rem;
      opacity: 0;
      animation: fadeIn 1s ease forwards 0.9s;
    }

    @keyframes fadeIn {
      to { opacity: 1; }
    }

    .commitment-card {
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 20px;
      padding: 2.5rem;
      transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .commitment-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
      transition: left 0.5s ease;
    }

    .commitment-card:hover::before {
      left: 100%;
    }

    .commitment-card:hover {
      transform: translateY(-10px) scale(1.02);
      border-color: rgba(139, 92, 246, 0.5);
      background: rgba(255, 255, 255, 0.08);
    }

    .card-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1.5rem;
      transition: transform 0.4s ease;
    }

    .commitment-card:hover .card-icon {
      transform: rotateY(360deg);
    }

    .card-icon svg {
      width: 32px;
      height: 32px;
      fill: white;
    }

   .commitment-cards .card-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 1rem;
    }

    .commitment-cards .card-description {
      font-size: 1rem;
      line-height: 1.7;
      color: rgba(255, 255, 255, 0.8);
    }

    .stats-container {
      display: flex;
      justify-content: center;
      gap: 4rem;
      margin-top: 5rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeIn 1s ease forwards 1.2s;
    }

    .stat-item {
      text-align: center;
      transition: transform 0.3s ease;
    }

    .stat-item:hover {
      transform: scale(1.1);
    }

    .stat-number {
      font-size: clamp(3rem, 5vw, 4rem);
      font-weight: 900;
      background: linear-gradient(135deg, #fff 0%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 1rem;
      color: rgba(255, 255, 255, 0.8);
      font-weight: 500;
    }

    @media (max-width: 1024px) {
      .commitment-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .stats-container {
        gap: 3rem;
      }
    }

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

      .commitment-description {
        margin-bottom: 3rem;
      }

      .commitment-cards {
        margin-top: 3rem;
      }

      .commitment-card {
        padding: 2rem;
      }

      .stats-container {
        gap: 2rem;
        margin-top: 3rem;
      }
    }

    @media (max-width: 480px) {
      .section-badge {
        padding: 0.5rem 1rem;
      }

      .badge-text {
        font-size: 0.75rem;
      }

      .stat-number {
        font-size: 2.5rem;
      }

      .stat-label {
        font-size: 0.875rem;
      }
    }





    /* Partner Section */
    .partner-section {
      position: relative;
      background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
      padding: 8rem 2rem;
      overflow: hidden;
    }

    .partner-bg-pattern {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0.05;
      background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,.1) 10px, rgba(255,255,255,.1) 11px),
        repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255,255,255,.1) 10px, rgba(255,255,255,.1) 11px);
    }

    .floating-shapes {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      overflow: hidden;
    }

    .shape {
      position: absolute;
      border-radius: 50%;
      opacity: 0.1;
      animation: float 20s ease-in-out infinite;
    }

    .shape-1 {
      width: 400px;
      height: 400px;
      background: linear-gradient(135deg, #3b82f6, #8b5cf6);
      top: -200px;
      left: -200px;
      animation-delay: 0s;
    }

    .shape-2 {
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, #8b5cf6, #ec4899);
      bottom: -150px;
      right: -150px;
      animation-delay: 3s;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0) scale(1); }
      33% { transform: translate(50px, -50px) scale(1.1); }
      66% { transform: translate(-30px, 30px) scale(0.9); }
    }

    .partner-container {
      max-width: 900px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      z-index: 2;
    }

    .partner-content {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeInUp 1s ease forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .partner-title {
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      color: #fff;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .partner-subtitle {
      font-size: clamp(1.125rem, 2vw, 1.375rem);
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 3rem;
      line-height: 1.6;
    }

    .cta-button {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      padding: 1.25rem 3rem;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      color: white;
      font-size: 1.125rem;
      font-weight: 600;
      text-decoration: none;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      position: relative;
      overflow: hidden;
    }

    .cta-button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.6s ease;
    }

    .cta-button:hover::before {
      left: 100%;
    }

    .cta-button:hover {
      transform: translateY(-5px) scale(1.05);
    }

    .cta-button svg {
      transition: transform 0.3s ease;
    }

    .cta-button:hover svg {
      transform: translateX(5px);
    }

    /* Footer */
    .footer {
      background: #0a0a0a;
      color: #fff;
      padding: 4rem 2rem 2rem;
      position: relative;
    }

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

    .footer-content {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem;
      margin-bottom: 1rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand {
      max-width: 350px;
    }

    .footer-logo {
      font-size: 1.75rem;
      font-weight: 800;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 1rem;
    }

    .footer-description {
      color: #94a3b8;
      line-height: 1.7;
      margin-bottom: 1.5rem;
      font-size: 0.95rem;
    }

    .social-links {
      display: flex;
      gap: 1rem;
    }

    .social-link {
      width: 40px;
      height: 40px;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
      text-decoration: none;
    }

    .social-link:hover {
      background: rgba(59, 130, 246, 0.2);
      border-color: rgba(59, 130, 246, 0.4);
      transform: translateY(-3px);
    }

    .social-link svg {
      width: 20px;
      height: 20px;
      fill: #3b82f6;
    }

    .footer-column h4 {
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: #fff;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: #94a3b8;
      text-decoration: none;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      display: inline-block;
    }

    .footer-links a:hover {
      color: #3b82f6;
      transform: translateX(5px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
      padding-top: 2rem;
    }

    .copyright {
      color: #64748b;
      font-size: 0.875rem;
    }

    .footer-bottom-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .footer-bottom-links a {
      color: #64748b;
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.3s ease;
    }

    .footer-bottom-links a:hover {
      color: #3b82f6;
    }

    @media (max-width: 1024px) {
      .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin-bottom: 1rem;
      }

      .footer-brand {
        max-width: 100%;
      }
    }

    @media (max-width: 768px) {
      .partner-section {
        padding: 5rem 1.5rem;
      }

      .footer {
        padding: 3rem 1.5rem 1.5rem;
      }

      .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }

      .footer-bottom-links {
        flex-direction: row;
        gap: 0.75rem;
      }
    }

    @media (max-width: 480px) {
      .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
      }
    }


.contact-item {
      display: flex;
      align-items: flex-start;
      gap: 0.75rem;
      margin: 2rem 0;
      color: #94a3b8;
      font-size: 0.95rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a.contact-item:hover {
      color: #3b82f6;
    }

    .contact-item svg {
      width: 20px;
      height: 20px;
      stroke: #3b82f6;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .contact-item span {
      line-height: 1.5;
    }



    .contact-section {
      position: relative;
      padding: 6rem 2rem;
      background: linear-gradient(135deg, #0a2342 0%, #1a1f35 50%, #0f1923 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
    }

    .contact-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .grid-pattern {
      position: absolute;
      width: 100%;
      height: 100%;
      background-image: 
        linear-gradient(rgba(59, 130, 246, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.05) 1px, transparent 1px);
      background-size: 50px 50px;
      opacity: 0.5;
    }

    .floating-orb {
      position: absolute;
      border-radius: 50%;
      filter: blur(80px);
      animation: float 15s ease-in-out infinite;
    }

    .orb-1 {
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
      top: 10%;
      right: 10%;
    }

    .orb-2 {
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
      bottom: 10%;
      left: 10%;
      animation-delay: 5s;
    }

    @keyframes float {
      0%, 100% { transform: translate(0, 0); }
      50% { transform: translate(30px, -30px); }
    }

    .contact-container {
      max-width: 1200px;
      margin: 0 auto;
      width: 100%;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .contact-info {
      opacity: 0;
      transform: translateX(-30px);
      animation: slideIn 0.8s ease forwards;
    }

    @keyframes slideIn {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.5rem 1.25rem;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 50px;
      font-size: 0.875rem;
      color: #3b82f6;
      margin-bottom: 1.5rem;
    }

    .section-badge svg {
      width: 16px;
      height: 16px;
    }

    .contact-title {
      font-size: clamp(2.5rem, 5vw, 3.5rem);
      font-weight: 700;
      margin-bottom: 1.5rem;
      background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
    }

    .contact-description {
      font-size: 1.125rem;
      color: #cbd5e1;
      line-height: 1.7;
      margin-bottom: 2.5rem;
    }

    .contact-details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      color: #cbd5e1;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    a.contact-item:hover {
      color: #3b82f6;
      transform: translateX(5px);
    }

    .contact-icon {
      width: 50px;
      height: 50px;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .contact-icon svg {
      width: 24px;
      height: 24px;
      stroke: #3b82f6;
    }

    .contact-text h4 {
      font-size: 1rem;
      font-weight: 600;
      color: #fff;
      margin-bottom: 0.25rem;
    }

    .contact-text p {
      font-size: 0.95rem;
    }

    /* Form Styles */
    .form-container {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 3rem;
      backdrop-filter: blur(10px);
      opacity: 0;
      transform: translateX(30px);
      animation: slideIn 0.8s ease forwards 0.2s;
    }

    .form-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.5rem;
    }

    .form-subtitle {
      font-size: 0.95rem;
      color: #94a3b8;
      margin-bottom: 2rem;
    }

    .contact-form {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .form-group label {
      font-size: 0.95rem;
      font-weight: 500;
      color: #cbd5e1;
    }

    .form-group label span {
      color: #ef4444;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      padding: 1rem 1.25rem;
      background: rgba(15, 23, 42, 0.5);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 12px;
      color: #fff;
      font-size: 1rem;
      font-family: inherit;
      transition: all 0.3s ease;
      outline: none;
    }

    .form-group input::placeholder,
    .form-group textarea::placeholder {
      color: #64748b;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: #3b82f6;
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
      background: rgba(15, 23, 42, 0.8);
    }

    .form-group select {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-size: 16px;
      padding-right: 3rem;
    }

    .form-group select option {
      background: #1e293b;
      color: #fff;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .submit-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      padding: 1.25rem 2rem;
      background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
      color: white;
      font-size: 1rem;
      font-weight: 600;
      font-family: inherit;
      border: none;
      border-radius: 12px;
      cursor: pointer;
      transition: all 0.3s ease;
      margin-top: 0.5rem;
    }

    .submit-btn:hover {
      transform: translateY(-3px);
    }

    .submit-btn:active {
      transform: translateY(-1px);
    }

    .submit-btn svg {
      width: 20px;
      height: 20px;
      transition: transform 0.3s ease;
    }

    .submit-btn:hover svg {
      transform: translateX(5px);
    }

    .form-note {
      font-size: 0.85rem;
      color: #64748b;
      text-align: center;
      margin-top: 1rem;
    }

    .form-note a {
      color: #3b82f6;
      text-decoration: none;
    }

    .form-note a:hover {
      text-decoration: underline;
    }

    /* Success Message */
    .success-message {
      display: none;
      text-align: center;
      padding: 3rem;
    }

    .success-message.show {
      display: block;
      animation: fadeIn 0.5s ease;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: scale(0.95); }
      to { opacity: 1; transform: scale(1); }
    }

    .success-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
    }

    .success-icon svg {
      width: 40px;
      height: 40px;
      stroke: white;
    }

    .success-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: #fff;
      margin-bottom: 0.75rem;
    }

    .success-text {
      color: #94a3b8;
      margin-bottom: 2rem;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.75rem 1.5rem;
      background: rgba(59, 130, 246, 0.1);
      border: 1px solid rgba(59, 130, 246, 0.3);
      border-radius: 8px;
      color: #3b82f6;
      font-size: 0.95rem;
      cursor: pointer;
      transition: all 0.3s ease;
      font-family: inherit;
    }

    .back-btn:hover {
      background: rgba(59, 130, 246, 0.2);
    }

    @media (max-width: 1024px) {
      .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
      }

      .contact-info {
        text-align: center;
      }

      .contact-details {
        align-items: center;
      }
    }

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

      .form-container {
        padding: 2rem;
      }

      .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

    @media (max-width: 480px) {
      .form-container {
        padding: 1.5rem;
      }

      .contact-icon {
        width: 45px;
        height: 45px;
      }

      .contact-icon svg {
        width: 20px;
        height: 20px;
      }
    }