﻿ :root {
      --primary-blue: #0072CE;
      --accent-cyan: #00A3E0;
      --dark-navy: #0B1B3D;
      --text-gray: #556070;
      --light-bg: #F0F8FF;
      --white: #FFFFFF;
      --text-main: #2d3748;
            --text-muted: #718096;
            --jeera-color: #723e0c;
            --sprime-color: #63ab00;
            --mango-color: #ff9800;
            --orange-color: #ff5722;
            --lime-color: #4caf50;
            --soda-color: #0d47a1;
             --text-dark: #1e293b;
      --green-accent: #50B848;
      --orange-accent: #FF8200;
      --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      color: var(--dark-navy);
      background-color: var(--light-bg);
      overflow-x: hidden;
      }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    .container {
      max-width: 90%;
      margin: 0 auto;
      padding: 0 20px;
    }
    /* ==========================================================================
       CREATIVE NAVBAR
       ========================================================================== */
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      box-shadow: 0 4px 20px rgba(0, 114, 206, 0.08);
      transition: var(--transition);
    }

    .header.scrolled {
      padding: 5px 0;
      background: rgba(255, 255, 255, 0.95);
    }

    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      height: 80px;
    }

      .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo img {
          height:65px;
        }
 .logo-text {
      font-size: 1.8rem;
      font-weight: 900;
      color: var(--primary-blue);
      letter-spacing: -0.5px;
    }
    .nav-menu {
      display: flex;
      align-items: center;
      gap: 25px;
    }

    .nav-link {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--dark-navy);
      position: relative;
      padding: 8px 0;
      transition: var(--transition);
    }

    .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0%;
      height: 3px;
      background: linear-gradient(90deg, var( --green-accent), var(--accent-cyan));
      border-radius: 2px;
      transition: var(--transition);
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .nav-link.active {
      color: var(--primary-blue);
    }
    .btn-touch {
      border: 2px solid var(--primary-blue);
      color: var(--primary-blue);
      padding: 10px 22px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.85rem;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: var(--transition);
    }

    .btn-touch:hover {
      background: var(--primary-blue);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0, 114, 206, 0.3);
    }

    .hamburger {
      display: none;
      cursor: pointer;
      font-size: 1.5rem;
      color: var(--dark-navy);
    }


/* ==========================================================================
     . FOOTER
       ========================================================================== */
    .footer {
      background: #061126;
      color: var(--white);
      padding-top: 70px;
      padding-bottom: 20px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      padding-bottom: 50px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-col h4 {
      font-size: 1rem;
      margin-bottom: 20px;
      position: relative;
    }

    .footer-col ul li {
      margin-bottom: 10px;
    }

    .footer-col ul li a {
      color: rgba(255,255,255,0.6);
      font-size: 0.85rem;
      transition: var(--transition);
    }

    .footer-col ul li a:hover {
      color: var(--accent-cyan);
      padding-left: 5px;
    }

    .contact-info li {
      display: flex;
      gap: 10px;
      font-size: 0.85rem;
      color: rgba(255,255,255,0.6);
      margin-bottom: 12px;
    }

    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 15px;
    }

    .social-icon {
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      transition: var(--transition);
    }

    .social-icon:hover {
      background: var(--primary-blue);
      transform: translateY(-3px);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 25px;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
    }

    /* ==========================================================================
      RESPONSIVE MEDIA QUERIES
       ========================================================================== */
    @media (max-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
      }

      .nav-menu.active {
        left: 0;
      }
      
}

    @media (max-width: 480px) {
      .features-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

    }
    
    /*======HOME======*/
 
    /* Hero Container Setup */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: center;
      padding: 0 8%;
      overflow: hidden;
    }

    /* Video Background */
    .hero-video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: 0;
      transform: translate(-50%, -50%);
      object-fit: cover;
      
    }

    /* Gradient Overlay for Optimal Text Readability */
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(
        90deg, 
        rgba(255, 255, 255, 0.85) 0%, 
        rgba(255, 255, 255, 0.4) 45%, 
        rgba(255, 255, 255, 0) 100%
      );
      z-index: 1;
    }

    /* Content Area */
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 580px;
      color: #0f172a;
    }

    /* Fade-In Keyframe Animation */
    @keyframes fadeIn {
      0% {
        opacity: 0;
        transform: translateY(18px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Fade-In Utility Classes */
    .animate-fade {
      opacity: 0;
      animation: fadeIn 0.8s ease-out forwards;
    }

    .delay-1 { animation-delay: 0.15s; }
    .delay-2 { animation-delay: 0.4s; }
    .delay-3 { animation-delay: 0.65s; }
    .delay-4 { animation-delay: 0.9s; }

    /* Typography */
    .hero-title {
      font-size: 52px;
      font-weight: 900;
      color: #0284c7;
      line-height: 1.15;
      margin-bottom: 16px;
      text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
    }

    .hero-subtitle {
      font-size: 20px;
      font-weight: 700;
      color: #0c4a6e;
      line-height: 1.4;
      margin-bottom: 10px;
    }

    .hero-tagline {
      font-size: 16px;
      font-weight: 600;
      color: #334155;
      margin-bottom: 30px;
    }

    /* Button Styling */
    .btn-explore {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background-color: #0284c7;
      color: #ffffff;
      padding: 14px 32px;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(2, 132, 199, 0.35);
      transition: all 0.3s ease;
    }

    .btn-explore:hover {
      background-color: #0369a1;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(2, 132, 199, 0.5);
    }

    .btn-explore i {
      transition: transform 0.3s ease;
    }

    .btn-explore:hover i {
      transform: translateX(5px);
    }

  
      /*     ABOUT SECTION      */
    .about {
      padding: 80px 0;
     }

    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
    }
.about-content p {
      color: var(--text-gray);
      margin-top: 15px;
      line-height: 1.7;
      font-size: 0.95rem;
    }

    .about-features {
      display: flex;
      gap: 20px;
      margin-top: 35px;
    }

    .feature-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 700;
      font-size: 0.85rem;
      color: var(--dark-navy);
    }

    .feature-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--light-bg);
      color: var(--primary-blue);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
    }


    .about-image {
      position: relative;
      text-align: center;
      margin-left:80px;
    }

    .about-img 
    {
      width: 100%;
      max-width: 450px;
      height:450px;
      border-radius: 50%;
      border: 8px solid #f0f9ff;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        animation: float 4s ease-in-out infinite;
   
    }
     @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-12px); }
    }
    
    .section-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 0.85rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--primary-blue);
      margin-bottom: 10px;
    }

    .section-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--dark-navy);
      line-height: 1.2;
    }
    /*Products*/
    .products{
      padding: 80px 0;
        text-align: center;
    }
