 /* Reset + variables */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box
        }

        :root {
            --primary: #667eea;
            --primary-dark: #5568d3;
            --secondary: #64b5f6;
            --tertiary: #81c784;
            --accent: #ffa726;
            --dark: #37474f;
            --light: #f5f7fa;
            --text: #546e7a;
            --card-bg: #fff;
        }

        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text);
            background: #fff;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
         /* Progress bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary), var(--accent));
            z-index: 1001;
            width: 0;
            transition: width .12s linear
        }

        /* Header (single header that becomes sticky) */
        header.main-header {
            position: sticky;
            /* modern approach */
            top: 0;
            left: 0;
            right: 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 5px 8%;
            background: rgba(255, 255, 255, .95);
            backdrop-filter: blur(10px);
            z-index: 1000;
            border-bottom: 1px solid rgba(102, 126, 234, 0.06);
            transition: box-shadow .4s ease, padding .25s ease, transform .25s ease;
        }

        header.main-header.scrolled {
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.12);
            padding: 5px 6%;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px
        }

        .logo-container img {
            height: 70px;
            transition: transform .25s ease
        }

        .logo-container:hover img {
            transform: scale(1.05) rotate(2deg)
        }

        nav {
            display: flex;
            align-items: center
        }

        nav ul {
            display: flex;
            gap: 5px;
            list-style: none;
        }

        nav a {
            color: var(--dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            position: relative;
            padding: 12px 18px;
            transition: all .25s ease
        }

        nav a::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: translateX(-50%);
            transition: width .25s
        }

        nav a:hover::before {
            width: 100%
        }

        nav a:hover {
            color: var(--primary)
        }

        /* Hamburger */
        /* --- New Animated Hamburger Design --- */
        .hamburger {
            position: relative;
            width: 32px;
            height: 22px;
            background: none;
            border: none;
            cursor: pointer;
            display: none;
            z-index: 1100;
        }

        .hamburger span {
            position: absolute;
            left: 0;
            width: 100%;
            height: 3px;
            background: var(--dark);
            border-radius: 5px;
            transition: all 0.4s ease;
        }

        .hamburger span:nth-child(1) {
            top: 0;
        }

        .hamburger span:nth-child(2) {
            top: 9px;
        }

        .hamburger span:nth-child(3) {
            bottom: 0;
        }

        /* When menu is active */
        .hamburger.active span:nth-child(1) {
            transform: translateY(9px) rotate(45deg);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: translateY(-9px) rotate(-45deg);
        }

        /* Show only on mobile */
        @media (max-width: 968px) {
            .hamburger {
                display: block;
            }
        }


        /* Mobile nav */
        @media(max-width:968px) {
            .hamburger {
                display: block
            }

            nav ul {
                position: fixed;
                top: 80px;
                right: 67%;
                background: rgba(255, 255, 255, .97);
                flex-direction: column;
                gap: 20px;
                padding: 10px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, .12);
                display: none;
                left: 0;
                width: 100%;
            }

            nav ul.show {
                display: flex
            }

            nav ul a {
                font-size: 15px
            }
            
        }

        /* Hero */
        .hero {
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding: 80px 8%;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 50%, #fff3e0 100%)
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(100, 181, 246, 0.1), rgba(129, 199, 132, 0.08), transparent);
            animation: pulse 8s ease-in-out infinite
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1)
            }

            50% {
                transform: scale(1.1)
            }
        }

        .hero-content {
            display: flex;
            gap: 48px;
            align-items: center;
            width: 100%;
            z-index: 2
        }

        .hero-text {
            flex: 1;
            animation: fadeInLeft 1s ease-out
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px)
            }

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

        .hero-text h1 {
            font-size: 58px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 20px;
            line-height: 1.14;
            background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent
        }

        .hero-text p {
            font-size: 18px;
            line-height: 1.7;
            color: var(--text);
            margin-bottom: 14px;
            opacity: 0;
            animation: fadeIn .9s ease-out .25s forwards;
            text-align: justify
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px)
            }

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

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            padding: 14px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            margin-top: 12px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(102, 126, 234, .2);
            transition: transform .25s, box-shadow .25s
        }

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

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, .3)
        }

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

        .hero-image {
            flex: 1;
            position: relative;
            animation: fadeInRight 1s ease-out
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px)
            }

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

        .hero-image img {
            width: 100%;
            max-width: 600px;
            filter: drop-shadow(0 20px 40px rgba(0, 0, 0, .08));
            animation: floatImage 6s ease-in-out infinite;
            transition: transform .12s linear
        }

        @keyframes floatImage {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-20px)
            }
        }

        /* Why Section */
        .why-section {
            padding: 100px 8%;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 50%, #e0f2f1 100%);
            position: relative;
            overflow: hidden
        }

        .why-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--secondary), var(--tertiary), transparent)
        }

        .section-title {
            text-align: center;
            font-size: 48px;
            font-weight: 800;
            color: var(--dark);
            margin-bottom: 70px;
            display: inline-block;
            left: 50%;
            transform: translateX(-50%);
            position: relative
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary), var(--tertiary));
            border-radius: 2px
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 35px;
            perspective: 1000px
        }

        .card {
            background: rgba(255, 255, 255, .95);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(102, 126, 234, .12);
            border-radius: 20px;
            padding: 36px;
            transition: all .4s;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(102, 126, 234, .06)
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(100, 181, 246, .08), transparent);
            transition: left .6s
        }

        .card:hover::before {
            left: 100%
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(102, 126, 234, .12);
            border-color: var(--secondary)
        }

        .card-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary), var(--tertiary));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: #fff;
            margin-bottom: 18px;
            transition: transform .6s
        }

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

        .card h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 10px
        }

        .card p {
            color: var(--text);
            line-height: 1.7;
            font-size: 15px
        }
        /*.....ABOUTUS.......*/
        .hero-section {
      min-height: 85vh;
      display: flex;
      align-items: center;
      padding: 110px 8% 80px;
      background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 50%, #fff3e0 100%);
      position: relative;
      overflow: hidden;
    }
          .team-section {
      padding: 4rem 8%;
      background: (135deg, #e3f2fd 0%, #f3e5f5 50%, #fff3e0 100%);
    }

    .team-section h2 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #2c3e50;
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }

    .team-section h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      border-radius: 2px;
    }

    .team-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      margin-top: 3rem;
    }

    .team-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      padding: 2rem;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .team-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(135deg, #667eea, #764ba2);
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

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

    .team-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.2);
    }

    .team-card-header {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
    }

    .team-card img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid rgba(102, 126, 234, 0.2);
      background: linear-gradient(135deg, #e3f2fd, #f3e5f5);
    }

    .team-card-title h3 {
      font-size: 1.2rem;
      font-weight: 600;
      color: #2c3e50;
      margin-bottom: 0.3rem;
    }

    .team-card-title h4 {
      font-size: 1rem;
      font-weight: 500;
    }

    .team-card p {
      color: #5a6c7d;
      line-height: 1.7;
      font-size: 16px;
      margin-bottom: 1.5rem;
    }

    .team-card strong {
      color: #2c3e50;
    }
     .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
      gap: 35px;
      perspective: 1000px
    }

    .card {
      background: rgba(255, 255, 255, .95);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(102, 126, 234, .12);
      border-radius: 20px;
      padding: 36px;
      transition: all .4s;
      position: relative;
      overflow: hidden;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(102, 126, 234, .06)
    }

    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(100, 181, 246, .08), transparent);
      transition: left .6s
    }

    .card:hover::before {
      left: 100%
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 60px rgba(102, 126, 234, .12);
      border-color: var(--secondary)
    }

    .card-icon {
      width: 70px;
      height: 70px;
      background: linear-gradient(135deg, var(--secondary), var(--tertiary));
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 32px;
      color: #fff;
      margin-bottom: 18px;
      transition: transform .6s
    }

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

    .card h3 {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 10px
    }

    .card p {
      color: var(--text);
      line-height: 1.7;
      font-size: 15px
    }
    .contact-cards .contact-card {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(102, 126, 234, 0.1);
      padding: 0.5rem 1rem;
      border-radius: 8px;
      transition: all 0.3s ease;
      cursor: pointer;
      width: fit-content;
    }
    
    .team-card .contact-cards{
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .contact-card:hover {
      background: rgba(102, 126, 234, 0.2);
      transform: translateX(5px);
    }

    .contact-card a {
      text-decoration: none;
      color: #667eea;
      font-weight: 500;
      font-size: 0.9rem;
    }
    

    /*......OUR SERVICES......*/
    .service-section {
      padding: 80px 8%;
      display: flex;
      align-items: center;
      gap: 80px;
      opacity: 0;
      transform: translateY(40px);
      transition: all 1s ease;
    }

    .service-section.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .service-section:nth-child(even) {
      flex-direction: row-reverse;
      background: linear-gradient(135deg, #fafafa 0%, #f0f4f8 100%);
    }

    .service-section:nth-child(odd) {
      background: #fff;
    }

    .service-image {
      flex: 1;
      position: relative;
    }

    .service-image-card {
      background: #fff;
      padding: 30px;
      border-radius: 25px;
      box-shadow: 0 20px 60px rgba(102, 126, 234, 0.12);
      transition: all 0.4s ease;
    }

    .service-section:hover .service-image-card {
      transform: translateY(-10px);
      box-shadow: 0 30px 80px rgba(102, 126, 234, 0.2);
    }

    .service-image img {
      width: 100%;
      max-width: 450px;
      border-radius: 15px;
      display: block;
    }

    .service-content {
      flex: 1;
    }

    .service-content h2 {
      font-size: 38px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 25px;
      line-height: 1.3;
    }

    .service-content p {
      font-size: 17px;
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 30px;
    }

    .service-list {
      list-style: none;
      padding: 0;
    }

    .service-list li {
      font-size: 16px;
      color: var(--text);
      margin-bottom: 18px;
      position: relative;
      padding-left: 35px;
      line-height: 1.6;
      transition: all 0.3s ease;
    }

    .service-list li:hover {
      color: var(--dark);
      transform: translateX(5px);
    }

    .service-list li::before {
      content: '';
      position: absolute;
      left: 0;
      top: 4px;
      width: 22px;
      height: 22px;
      background: linear-gradient(135deg, var(--secondary), var(--tertiary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .service-list li::after {
      content: '✓';
      position: absolute;
      left: 6px;
      top: 2px;
      color: #fff;
      font-size: 14px;
      font-weight: 700;
    }

    /* ---------- VIEW MORE BUTTON ---------- */
    .view-more-btn {
      display: inline-block;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: #fff;
      padding: 12px 30px;
      border-radius: 50px;
      text-decoration: none;
      font-weight: 600;
      font-size: 16px;
      margin-top: 20px;
      transition: all 0.3s ease;
      box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
      border: none;
      cursor: pointer;
    }

    .view-more-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

    /* ---------- MODAL STYLES ---------- */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      z-index: 2000;
      opacity: 0;
      transition: opacity 0.3s ease;
      backdrop-filter: blur(5px);
    }

    .modal.active {
      display: flex;
      opacity: 1;
      align-items: center;
      justify-content: center;
    }

    .modal-content {
      background: #fff;
      border-radius: 20px;
      width: 90%;
      max-width: 900px;
      max-height: 90vh;
      overflow-y: auto;
      position: relative;
      transform: scale(0.7);
      transition: transform 0.3s ease;
      box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
    }

    .modal.active .modal-content {
      transform: scale(1);
    }

    .modal-header {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: #fff;
      padding: 30px;
      border-radius: 20px 20px 0 0;
      position: relative;
    }

    .modal-header h2 {
      font-size: 32px;
      font-weight: 700;
      margin: 0;
    }

    .close-modal {
      position: absolute;
      top: 25px;
      right: 25px;
      background: rgba(255, 255, 255, 0.2);
      border: none;
      color: #fff;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      font-size: 20px;
      cursor: pointer;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .close-modal:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: rotate(90deg);
    }

    .modal-body {
      padding: 40px;
    }

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

    .modal-section h3 {
      color: var(--dark);
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--secondary);
    }

    .modal-section p {
      color: var(--text);
      line-height: 1.8;
      margin-bottom: 15px;
    }

    .modal-list {
      list-style: none;
      padding: 0;
    }

    .modal-list li {
      padding: 12px 0;
      padding-left: 30px;
      position: relative;
      border-bottom: 1px solid #f0f0f0;
    }

    .modal-list li:last-child {
      border-bottom: none;
    }

    .modal-list li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--primary);
      font-size: 20px;
    }

    .value-proposition {
      background: linear-gradient(135deg, #f8f9ff, #f0f4ff);
      padding: 25px;
      border-radius: 15px;
      border-left: 4px solid var(--primary);
    }
     @media(max-width:968px) {
      .hero-content {
        flex-direction: column;
        text-align: center
      }

      .hero-text h1 {
        font-size: 42px
      }

      .hero-text p {
        text-align: center
      }

      .cards-grid {
        grid-template-columns: 1fr
      }

      .section-title {
        font-size: 36px
      }
      #contactForm .form-row{
        display: block;
      }
      #contactForm .form-row input:first-child{
        margin-bottom: 18px;
      }
      .service-section:nth-child(even) {
      flex-direction: column;
      background: linear-gradient(135deg, #fafafa 0%, #f0f4f8 100%);
    }
    .service-section:nth-child(odd) {
      background: #fff;
      flex-direction: column;
    }
    }

    @media(max-width:600px) {
      header.main-header {
        padding: 12px 5%
      }

      .hero {
        padding: 60px 5%
      }

      .hero-text h1 {
        font-size: 32px
      }

      .why-section {
        padding: 60px 5%
      }

      .footer-content {
        grid-template-columns: 1fr
      }
      .fas.fa-map-marker-alt{
        margin-bottom: 25px;
      }
    }

    
    /*.....CONTACTUS.....*/
     .contact-section {
      padding: 100px 8%;
      background: linear-gradient(135deg, #f5f7fa 0%, #e8eaf6 50%, #e0f2f1 100%);
    }

    .contact-wrapper {
      max-width: 1200px;
      margin: 0 auto;
    }

    .contact-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(6px);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(102, 126, 234, 0.12);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .contact-info-side {
      background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding: 60px 50px;
      color: #fff;
    }

    .contact-info-side h2 {
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 30px;
    }

    .info-block {
      margin-bottom: 30px;
    }

    .info-block h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .info-block i {
      font-size: 20px;
      opacity: 0.95;
    }

    .info-block p {
      font-size: 15px;
      line-height: 1.7;
      opacity: 0.95;
      margin-left: 30px;
    }

    .info-block a {
      color: #fff;
      text-decoration: none;
      transition: opacity 0.3s;
    }

    .info-block a:hover {
      opacity: 0.85;
    }

    .contact-form-side {
      padding: 60px 50px;
      background: transparent;
    }

    .contact-form-side h2 {
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 20px;
      color: var(--dark);
    }

    form {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

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

    input,
    textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid #e2e8f0;
      background: #f8f9fc;
      border-radius: 8px;
      font-size: 15px;
      font-family: 'Poppins', sans-serif;
      color: var(--dark);
      outline: none;
      transition: all 0.25s ease;
    }

    input:focus,
    textarea:focus {
      border-color: #667eea;
      background: #fff;
      box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.08);
    }

    textarea {
      min-height: 140px;
      resize: vertical;
    }

    button[type="submit"] {
      background: var(--btn-gradient);
      color: #fff;
      border: none;
      padding: 14px 34px;
      font-size: 16px;
      font-weight: 600;
      border-radius: 8px;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease;
      align-self: flex-start;
      box-shadow: 0 6px 18px rgba(102, 126, 234, 0.18);
      background: linear-gradient(135deg, var(--primary), var(--primary-dark))
    }

    button[type="submit"]:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 28px rgba(102, 126, 234, 0.22);
    }

    button[type="submit"]:disabled {
      cursor: not-allowed;
      opacity: 0.9;
      transform: none;
      box-shadow: none;
    }

    /* ---------- Map ---------- */
    .map-section {
      padding: 80px 8%;
      background: #fff;
    }

    .map-section h2 {
      text-align: center;
      font-size: 42px;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 36px;
      position: relative;
    }

    .map-section h2::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(90deg, var(--secondary), var(--tertiary));
      border-radius: 2px;
    }

    .map-container {
      max-width: 1200px;
      margin: 0 auto;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(102, 126, 234, 0.12);
      height: 450px;
    }

    .map-responsive {
      width: 100%;
      height: 0;
      padding-bottom: 56%;
      position: relative;
    }

    .map-responsive iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }
      @media(max-width:968px) {
      .hero-content {
        flex-direction: column;
        text-align: center
      }

      .hero-text h1 {
        font-size: 42px
      }

      .hero-text p {
        text-align: center
      }

      .cards-grid {
        grid-template-columns: 1fr
      }

      .section-title {
        font-size: 36px
      }
      #contactForm .form-row{
        display: block;
      }
      #contactForm .form-row input:first-child{
        margin-bottom: 18px;
      }
      .contact-section {
        padding: 40px 8%;
      }

      .contact-card{
        display: flex;
        flex-direction: column;
      }
    }

    @media(max-width:600px) {
      header.main-header {
        padding: 12px 5%
      }

      .hero {
        padding: 60px 5%
      }

      .hero-text h1 {
        font-size: 32px
      }

      .why-section {
        padding: 60px 5%
      }

      .footer-content {
        grid-template-columns: 1fr
      }
      .fas.fa-map-marker-alt{
        margin-bottom: 25px;
      }
    }

    @keyframes float {

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

      10% {
        opacity: .3
      }

      90% {
        opacity: .3
      }

      50% {
        transform: translateY(-100vh) translateX(50px)
      }
    }



        /* Footer */
        footer {
            padding: 80px 8% 30px;
            color: black;
            position: relative
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            margin-bottom: 50px
        }

        .footer-logo img {
           width: 220px;
    margin-bottom: 15px;
        }

        .footer-contact h3 {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 20px;
            color: black;
        }

        .footer-contact p {
            line-height: 2;
            color: black;
            display: flex;
            align-items: center;
            gap: 10px
        }

        .footer-contact a {
            color: black;
            text-decoration: none;
        }
        .footer-contact a:hover{
            color: #3498db;
        }
            
        

        .footer-bottom {
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px
        }

        .footer-bottom a {
            color: blue;
            text-decoration: none
        }

        /* Reveal */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all .8s ease
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0)
        }

        /* Responsive smaller screens */
        @media(max-width:968px) {
            .hero-content {
                flex-direction: column;
                text-align: center
            }

            .hero-text h1 {
                font-size: 42px
            }

            .hero-text p {
                text-align: center
            }

            .cards-grid {
                grid-template-columns: 1fr
            }

            .section-title {
                font-size: 36px
            }
        }

        @media(max-width:600px) {
            header.main-header {
                padding: 12px 5%
            }

            .hero {
                padding: 60px 5%
            }

            .hero-text h1 {
                font-size: 32px
            }

            .why-section {
                padding: 60px 5%
            }

            .footer-content {
                grid-template-columns: 1fr
            }    
            .fas.fa-map-marker-alt{
        margin-bottom: 3px;
      }
        }
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .last-section-content {
        padding: 0 1rem;
      }

      .last-section p {
        font-size: 0.85rem;
      }
    }

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

      .last-section p {
        font-size: 0.8rem;
      }
    }
        
