/* Products Section */
.products {
  padding: 80px 100px;
  background: #f8fafc;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.products h2 {
  font-size: 42px;
  color: #1e3a8a;
  margin-bottom: 20px;
}

.products-description {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #666;
  line-height: 1.8;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px);
}

/* Product Image (No Gradient) */
.product-image {
  width: 100%;
  height: 260px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* Product Info — fixed white area */
.product-info {
  background: #fff;
  padding: 20px 15px;
  text-align: center;
  min-height: 100px; /* ensures same height on all */
}

.product-info h3 {
  font-size: 22px;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.product-info a {
  color: #ec4899;
  text-decoration: none;
  font-weight: 600;
}

.product-info a:hover {
  text-decoration: underline;
}

/* ✅ Responsive Design */
@media (max-width: 992px) {
  .products {
    padding: 60px 50px;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .product-image {
    height: 240px;
  }
}

@media (max-width: 768px) {
  .products {
    padding: 50px 30px;
  }
  .products h2 {
    font-size: 32px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .product-image {
    height: 220px;
  }
  .product-info {
    min-height: 100px;
  }
  .product-info h3 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .products {
    padding: 40px 20px;
  }
  .products-description {
    font-size: 14px;
  }
  .product-info h3 {
    font-size: 18px;
  }
}



/* Moments Section */
.moments {
  padding: 80px 100px;
  background: #f8fafc;
}

.moments h2 {
  font-size: 42px;
  color: #1e3a8a;
  text-align: center;
  margin-bottom: 60px;
}

.moment-item {
  display: flex;
  align-items: center;
  gap: 60px;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.moment-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.moment-item:nth-child(even) {
  flex-direction: row-reverse;
}

/* Image Section */
.moment-image {
  flex: 1;
  height: 300px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.moment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.moment-item:hover .moment-image img {
  transform: scale(1.05);
}

/* Content Section */
.moment-content {
  flex: 1;
}

.moment-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.8;
}

/* Responsive Design */
@media (max-width: 992px) {
  .moments {
    padding: 60px 50px;
  }

  .moment-item {
    gap: 40px;
  }

  .moment-image {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .moments {
    padding: 50px 30px;
  }

  .moment-item {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .moment-item:nth-child(even) {
    flex-direction: column;
  }

  .moment-image {
    width: 100%;
    height: 240px;
  }

  .moment-content p {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .moments {
    padding: 40px 20px;
  }

  .moments h2 {
    font-size: 28px;
  }

  .moment-image {
    height: 220px;
  }

  .moment-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}
  /* Hero Section */
        .hero {
           
            height: 50vh;
            background: linear-gradient(rgba(8, 47, 73, 0.7), rgba(8, 47, 73, 0.7)), url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23082f49" width="1200" height="600"/></svg>');
            background-size: cover;
            background-position: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: white;
            text-align: center;
            position: relative;
        }

        .hero h1 {
            font-size: 56px;
            color:#fff;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 18px;
            color:#fff;
            max-width: 600px;
            line-height: 1.6;
        }

        .rainbow-wave {
            position: absolute;
            bottom: -2px;
            width: 100%;
            height: 60px;
            background: linear-gradient(90deg, 
                #ec4899 0%, 
                #f59e0b 20%, 
                #10b981 40%, 
                #3b82f6 60%, 
                #8b5cf6 80%, 
                #ec4899 100%);
            clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
        }

        /* Contact Section */
        .gudiacontact-section {
       padding:80px;
            background: #f9fafb;
        }

        .gudiacontact-container {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .gudiacontact-info h2 {
            font-size: 42px !important;
            color: #000;
            margin-bottom: 10px;
        }

        .gudiacontact-info h3 {
            font-size: 42px;
            color: #1e3a8a;
            margin-bottom: 40px;
        }

        .gudiainfo-item {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 30px;
        }

        .gudiainfo-icon {
            width: 50px;
            height: 50px;
            background: #dbeafe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: #1e3a8a;
            flex-shrink: 0;
        }

        .gudiainfo-content h4 {
            font-size: 18px;
            color: #1e3a8a;
            margin-bottom: 5px;
        }

        .gudiainfo-content p {
            color: #666;
            line-height: 1.5;
        }

        /* Contact Form */
        .gudiacontact-form {
            background: white;
            padding: 50px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }

        .gudiaform-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .gudiaform-group {
            margin-bottom: 20px;
        }

        .gudiaform-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
        }

        .gudiaform-group input,
        .gudiaform-group select,
        .gudiaform-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            background: #f9fafb;
        }

        .gudiaform-group textarea {
            resize: vertical;
            min-height: 150px;
        }

        .gudiaform-group select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 15px center;
            padding-right: 40px;
        }

        .gudiasubmit-btn {
            background: #1e3a8a;
            color: white;
            padding: 15px 40px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: background 0.3s;
        }

        .gudiasubmit-btn:hover {
            background: #1e40af;
        }

        /* Map Section */
        .map-section {
            padding: 80px 100px;
            background: white;
        }

        .map-section h2 {
            font-size: 42px;
            color: #000;
            text-align: center;
            margin-bottom: 40px;
        }

        .map-container {
            width: 100%;
            height: 400px;
            background: #e5e7eb;
            border-radius: 15px;
            overflow: hidden;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

      

        /* Mobile Responsive */
        @media (max-width: 768px) {
         

            .hero {
                height: 100vh;
            }

            .hero h1 {
                font-size: 36px;
            }

            .hero p {
                font-size: 16px;
                padding: 0 20px;
            }

            .gudiacontact-section {
                padding: 40px 20px;
            }

            .gudiacontact-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .gudiacontact-form {
                padding: 30px 20px;
            }

            .gudiaform-row {
                grid-template-columns: 1fr;
            }

            .map-section {
                padding: 40px 20px;
            }

            .map-section h2 {
                font-size: 32px;
            }

        
        }

           .gfeature-icon{
            font-size:48px;
            margin-bottom:20px;
            

        }
     
 .gudia-grow-section {
    padding: 80px 100px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
  }

  .gudia-grow-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: white;
  }

  .gudia-grow-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }

  .gudia-grow-info {
    color: white;
  }

  .gudia-grow-subtitle {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
  }

  .gudia-grow-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
    color: white;
  }

  .gudia-grow-benefits {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
    color: white;
  }

  .gudia-grow-benefits li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: white;
  }

  .gudia-grow-benefits li:before {
    content: "★";
    position: absolute;
    left: 0;
    color: #fbbf24;
  }

  .gudia-grow-btn {
    background: white;
    color: #1e3a8a;
    padding: 15px 35px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease;
  }

  .gudia-grow-btn:hover {
    background: #fbbf24;
    color: #1e3a8a;
  }

  .gudia-grow-image {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
  }

  .gudia-grow-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 20px;
  }

  /* Responsive Design */
  @media (max-width: 1024px) {
    .gudia-grow-section {
      padding: 60px 60px;
    }

    .gudia-grow-title {
      font-size: 36px;
    }

    .gudia-grow-content {
      gap: 40px;
    }

    .gudia-grow-subtitle {
      font-size: 28px;
    }

    .gudia-grow-description {
      font-size: 16px;
    }
  }

  @media (max-width: 768px) {
    .gudia-grow-section {
      padding: 50px 30px;
    }

    .gudia-grow-content {
      grid-template-columns: 1fr;
      text-align: left;
    }

    .gudia-grow-info {
      order: 1; /* text first */
      color: white;
    }

    .gudia-grow-image {
      order: 2; /* image after text */
      height: 300px;
    }

    .gudia-grow-subtitle {
      font-size: 26px;
      color: white;
    }

    .gudia-grow-description {
      font-size: 15px;
      color: white;
    }

    .gudia-grow-btn {
      font-size: 15px;
      padding: 12px 25px;
    }
  }

  @media (max-width: 480px) {
    .gudia-grow-section {
      padding: 40px 20px;
    }

    .gudia-grow-title {
      font-size: 28px;
      margin-bottom: 40px;
      color: white;
    }

    .gudia-grow-subtitle {
      font-size: 22px;
      color: white;
    }

    .gudia-grow-description {
      font-size: 14px;
      line-height: 1.6;
      color: white;
    }

    .gudia-grow-image {
      height: 250px;
    }

    .gudia-grow-btn {
      padding: 10px 20px;
      font-size: 14px;
    }
  }    


         @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-20px); }
            60% { transform: translateY(-10px); }
        }

        /* Stats Section */
        .stats {
            display: flex;
            justify-content: space-around;
            padding: 60px 100px;
            background: white;
            text-align: center;
        }

        .stat-item {
            flex: 1;
        }

        .stat-number {
            font-size: 48px;
            font-weight: bold;
            color: #1e3a8a;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 18px;
            color: #666;
        }

        .stars {
            color: #fbbf24;
            font-size: 24px;
            margin-bottom: 10px;
        }
  .brand-slider {
    overflow: hidden;
   
    position: relative;
 
    padding: 20px 0;
  }

  .slider-track {
    display: flex;
    width: calc(250px * 14); /* adjust based on number of slides */
    animation: scroll 25s linear infinite;
  }

  .slide {
    width: 100%;
    flex-shrink: 0;
    display: flex;
    height: fit-content;
    justify-content: center;
    align-items: center;
    padding: 10px;
  }

  .slide img {
    max-width: 100%;
    max-height: fit-content ;
    object-fit: contain;
    filter: grayscale(0%); /* make them subtle */
    transition: filter 0.3s;
  }

  .slide img:hover {
    filter: grayscale(0%); /* highlight on hover */
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* Responsive */
  @media (max-width: 768px) {
    .slide { width: 70%; }
    .slide img { max-width: auto; }
  }

  @media (max-width: 480px) {
    .slide { width: 50%; }
    .slide img { max-width: auto; }
  }
     .hero {
            margin-top: 0;
            padding: 220px 60px;
            background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.pexels.com/photos/3863431/pexels-photo-3863431.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            text-align: center;
        }

        .hero h1 {
            font-size: 56px;
            color: #ffffff;
            margin-bottom: 20px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            font-weight: bold;
        }

        .hero p {
            font-size: 18px;
            color: #f0f0f0;
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .cta-btn {
            background: #1e3a8a;
            color: white;
            padding: 15px 40px;
            border-radius: 8px;
            border: none;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.3s, background-color 0.3s;
        }

        .cta-btn:hover {
            transform: scale(1.05);
            background-color: #1e40af;
        }

        /* Numbers Section */
        .numbers-section {
            padding: 120px 60px;
            background: white;
        }

        .numbers-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .numbers-content {
            max-width: 500px;
        }

        .numbers-content h2 {
            font-size: 42px;
            color: #1e3a8a;
            margin-bottom: 20px;
        }

        .numbers-content p {
            color: #666;
            line-height: 1.6;
        }

        .numbers-display {
            text-align: center;
        }

        .big-number {
            font-size: 120px;
            font-weight: bold;
            color: #1e3a8a;
        }

        .number-label {
            font-size: 18px;
            color: #666;
            margin-top: 0;
        }

        /* Support Section */
        .support-section {
            padding: 100px 60px;
            background: #f8f9fa;
            text-align: center;
        }

        .support-section h2 {
            font-size: 42px;
            color: #1e3a8a;
            margin-bottom: 20px;
        }

        .support-section > p {
            color: #666;
            max-width: 800px;
            margin: 0 auto 60px;
            line-height: 1.6;
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .support-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }
        
        .support-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.12);
        }

        .support-icon {
            font-size: 48px;
            margin-bottom: 20px;
        }

        .support-card h3 {
            font-size: 22px;
            color: #1e3a8a;
        }

        /* Partnership Section */
        .partnership-section {
            padding: 100px 60px;
            background: linear-gradient(to bottom, #e0e7ff, #f0f4ff);
            text-align: center;
        }

        .partnership-section h2 {
            font-size: 42px;
            color: #1e3a8a;
            margin-bottom: 20px;
        }

        .partnership-section p {
            color: #666;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Form Section */
        .form-section {
            padding: 100px 60px;
            background: white;
        }

        .form-container {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
            transition: opacity 0.3s ease-out;
        }

        .form-header h2 {
            font-size: 42px;
            color: #1e3a8a;
            margin-bottom: 20px;
        }

        .typing-text {
            color: #666;
            line-height: 1.6;
            border-left: 3px solid #ef4444;
            padding-left: 20px;
            min-height: 60px;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: opacity 0.3s ease-out;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #333;
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 1px solid #e5e7eb;
            border-radius: 8px;
            font-size: 16px;
            font-family: inherit;
            background: #f9fafb;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e3a8a;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            background: #1e3a8a;
            color: white;
            padding: 15px;
            border-radius: 8px;
            border: none;
            cursor: pointer;
            font-size: 16px;
            font-weight: 600;
            transition: background 0.3s;
        }

        .submit-btn:hover {
            background: #1e40af;
        }

        .submit-btn:disabled {
            background: #94a3b8;
            cursor: not-allowed;
        }

        /* Thank You Message */
        .thank-you-message {
            display: none;
            background: #ffffff;
            padding: 80px 40px;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
        }

        .thank-you-message.visible {
            display: block;
        }

        .thank-you-check-icon {
            display: inline-block;
            width: 70px;
            height: 70px;
            background-color: #1e3a8a;
            border-radius: 50%;
            color: white;
            font-size: 40px;
            line-height: 70px;
            margin-bottom: 30px;
            transform: scale(0);
        }
        
        .thank-you-message.visible .thank-you-check-icon {
            animation: popIn 0.5s ease-out forwards;
        }

        @keyframes popIn {
            0% { transform: scale(0); }
            50% { transform: scale(1.2); }
            100% { transform: scale(1); }
        }

        .thank-you-message h3 {
            font-size: 36px;
            font-weight: bold;
            color: #1e3a8a;
            margin-bottom: 15px;
        }

        .thank-you-message p {
            color: #888;
            font-size: 16px;
            line-height: 1.6;
        }

        /* Partners Section */
        .partners-section {
            padding: 60px 0;
            background: #e5e7eb;
            overflow: hidden;
        }

        .partners-section h2 {
            font-size: 32px;
            color: #1e3a8a;
            text-align: center;
            margin-bottom: 40px;
        }

        .partners-slider {
            display: flex;
            gap: 200px;
            animation: scrollPartners 30s linear infinite;
        }

        @keyframes scrollPartners {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        .partner-logo {
            width: 80px;
            height: 80px;
            background: #1e3a8a;
            transform: rotate(45deg);
            flex-shrink: 0;
        }

     
        /* Mobile Responsive */
        @media (max-width: 768px) {
          

            .hero {
                padding: 120px 20px;
            }

            .hero h1 {
                font-size: 36px;
            }

            .numbers-section,
            .support-section,
            .partnership-section,
            .form-section {
                padding: 60px 20px;
            }

            .numbers-container {
                flex-direction: column;
            }

            .big-number {
                font-size: 80px;
            }

            .support-grid {
                grid-template-columns: 1fr;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

        
        }