.product-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 12px;
      margin-top: 50px;
    }

    .product1 {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 12px;
      cursor: pointer;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .product1:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    }
      @media (max-width: 768px) {
      .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 Columns on Tablet */
      }
      
       .about-image 
        {
            margin-left:10px;
        }
     
    }

    @media (max-width: 480px) {
      .product-grid {
        grid-template-columns: 1fr; /* Single column layout on mobile */
       
      } 
.btn-touch
{
    display:none;
}
     .product1 {
        height: 200px;
      }
 
 
    }

    /* ==========================================================================
       WHY CHOOSE US / FEATURES
       ========================================================================== */
    .features-sec {
      padding: 80px 0;
        text-align: center;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 20px;
      margin-top: 50px;
    }

    .feature-box {
      background: #F9FCFF;
      border: 1px solid #E6F0FA;
      padding: 25px 15px;
      border-radius: 16px;
      transition: var(--transition);
    }

    .feature-box:hover {
      background: var(--white);
      box-shadow: 0 10px 25px rgba(0,114,206,0.1);
      transform: translateY(-5px);
    }

    .f-icon-wrap {
      width: 50px;
      height: 50px;
      background: var(--light-bg);
      color: var(--primary-blue);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px;
      font-size: 1.2rem;
    }

    .f-title {
      font-size: 0.9rem;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .f-desc {
      font-size: 0.75rem;
      color: var(--text-gray);
      line-height: 1.4;
    }
    /* Stats*/
    .stats-banner {
      background: linear-gradient(135deg, #0072CE, #004A8B);
      color: var(--white);
      padding: 40px 0;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      text-align: center;
      gap: 20px;
    }

    .stat-item {
      border-right: 1px solid rgba(255,255,255,0.2);
    }

    .stat-item:last-child {
      border-right: none;
    }

    .stat-number {
      font-size: 2.2rem;
      font-weight: 800;
    }

    .stat-label {
      font-size: 0.85rem;
      opacity: 0.85;
      margin-top: 5px;
    }


/*-----Responsive------*/
 @media (max-width: 1024px) {
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .hamburger {
        display: block;
      }

      .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 40px;
        transition: var(--transition);
      }

      .nav-menu.active {
        left: 0;
      }

      .hero-grid, .about-grid, .cta-flex {
        grid-template-columns: 1fr;
        text-align: center;
      }

      .cta-flex {
        flex-direction: column;
      }

      .hero-title-main {
        font-size: 3.5rem;
      }

      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
      }

      .stat-item {
        border-right: none;
      }

      .carousel-btn {
        display: none;
      }
    }

    @media (max-width: 480px) {
      .features-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-title-main {
        font-size: 2.8rem;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }
    }
    /*=========----About us page-----======*/
    
    .ahero-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      margin-bottom: 50px;
    }

    .ahero-content {
      flex: 1;
    }

    .subtitle {
      color: var(--primary-blue); /* Teal Accent */
      font-weight: 700;
      font-size: 0.85rem;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .main-title {
      color: var(--dark-navy);
      font-size: 2.25rem;
      font-weight: 800;
      line-height: 1.25;
      margin-bottom: 20px;
    }

    .description {
      color: #64748b;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .description p {
      margin-bottom: 12px;
    }

    .ahero-image-wrapper {
      flex: 1;
      display: flex;
      justify-content: flex-end;
    }

    .ahero-image-wrapper img {
      width: 100%;
      max-width: 550px;
      height: 350px;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    }

     /* --- MISSION, VISION, CORE VALUES --- */
        .values-section {
            background-color: var(--light-bg);
            padding: 60px 6%;
        }

        .values-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1.8fr;
            gap: 25px;
        }

        .info-card {
            background: var(--white);
            padding: 30px 25px;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .info-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        }

        .card-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .card-header i {
            font-size: 28px;
            color: var(--primary-blue);
        }

        .card-header h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark-blue);
            text-transform: uppercase;
        }

        .info-card p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        .core-values-card {
            background: var(--white);
            padding: 30px 25px;
            border-radius: 16px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
        }

        .values-icons-row {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 10px;
            margin-top: 25px;
            text-align: center;
        }

        .val-item i {
            font-size: 26px;
            color: var(--dark-blue);
            margin-bottom: 8px;
            display: block;
            transition: transform 0.3s;
        }

        .val-item:hover i {
            transform: scale(1.15);
            color: var(--primary-blue);
        }

        .val-item span {
            font-size: 11px;
            font-weight: 600;
            color: var(--dark-blue);
            display: block;
        }
        
     /* --- RESPONSIVE / MOBILE STYLES --- */
    @media (max-width: 992px) {
      .ahero-section {
        flex-direction: column;
        gap: 30px;
      }
      .ahero-image-wrapper img {
        max-width: 100%;
        height: auto;
      }
        .values-grid {
                grid-template-columns: 1fr;
            }
              .values-icons-row {
                grid-template-columns: repeat(3, 1fr);
            }
    }

    @media (max-width: 576px) {
      .about-us-container {
        padding: 20px 16px;
      }

      .main-title {
        font-size: 1.75rem;
      }

     
    }

    /*=====-----Products-----======*/
    
        /* --- HERO SECTION --- */
        .ahero {
            position: relative;
            margin-top:80px;
            text-align: center;
            padding: 60px 20px 40px;
            background: radial-gradient(circle at center, #e3f2fd 0%, #ffffff 80%);
            overflow: hidden;
        }

        .ahero h1 {
            font-size: 52px;
            font-weight: 800;
            color:  #0072CE;
            margin-bottom: 15px;
            animation: fadeInDown 1s ease;
        }

        .ahero p {
            max-width: 550px;
            margin: 0 auto;
            color:#556070;
            font-size: 15px;
            line-height: 1.6;
            animation: fadeInUp 1s ease 0.2s backwards;
        }

        /* Float decoration accents */
        .decoration {
            position: absolute;
            pointer-events: none;
            opacity: 0.8;
        }
        .lime-slice { top: 10%; left: 5%; width: 90px; animation: float 6s ease-in-out infinite; }
        .ice-cubes { top: 15%; right: 6%; width: 110px; animation: float 8s ease-in-out infinite reverse; }

        /* --- PRODUCTS GRID --- */
        .products-container {
            max-width: 1200px;
            margin: 20px auto 60px;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .card {
            background: #ffffff;
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            overflow: hidden;
            animation: fadeInUp 0.8s ease backwards;
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 18px 35px rgba(0,0,0,0.12);
        }

        .card-img-wrapper {
            position: relative;
            width: 100%;
            height: 250px;
            border-radius: 15px;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .card-img-wrapper img {
            max-height: 100%;
            width: auto;
            object-fit: contain;
            transition: transform 0.5s ease;
        }

        .card:hover .card-img-wrapper img {
            transform: scale(1.05);
        }

        .card-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .features-list {
            list-style: none;
            margin-bottom: 20px;
        }

        .features-list li {
            font-size: 13px;
            color: #4a5568;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .divider {
            height: 1px;
            border-top: 1px dashed #e2e8f0;
            margin: 15px 0;
        }

        .section-label {
            font-size: 12px;
            font-weight: 700;
            color: #2d3748;
            margin-bottom: 8px;
        }

        .size-tags {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .size-btn {
            border: 1px solid #cbd5e0;
            background: transparent;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.2s;
        }

        .size-btn.active, .size-btn:hover {
            background: #2d3748;
            color: #fff;
            border-color: #2d3748;
        }
       /* --- INDIVIDUAL FLAVOR STYLES --- */
        /* Jeera */
        .jeera .card-title { color: var(--jeera-color); }
        .jeera .features-list i { color: var(--jeera-color); }
        .jeera-bg { background: linear-gradient(180deg, #fcefe3 0%, #ffffff 100%); }

        /* Sprime */
        .sprime .card-title { color: var(--sprime-color); }
         .sprime .features-list i { color: var(--sprime-color); }
        .sprime-bg { background: linear-gradient(180deg, #f2fbe0 0%, #ffffff 100%); }

        /* Mango */
        .mango .card-title { color: var(--mango-color); }
          .mango .features-list i { color: var(--mango-color); }
        .mango-bg { background: linear-gradient(180deg, #fff5e6 0%, #ffffff 100%); }

        /* Orange */
        .orange .card-title { color: var(--orange-color); }
        .orange .features-list i { color: var(--orange-color); }
        .orange-bg { background: linear-gradient(180deg, #ffefe8 0%, #ffffff 100%); }

        /* Lime */
        .lime .card-title { color: var(--lime-color); }
         .lime .features-list i { color: var(--lime-color); }
        .lime-bg { background: linear-gradient(180deg, #ebfbee 0%, #ffffff 100%); }

        /* Soda */
        .soda .card-title { color: var(--soda-color); }
        .soda .features-list i { color: var(--soda-color); }
        .soda-bg { background: linear-gradient(180deg, #e3f2fd 0%, #ffffff 100%); }



        /* --- ANIMATIONS --- */
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(5deg); }
        }

        @keyframes fadeInDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
          /* --- RESPONSIVE MEDIA QUERIES --- */
        @media (max-width: 992px) {
            .products-container {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
           
            .ahero h1 {
                font-size: 36px;
            }

            .products-container {
                grid-template-columns: 1fr;
            }

           
        }
        
        
        
        /*======-Contact=======*/
          .contact-main-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .contact-card {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }

  .card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 28px;
  }

  .card-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin: 0;
  }

  .leaf-icon {
    font-size: 1.2rem;
  }

  /* Info Card Styles */
  .info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
  }

  .icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--light-bg);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, color 0.3s ease;
  }

  .info-item:hover .icon-circle {
    background-color: var(--primary-blue);
    color: #ffffff;
  }

  .info-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-navy);
    margin: 0 0 4px 0;
  }

  .info-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
  }

  .info-content a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
  }

  .info-content a:hover {
    color: var(--primary-blue);
  }

  /* Form Card Styles */
  .message-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .form-row.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .form-group {
    width: 100%;
  }

  .message-form input,
  .message-form select,
  .message-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background-color: #ffffff;
    font-size: 0.92rem;
    color: var(--text-dark);
    outline: none;
    box-sizing: border-box;
    transition: #e2e8f0 0.2s, box-shadow 0.2s;
  }

  .message-form input::placeholder,
  .message-form textarea::placeholder {
    color: #a0aec0;
  }

  .message-form select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23a0aec0' 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 14px center;
    background-size: 16px;
  }

  .message-form select:invalid {
    color: #a0aec0;
  }

  .message-form input:focus,
  .message-form select:focus,
  .message-form textarea:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 115, 234, 0.12);
  }

  .submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--primary-blue);
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    align-self: center;
    margin-top: 8px;
    transition: background-color 0.2s, transform 0.1s;
    width: fit-content;
    min-width: 180px;
  }

  .submit-btn:hover {
    background-color: var(--accent-green);
    transform: translateY(-1px);
  }

  .submit-btn:active {
    transform: translateY(0);
  }
  .TDLabel
{
    text-align: right;
    font-family: 'Ubuntu',Verdana,Tahoma;
    font-weight: bold;
    font-size: 10pt;
    text-transform: capitalize;
    color: #333;
}
.Textbox
{
    padding: 6px;
    border: 1px solid #333333;
    background: #fff;
    font-family: Verdana,Tahoma;
    font-size: 10pt;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.Button
{
    border: 1px solid #003366;
    padding: 10px;
    color: #FFFFFF;
    font-family: Verdana,Tahoma;
    font-size: 15px;
    background-color: #0099CC;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    border-radius: 10px;
}
.Button:hover
{
    border: 1px solid #003366;
    padding: 10px;
    color: #003366;
    font-family: Verdana,Tahoma;
    font-size: 15px;
    background-color: #66CCFF;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    border-radius: 10px;
}
  /* Responsive Adjustments */
  @media (max-width: 868px) {
    .contact-main-container {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 576px) {
    .contact-card {
      padding: 20px;
    }

    .form-row.two-col {
      grid-template-columns: 1fr;
    }

    .submit-btn {
      width: 100%;
    }
  }
