.intro-section {
  padding: 80px 10%;
  background: linear-gradient(135deg, #f5f9ff, #e3efff);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1.5s ease-in-out;
}

.intro-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
}

.intro-image {
  flex: 1 1 250px;
  text-align: center;
}

.intro-image img {
  width: 100%;
  height: 100%;
  border-radius: 100%;

  box-shadow: 0 8px 20px rgba(0, 114, 255, 0.2);
  animation: float 3s ease-in-out infinite;
}

.intro-content {
  flex: 2 1 400px;
  text-align: left;
}

.intro-title {
  font-size: 2rem;
  color: #002d62;
  margin-bottom: 15px;
}

.intro-title span {
  color: #0072ff;
  font-weight: 700;
}

.intro-tagline {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 15px;
  font-style: italic;
}

.intro-description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.intro-btn {
  display: inline-block;
  background: #0072ff;
  color: #fff;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.intro-btn:hover {
  background: #004bbd;
  box-shadow: 0 4px 10px rgba(0, 114, 255, 0.3);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ðŸ”§ Responsive Design - Reduced Gap for Mobile */
@media (max-width: 768px) {
  .intro-section {
    padding: 50px 6%;
  }
  .intro-container {
    flex-direction: column;
    text-align: center;
    gap: 15px; /* reduced gap between image and content */
  }
  .intro-image img {
    width: 100%;
    height: 100%;
    margin-bottom: 10px;
  }
  .intro-content {
    text-align: center;
    margin-top: 0;
  }
  .intro-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .intro-tagline {
    font-size: 1rem;
  }
  .intro-description {
    font-size: 0.95rem;
  }
}

 /* CLICKABLE BOX STYLES - prefixed with .home2services */

.home2services-section {
  padding: 22px;
  max-width: 1200px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  text-align: center;
}

.home2services-title {
  font-size: 1.4rem;
  color: #2b2b2b;
  margin-bottom: 16px;
  font-weight: 600;
}

/* grid container - all in one row on large screens */
.home2services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* clickable card */
.home2services-card {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #222;
  background: linear-gradient(180deg, #ffffff, #fafafe);
  border: 1px solid rgba(36, 36, 36, 0.06);
  border-radius: 10px;
  padding: 10px 14px;
  box-shadow: 0 4px 12px rgba(31,41,55,0.04);
  transition: all 0.3s ease;
  width: 180px;
  justify-content: flex-start;
}

/* hover / focus styles */
.home2services-card:hover,
.home2services-card:focus {
  transform: translateY(-5px);
  border-color: rgba(43,156,255,0.18);
  box-shadow: 0 8px 24px rgba(43,156,255,0.12);
}

/* icon */
.home2services-icon {
  flex: 0 0 46px;
  height: 46px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff, #f3f8ff);
  transition: transform 0.3s ease;
}

.home2services-card:hover .home2services-icon {
  transform: scale(1.08);
}

/* name text */
.home2services-name {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}

/* responsive layout */
@media (max-width: 900px) {
  .home2services-card {
    width: 45%;
  }
}
@media (max-width: 480px) {
  .home2services-card {
    width: 100%;
    justify-content: flex-start;
  }
}

.planselect-section {
  text-align: center;
  padding: 40px 20px;
  background: #f5f8ff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 40px auto;
}

.planselect-section h2 {
  color: #004aad;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.planselect-section p {
  color: #555;
  font-size: 1rem;
  margin-bottom: 20px;
}

.planselect-box select {
  width: 80%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #004aad;
  background: #fff;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}

.planselect-box select:hover {
  background: #eaf1ff;
}


 .addpdf-container {
      max-width: 900px;
      margin: 18px auto;
      font-family: Arial, sans-serif;
      color: #111;
      border: 1px solid #ddd;
      padding: 18px;
      border-radius: 6px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.03);
      background: #fff;
    }

    .addpdf-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .addpdf-full {
      grid-column: 1 / -1;
    }

    .addpdf-field label {
      display: block;
      font-size: 13px;
      margin-bottom: 6px;
      font-weight: 600;
    }

    .addpdf-field input[type="text"],
    .addpdf-field input[type="email"],
    .addpdf-field input[type="number"],
    .addpdf-field select,
    .addpdf-field textarea,
    .addpdf-field input[type="date"] {
      width: 100%;
      padding: 8px 10px;
      border-radius: 4px;
      border: 1px solid #cfcfcf;
      font-size: 14px;
      box-sizing: border-box;
    }

    .addpdf-actions {
      display:flex;
      gap:10px;
      justify-content:flex-end;
      margin-top:12px;
    }

    .addpdf-btn {
      padding: 10px 14px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      font-weight: 700;
    }

    .addpdf-btn-calc { background:#f0f0f0; }
    .addpdf-btn-download { background:#007bff;color:#fff; }

    .addpdf-preview {
      margin-top: 12px;
      border-top:1px dashed #ddd;
      padding-top:12px;
    }

    .addpdf-pdfpage {
      width: 100%;
      padding: 18px;
      box-sizing: border-box;
      background: #fff;
    }

    .addpdf-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: 10px;
    }
    .addpdf-table td, .addpdf-table th {
      border: 1px solid #ddd;
      padding: 8px;
      font-size: 13px;
    }
    .addpdf-table th { background:#fafafa; text-align:left; }

    /* small screen tweaks */
    @media (max-width:700px){
      .addpdf-grid { grid-template-columns: 1fr; }
    }

    /* results */
    .addpdf-results { font-weight:700; margin-left:6px; }


    .homenewstayle-container {
            max-width: 100%;
            margin: 40px auto;
            padding: 20px;
            background-color: #ffffff;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .homenewstayle-title {
            text-align: center;
            color: #2c3e50;
            margin-bottom: 30px;
            font-size: 2em;
            font-weight: 600;
        }

        /* Hide the actual radio buttons */
        .homenewstayle-container input[type="radio"] {
            display: none;
        }

        /* =================================================================
           SERVICE CARDS (THE SELECTION GRID)
           ================================================================= */
        .homenewstayle-service-selection {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 40px;
        }

        .homenewstayle-service-card {
            /* This is the clickable label for the hidden radio input */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 25px;
            width: 100%;
            max-width: 220px;
            min-height: 150px;
            background-color: #ffffff;
            border: 6px solid #0364e2;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease-in-out;
            text-align: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .homenewstayle-card-image {
            width: 100%; /* Adjust image size as needed */
            height: 100%;
            object-fit: contain; /* Ensures image fits without cropping */
            margin-bottom: 10px;
        }

        .homenewstayle-card-title {
            font-size: 1.1em;
            font-weight: 600;
            color: #34495e;
            line-height: 1.4;
        }

        /* Style when the card is selected */
        #service-lic-life:checked + .homenewstayle-service-selection label[for="service-lic-life"],
        #service-united:checked + .homenewstayle-service-selection label[for="service-united"],
        #service-general-health:checked + .homenewstayle-service-selection label[for="service-general-health"],
        #service-star-health:checked + .homenewstayle-service-selection label[for="service-star-health"],
        #service-lic-housing:checked + .homenewstayle-service-selection label[for="service-lic-housing"] {
            border-color: #2ecc71; /* Highlight border */
            background-color: #e8f5e9; /* Light green background */
            box-shadow: 0 0 15px rgba(46, 204, 113, 0.5);
            transform: scale(1.03);
        }


        /* =================================================================
           DETAILS DISPLAY AREA
           ================================================================= */

        .homenewstayle-details-wrapper {
            margin-top: 40px;
            padding: 20px 0;
            border-top: 1px solid #ccc;
        }

        .homenewstayle-detail-info {
            display: none; /* Hide all details by default */
            padding: 25px;
            background-color: #f4f6f7;
            border-radius: 8px;
            border-left: 5px solid #3498db;
            animation: fadeIn 0.5s ease-out;
        }

        /* Animation for smooth appearance */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .homenewstayle-detail-title {
            color: #3498db;
            font-size: 1.5em;
            margin-bottom: 10px;
        }

        .homenewstayle-detail-description {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .homenewstayle-details-button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #2ecc71;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            font-weight: 500;
            transition: background-color 0.2s;
        }

        .homenewstayle-details-button:hover {
            background-color: #27ae60;
        }


        /* =================================================================
           CSS Magic: DISPLAYING THE CORRECT DETAIL BLOCK
           (Uses the General Sibling Combinator ~ on the hidden radio inputs)
           ================================================================= */

        /* When radio button is checked, use the general sibling selector (~) to target 
           the details wrapper, and then the specific detail block inside it. */
        
        #service-lic-life:checked ~ .homenewstayle-details-wrapper #lic-life-details { display: block; }
        #service-united:checked ~ .homenewstayle-details-wrapper #united-details { display: block; }
        #service-general-health:checked ~ .homenewstayle-details-wrapper #general-health-details { display: block; }
        #service-star-health:checked ~ .homenewstayle-details-wrapper #star-health-details { display: block; }
        #service-lic-housing:checked ~ .homenewstayle-details-wrapper #lic-housing-details { display: block; }

        /* =================================================================
           RESPONSIVENESS
           ================================================================= */
        @media (max-width: 768px) {
            .homenewstayle-service-selection {
                gap: 15px;
            }

            .homenewstayle-service-card {
                max-width: 45%; /* Two cards per row */
                min-height: 120px;
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .homenewstayle-service-card {
                max-width: 100%; /* Full width for mobile */
            }
        }

.homenewstayle-container {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8fbff, #eef6ff);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.homenewstayle-title {
  font-size: 2rem;
  margin-bottom: 30px;
  font-weight: 700;
  color: #003366;
  position: relative;
}

.homenewstayle-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #007bff;
  margin: 10px auto;
  border-radius: 3px;
}

/* SERVICE CARDS GRID */
.homenewstayle-service-selection {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.homenewstayle-service-card {
  width: 180px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.4s ease;
  text-align: center;
  padding: 15px 10px;
}

.homenewstayle-service-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.homenewstayle-card-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
}

.homenewstayle-service-card:hover .homenewstayle-card-image {
  transform: rotate(6deg) scale(1.1);
}

.homenewstayle-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #004080;
  display: block;
}

/* DETAILS SECTION */
.homenewstayle-details-wrapper {
  position: relative;
  min-height: 160px;
}

.homenewstayle-detail-info {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  max-width: 600px;
  margin: 0 auto;
}

/* TRANSITIONS USING RADIO SELECTION */
#service-lic-life:checked ~ .homenewstayle-details-wrapper #lic-life-details,
#service-united:checked ~ .homenewstayle-details-wrapper #united-details,
#service-general-health:checked ~ .homenewstayle-details-wrapper #general-health-details,
#service-star-health:checked ~ .homenewstayle-details-wrapper #star-health-details,
#service-lic-housing:checked ~ .homenewstayle-details-wrapper #lic-housing-details {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* DETAIL CONTENT */
.homenewstayle-detail-title {
  color: #003366;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.homenewstayle-detail-description {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}

.homenewstayle-details-button {
  display: inline-block;
  background: linear-gradient(90deg, #007bff, #00aaff);
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.homenewstayle-details-button:hover {
  background: linear-gradient(90deg, #0056b3, #0077cc);
  transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .homenewstayle-service-selection {
    flex-direction: column;
    align-items: center;
  }
  .homenewstayle-service-card {
    width: 90%;
  }
}

.licplanshome-banner {
  background: linear-gradient(135deg, #ffd449, #0f5eff);
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.licplanshome-title {
  font-size: 2rem;
  color: #003399;
  margin-bottom: 10px;
  font-weight: 700;
}

.licplanshome-subtitle {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
}

.licplanshome-plans {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.licplanshome-plan-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 300px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.licplanshome-plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.licplanshome-plan-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.licplanshome-plan-title {
  font-size: 1.3rem;
  color: #003399;
  margin: 15px 0 5px;
}

.licplanshome-plan-desc {
  font-size: 0.95rem;
  color: #555;
  padding: 0 15px 20px;
}

.licplanshome-btn {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  background-color: #003399;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.licplanshome-btn:hover {
  background-color: #ffcc00;
  color: #003399;
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .licplanshome-plan-card {
    width: 90%;
  }
  .licplanshome-title {
    font-size: 1.6rem;
  }
}

/* ===== UNITED INDIA PRODUCTS SECTION ===== */
.united-products-section {
  background: linear-gradient(135deg, #004aad, #0088cc);
  color: #fff;
  text-align: center;
  padding: 70px 20px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  overflow: hidden;
}

.united-products-container {
  max-width: 1200px;
  margin: auto;
}

.united-products-title {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.united-products-subtitle {
  font-size: 1.1rem;
  color: #e3f2fd;
  margin-bottom: 40px;
}

.united-products-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

/* Clickable cards */
.united-product-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px 25px;
  border-radius: 15px;
  width: 180px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.united-product-item:hover {
  background: #fff;
  color: #004aad;
  transform: translateY(-5px);
}

.united-icon {
  font-size: 2.2rem;
  color: #ffcc00;
  transition: transform 0.3s ease, color 0.3s ease;
}

.united-product-item:hover .united-icon {
  color: #004aad;
  transform: scale(1.2);
}

.united-product-item span {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.united-knowmore-btn {
  display: inline-block;
  background: #fff;
  color: #004aad;
  padding: 12px 35px;
  font-size: 1rem;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(255,255,255,0.2);
}

.united-knowmore-btn:hover {
  background: #ffcc00;
  color: #000;
  transform: scale(1.05);
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .united-products-title {
    font-size: 1.8rem;
  }

  .united-product-item {
    width: 45%;
    padding: 15px;
  }

  .united-icon {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .united-product-item {
    width: 80%;
  }
}

/* âœ¨ Star Health Vibrant Banner Styles */
.prefixstar1-banner {
  max-width: 1100px;
  margin: 25px auto;
  padding: 10px;
  box-sizing: border-box;
}

.prefixstar1-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, #0078d4 0%, #00bcd4 50%, #00e0a4 100%);
  color: #ffffff;
  border-radius: 20px;
  padding: 25px 30px;
  box-shadow: 0 10px 35px rgba(0, 123, 255, 0.35);
  overflow: hidden;
  position: relative;
  transition: all 0.4s ease;
}

/* Glowing edge animation */
.prefixstar1-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(90deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05), rgba(255,255,255,0.2));
  opacity: 0;
  transition: opacity 0.5s ease;
}
.prefixstar1-inner:hover::before {
  opacity: 1;
}

.prefixstar1-inner:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 45px rgba(0, 123, 255, 0.45);
}

/* ðŸ©º Logo Styling */
.prefixstar1-logo-wrap {
  flex-shrink: 0;
}
.prefixstar1-logo {
  height: 70px;
  width: auto;
  border-radius: 10px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.prefixstar1-inner:hover .prefixstar1-logo {
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(255,255,255,0.35);
}

/* ðŸ§¾ Text */
.prefixstar1-textwrap {
  flex: 1 1 auto;
  min-width: 0;
}

.prefixstar1-title {
  margin: 0;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.1;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

.prefixstar1-shield {
  display: inline-flex;
  font-size: 22px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  box-shadow: inset 0 0 8px rgba(255,255,255,0.2);
  color: #fff;
  animation: prefixstar1-spin 4s linear infinite;
}

@keyframes prefixstar1-spin {
  0% { transform: rotate(0deg);}
  100% { transform: rotate(360deg);}
}

.prefixstar1-sub {
  margin: 8px 0 0 0;
  font-size: clamp(13px, 1.8vw, 15px);
  opacity: 0.95;
}

/* ðŸ’« CTA Button */
.prefixstar1-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: linear-gradient(90deg, #ffffff 0%, #e6f7ff 100%);
  color: #0078d4;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: all 0.3s ease;
  border: none;
  box-shadow: 0 5px 18px rgba(255,255,255,0.25);
}
.prefixstar1-cta:hover {
  background: #fff;
  color: #00a3c4;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 30px rgba(255,255,255,0.4);
}
.prefixstar1-cta-arrow {
  display: inline-block;
  transform: translateX(0);
  transition: transform 0.2s ease;
}
.prefixstar1-cta:hover .prefixstar1-cta-arrow {
  transform: translateX(6px);
}

/* ðŸŒˆ Shimmer effect for the text highlight */
@keyframes prefixstar1-shimmer {
  0% { background-position: -120% 0; }
  100% { background-position: 220% 0; }
}
.prefixstar1-title strong {
  position: relative;
  padding: 3px 8px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(255,255,255,0.25), rgba(255,255,255,0.4), rgba(255,255,255,0.25));
  background-size: 250% 100%;
  animation: prefixstar1-shimmer 3s infinite linear;
}

/* ðŸ“± Responsive */
@media (max-width: 700px) {
  .prefixstar1-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px;
  }
  .prefixstar1-logo {
    height: 100%;
  }
  .prefixstar1-cta {
    width: 100%;
    justify-content: center;
  }
  .prefixstar1-title {
    font-size: 19px;
  }
}

.housinghome-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffb347, #ffcc33, #ff8c00);
  color: #3b2f00;
  border-radius: 25px;
  padding: 70px 10%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
  margin: 40px auto;
}

.housinghome-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.25), transparent 70%);
  pointer-events: none;
}

.housinghome-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* ===== Text Section ===== */
.housinghome-textbox {
  flex: 1;
  min-width: 300px;
  padding-right: 30px;
  animation: housinghomeFadeUp 1.2s ease-in-out;
}

.housinghome-title {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-bottom: 20px;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #2e2e2e;
  text-shadow: 0 1px 4px rgba(255,255,255,0.3);
}

.housinghome-title span {
  color: #004aad;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.2);
}

.housinghome-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #2f1e00;
  opacity: 0.9;
}

/* ===== Button ===== */
.housinghome-btn {
  display: inline-block;
  background: linear-gradient(90deg, #004aad, #0078d7);
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 6px 15px rgba(0,0,0,0.25);
}

.housinghome-btn:hover {
  background: #fff;
  color: #004aad;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0 8px 18px rgba(0,0,0,0.3);
}

/* ===== Image Section ===== */
.housinghome-imgbox {
  flex: 1;
  min-width: 300px;
  text-align: right;
  animation: housinghomeSlideIn 1.4s ease-in-out;
}

.housinghome-imgbox img {
  width: 90%;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.5s ease;
}

.housinghome-imgbox img:hover {
  transform: scale(1.05);
}

/* ===== Decorative Wave ===== */
.housinghome-wave {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 90px;
  background: url('https://svgshare.com/i/15nD.svg') repeat-x;
  background-size: cover;
  animation: housinghomeWaveMove 15s linear infinite;
  opacity: 0.5;
}

/* ===== Animations ===== */
@keyframes housinghomeFadeUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes housinghomeSlideIn {
  from {opacity: 0; transform: translateX(50px);}
  to {opacity: 1; transform: translateX(0);}
}

@keyframes housinghomeWaveMove {
  from {background-position-x: 0;}
  to {background-position-x: 1000px;}
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .housinghome-banner {
    padding: 50px 20px;
    text-align: center;
  }

  .housinghome-container {
    flex-direction: column-reverse;
  }

  .housinghome-imgbox {
    text-align: center;
    margin-bottom: 25px;
  }

  .housinghome-title {
    font-size: 1.8rem;
  }

  .housinghome-desc {
    font-size: 0.95rem;
  }

  .housinghome-btn {
    font-size: 0.95rem;
    padding: 10px 26px;
  }
}

.united-products-wrapper {
  background: linear-gradient(135deg, #fff7e6, #fff);
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

/* ---------- Headings ---------- */
.united-heading {
  font-size: 2.2rem;
  color: #2d2d2d;
  margin-bottom: 10px;
  font-weight: 700;
}
.united-subheading {
  color: #666;
  margin-bottom: 40px;
  font-size: 1.1rem;
}

/* ---------- Cards Container ---------- */
.united-products-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3px;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Card ---------- */
.united-card {
  background: #bdd0ff;
  border-radius: 14px;
  padding: 25px 15px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  width: 30%; /* 3 per row on desktop */
  min-width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.united-card:hover {
  border-color: #d4af37;
  box-shadow: 0 8px 16px rgba(212, 175, 55, 0.2);
  transform: translateY(-6px);
}

/* ---------- Icon Box ---------- */
.united-icon-box {
  background: linear-gradient(135deg, #ffce54, #d4af37);
  width: 70px;
  height: 70px;
  margin-bottom: 15px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  transition: transform 0.3s ease;
}
.united-card:hover .united-icon-box {
  transform: scale(1.15) rotate(8deg);
}

/* ---------- Title ---------- */
.united-card h3 {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* ---------- Button ---------- */
.united-btn-container {
  margin-top: 40px;
}
.united-btn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ffce54, #d4af37);
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}
.united-btn:hover {
  background: linear-gradient(135deg, #d4af37, #ffce54);
  transform: scale(1.05);
}

/* ---------- Responsive: Mobile View ---------- */
@media (max-width: 768px) {
  .united-products-flex {
    display: block; /* switch to flow layout on mobile */
  }

  .united-card {
    width: 90%;
    margin: 0 auto 20px;
  }
}

 .about2-body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      padding: 0;
      background: #f7f9fc;
      color: #333;
    }

    .about2-container {
      max-width: 1000px;
      margin: 50px auto;
      background: #fff;
      border-radius: 15px;
      box-shadow: 0 8px 25px rgba(0,0,0,0.1);
      overflow: hidden;
    }

    .about2-header {
      background: linear-gradient(135deg, #0077b6, #00b4d8);
      color: #fff;
      padding: 40px 20px;
      text-align: center;
    }

    .about2-header h1 {
      font-size: 2.2rem;
      margin: 0;
      font-weight: 600;
    }

    .about2-header p {
      margin-top: 8px;
      font-size: 1.1rem;
      opacity: 0.9;
    }

    .about2-content {
      display: flex;
      flex-wrap: wrap;
      padding: 40px 30px;
      align-items: center;
      justify-content: center;
    }

    .about2-image {
      flex: 1 1 250px;
      text-align: center;
      padding: 15px;
    }

    .about2-image img {
      width: 250px;
      height: 250px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 5px 20px rgba(0,0,0,0.1);
      border: 5px solid #fff;
    }

    .about2-text {
      flex: 2 1 400px;
      padding: 20px 30px;
    }

    .about2-text h2 {
      color: #0077b6;
      font-size: 1.8rem;
      margin-bottom: 10px;
    }

    .about2-text p {
      line-height: 1.7;
      margin-bottom: 15px;
    }

    .about2-highlights {
      margin-top: 25px;
    }

    .about2-highlights h3 {
      color: #023e8a;
      margin-bottom: 10px;
    }

    .about2-highlights ul {
      list-style: none;
      padding: 0;
    }

    .about2-highlights li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
    }

    .about2-highlights li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #00b4d8;
      font-weight: bold;
    }

    .about2-footer {
      text-align: center;
      background: #f0f4f8;
      padding: 25px;
      font-size: 0.95rem;
      color: #555;
    }

    .about2-social a {
      margin: 0 10px;
      display: inline-block;
      color: #0077b6;
      font-size: 1.3rem;
      transition: 0.3s;
      text-decoration: none;
    }

    .about2-social a:hover {
      color: #00b4d8;
      transform: scale(1.1);
    }

    @media (max-width: 768px) {
      .about2-content {
        flex-direction: column;
        text-align: center;
      }
      .about2-text {
        padding: 20px;
      }
    }