* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}

body {
  font-family: 'Poppins', sans-serif;
  background: #fff;
  color: black;
  height: 100%;
  overflow-x: hidden;
}

.top-header {
  background-color: #f0f0f0;
  padding: 10px 20px;
  color: black;
}

.top-line {
  height: 2px;
  background: #ccc;
  margin-bottom: 10px;
}

.top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.left-side {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.line {
  font-weight: bold;
  font-size: 18px;
}

.logo img {
  height: 80px;
}

.right-side {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;

}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 14px;
}

.phone-login {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.login-btn {
  background: #6200ea;
  color: white;
  border: none;
  padding: 6px 15px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
}

.longline {
  background: #f6e19d;
  color: #000;
  padding: 10px;
  font-weight: bold;
  overflow-x: hidden;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  text-align: center;
  font-size: 1.2rem;
  position: relative;
}

.longline-text {
  display: inline-block;
  white-space: nowrap;
  animation: scrollText 20s linear infinite;
}

    /* Default: Laptop and above (no change needed, use your existing styles) */

/* Medium devices: Tablets (600px - 991px) */
@media screen and (min-width: 600px) and (max-width: 991px) {
  .contact-details{
    align-items: center !important;
    gap:10px !important;
    /* margin-right: 100px !important;
    padding-left: 0px !important; */
  }
  .right-side{
    
    gap:10px !important;
  }
   
  .benefits-contact {
  display: flex;
  justify-content: center;  /* Centers horizontally */
  align-items: center;      /* Centers vertically */
}
.tet {
  margin: 0; /* Removes extra paragraph margin for tighter centering */
}

 
}

/* Small devices: Mobiles (up to 599px) */
@media screen and (max-width: 599px) {
  .contact-details{
     align-items: center !important;
     gap:10px !important;
    /* margin-right: 100px !important;
    padding-left: 0px !important; */
  }
  .right-side{
    gap:10px !important;
  }

  .benefits-contact {
  display: flex;
  justify-content: center;  /* Centers horizontally */
  align-items: center;      /* Centers vertically */
}
.tet {
  margin: 0; /* Removes extra paragraph margin for tighter centering */
}

.payment-info p{
  margin-top: 0;
  margin-bottom: 16px; /* consistent spacing */
}

}
/* Responsive adjustments for screens smaller than 600px */
@media (max-width: 600px) {
  .longline {
    font-size: 0.8rem; /* Keep it readable */
    padding: 8px;
  }
}

@keyframes scrollText {
  0% { transform: translateX(100vw); }
  100% { transform: translateX(-100%); }
}

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.menu-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 20px;
}

.menustyle {
  font-size: 20px;
  font-weight: bold;
  display: none;
}

.menu-icon {
  font-size: 28px;
  cursor: pointer;
  display: none;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6200ea;
  padding: 10px 0;
}

nav ul {
  display: flex;
  list-style: none;
  border-left: 1px solid #444;
}

nav ul li {
  margin: 0;
  padding: 0 20px;
  border-right: 1px solid #444;
  font-family: 'Poppins', sans-serif;

}

nav ul li:last-child {
  border-right: none;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-size: 17px;
  font-weight: 500;
  display: inline-block;
  padding: 8px 0;
  transition: 0.3s ease-in-out;
  position: relative;
}

/* Gradient underline on hover */
.nav-links li a:hover::after {
  content: '';
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, red, orange, green, blue, purple);
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 10px;
}

/* Desktop nav background */
.desktop-nav {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #6200ea;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #a03828;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0;
  z-index: 5;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  transition: max-height 0.4s ease, opacity 0.4s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

.mobile-menu.active {
  display: flex;
  max-height: 500px;
  opacity: 1;
}

.mobile_navlinks {
  list-style: none;
  padding: 10px 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile_navlinks li {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.mobile_navlinks a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: white;
  transition: color 0.3s ease;
}

.mobile_navlinks a:hover {
  color: #6200ea;
}

@media (max-width: 969px) {
  .nav-links {
    display: none;
  }
  nav{
    display: none;
  }
  .line{
    padding-left: 25px;
  }
  /* .whats{
    padding-left: 55px;
  } */
  .menu-icon, .menustyle {
    display: block;
  }

  .main-header {
    text-align: left;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .top-content {
    flex-direction: column;
    align-items: center;
  }

  .right-side {
    flex-direction: column;
    align-items: center;
  }
}
  
  .matchmaking-banner { 
    display: flex;
    height: 500px;
    background: url(images/bannerback.jpeg) -50px center / cover no-repeat;
    width: 100%;
    overflow: hidden;
  }
  
  
  .matchmaking-overlay {
    display: flex;
    width: 100%;
    height: 100%;
  }
  .matchmaking-left {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    text-align: center;
  }
  
  .matchmaking-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .matchmaking-left h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: white;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  }
  
  .matchmaking-left p {
    font-size: 1.1rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
  }
  
  
  .matchmaking-form {
    position: absolute; 
    top: 0;
    right: 0; 
    width: 45%; 
    z-index: 2; 
    background: rgba(255, 255, 255);
    padding: 20px;
    box-sizing: border-box;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-bottom-left-radius: 25%;
    border-top-left-radius: 25%;
    border-style:groove;
    border-left: 5px solid red;
    border-top: 5px solid rgb(226, 226, 243);
    border-bottom: 5px solid rgb(222, 245, 222);

  }
  
 /* Heart shape at top-right corner */
.matchmaking-form .heart {
  position: absolute;
  top: 40px;
  right: -20px;
  width: 35px;
  height: 25px;
  background: red;
  transform: rotate(-105deg);
  z-index: 1;
}

.matchmaking-form .heart::before,
.matchmaking-form .heart::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 45px;
  background: red;
  border-radius: 50%;
}

.matchmaking-form .heart::before {
  top: -25px;
  left: 0;
}

.matchmaking-form .heart::after {
  left: 25px;
  top: 0;
}

.matchmaking-form h2 {
  font-size: 1.3rem;
  text-align: center;
  padding-bottom: 5px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #333;
}

.matchmaking-form h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #ff4d4d, #ff9999);
  border-radius: 2px;
}

  
  /* Form Layout */
  #registerForm {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: 100%;
    z-index: 1;
  }
  
  .form-row {
    display: flex;
    align-items: baseline; /* aligns input text baseline with label */
    margin-bottom: 12px;
  }
  
  .form-row label {
    width: 40%;
    font-size: 1rem;
    color: #333;
    margin-right: 10px;
  }
  
  .form-row input[type="text"],
  .form-row input[type="email"],
  .form-row input[type="number"],
  .form-row input[type="date"]{
    width: 60%;
    height: 36px; /* consistent height */
    padding: 6px 8px;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    line-height: 1.2;
  }
  
  .form-row input[type="radio"]{
    font-size: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    line-height: 1.2;
  }

/* Reduce space between radio and label text */
.gender-options label {
  display: flex;
  align-items: center;
  gap: 3px; /* reduce spacing */
  margin: 0;
}

/* Optional: Reset radio button spacing */
.gender-options input[type="radio"] {
  margin: 0;
  padding: 0;
}

  
  /* Captcha display */
  .captcha-code {
    background: #f3f3f3;
    font-weight: bold;
    letter-spacing: 2px;
    border-radius: 5px;
    width: 40%;
    margin-right: 15px;
    box-sizing: border-box;
    height: 36px;
    padding: 6px 8px;
    line-height: 1.2;
  }
  
  /* Submit Button */
  .register-btn {
    padding: 8px 16px;
    background-color: #0073e6;
    color: white;
    font-size: 0.95rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    align-self: center;
    width: auto;
  }
  
  .register-btn:hover {
    background-color: #005bb5;
  }
  
  /* Responsive */
  @media screen and (max-width: 700px) {
    .matchmaking-banner {
      display: flex;
      flex-direction: column; /* Stack items vertically */
      height: auto;
      width: 100%;
      background: #f2f2f2;
      overflow: hidden;
    }
  
    .matchmaking-overlay {
      display: flex;
      flex-direction: column;
      width: 100%;
      height: 100%;
    }
  
    .matchmaking-left {
      width: 100%;
      background: url(images/bannerback.jpeg) center center/cover no-repeat;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      color: #fff;
      padding: 40px 20px;
      box-sizing: border-box;
      text-align: center;
    }
  
    .matchmaking-form {
      width: 100%;
      padding: 20px;
      background: rgba(255, 255, 255, 0.8);
      border-radius: none; 
      border-top-left-radius: 0; 
      border-bottom-left-radius: 0; 
    }
   
    .register-btn {
      align-self: center;
      width: auto;
      margin-top: 10px;
    }
  }

  .sectiontag_container {
    display: flex;
    min-height: 100vh;
  }

  /* Left Side */
  .sectioncontent_left-side {
    width: 70%;
    padding: 50px;
    background-color: #ffffff;
  }

  .sectioncontent_left-side h1  {
    color: #800000; 
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
  }
  
  .sectioncontent_left-side h1::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 4px;
    background-color: #e99090;
    border-radius: 2px;
  }
  
  .sectioncontent_left-side h1::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -16px;
    width: 50%;
    height: 3px;
    background-color: #858080;
    border-radius: 2px;
  }

  /* User Grid Container */
  .user-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
    padding: 10px;
  }

  /* User Card Style */
  .user-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    text-align: center;
    transition: transform 0.2s ease;
    margin-bottom: 20px;
  }

  .user-card img {
    width: 100%;
    height: 220px;
    object-fit: cover; /* Ensures the image covers the full space */
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .user-info {
    padding: 10px;
  }

  .user-card h3 {
    color: #0077cc;
    font-size: 18px;
    margin: 5px 0;
  }

  .user-card p {
    font-size: 14px;
    margin: 3px 0;
  }

  /* Right Side */
  .sectioncontent_right-side {
    width: 30%;
    padding: 20px;
    background-color: #fff8f6; /* Very light background */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* Tagline */
  .tagline {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #800000; /* Deep Maroon */
  }

  /* Image Stack */
  .image-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }

  /* Single Image Box */
  .image-box {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 3px solid #ffcc00; /* Golden Yellow border */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
  }

  .image-box:hover {
    transform: translateY(-5px);
  }

  .image-box img {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    object-fit: cover;
    filter: brightness(80%);
  }

  /* Always Visible Content */
  .image-content {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px;
    width: 100%;
    height: 100%;
    background: rgba(128, 0, 0, 0.6); /* Semi-transparent Maroon */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 12px;
  }

  .image-content h3 {
    margin-bottom: 10px;
    font-size: 22px;
  }

  .image-content p {
    margin-bottom: 8px;
    font-size: 16px;
  }

  .image-content button {
    margin-top: 10px;
    padding: 10px 25px;
    background-color: #ff4500; /* Red-Orange */
    border: none;
    border-radius: 5px;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .image-content button:hover {
    background-color: #e03e00;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .sectiontag_container {
      flex-direction: column;
    }

    .sectioncontent_left-side,
    .sectioncontent_right-side {
      width: 100%;
    }

    .sectioncontent_left-side {
      padding: 30px;
    }

    /* User Grid Container for small screens */
    .user-grid {
      grid-template-columns: repeat(2, 1fr); /* This will make 2 items per row */
      gap: 20px;
      margin-top: 20px;
      padding: 10px;
    }

    /* Adjust User Card Image size on small screens */
    .user-card img {
      height: 180px;
      object-fit: cover;
    }

    .user-card h3 {
      font-size: 16px;
    }

    .user-card p {
      font-size: 13px;
    }

    .image-content h3 {
      font-size: 16px;
    }

    .image-content p {
      font-size: 13px;
    }

    .image-content button {
      font-size: 14px;
      padding: 6px 12px;
    }
  }
  
 /* === BENEFITS SECTION BASE === */
.benefits-section-slim {
  position: relative;
  overflow: hidden;
  padding: 60px 20px 80px;
  background-color: #f9f9f9;
}

/* === MAIN CONTAINER === */
.benefits-bg-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  border: 3px solid rgba(255, 215, 0, 0.8);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
}

/* === BACKGROUND IMAGE === */
.benefits-bg-container::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/benifitsback.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
}

/* === OVERLAY === */
.benefits-overlay {
  position: relative;
  z-index: 2;
  padding: 50px 30px;
  flex: 1;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* === WRAPPER === */
.benefits-wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #fff;
}

/* === CONTENT SIDES === */
.benefits-left,
.benefits-right {
  flex: 1 1 48%;
  padding: 20px;
}
.benefits-contact{
  font-size: 1rem;
}
/* === TYPOGRAPHY === */
.benefits-logo {
  width: 400px;
  height: 100px;
  margin-bottom: 20px;
}

.benefits-callout h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #ffcc00;
}

.benefits-callout p {
  font-size: 1.25rem;
  line-height: 1.6;
}

.benefits-heading {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #ffd700;
}

.benefits-list {
  list-style: none;
  padding: 0;
  font-size: 1.25rem;
  margin-bottom: 20px;
  line-height: 2;
}

.benefits-contact p {
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* === ICONS === */
.whatsapp-icon {
  color: #25d366;
  font-size: 24px;
}

/* === FOOTER BAR === */
.benefits-footer-bar {
  background-color: #003366;
  color: #fff;
  text-align: left;
  padding: 20px;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0 12px 0 0;
  position: absolute;
  top: 420px;
  left: -10px;
  z-index: 3;
  max-width: 400px;
}

/* === DECORATIVE === */
.decorative-img {
  position: absolute;
  z-index: 0;
  width: 220px;
  height: auto;
  opacity: 0.7;
  pointer-events: none;
}

.top-left {
  top: 10px;
  left: 100px;
}

.bottom-right {
  bottom: 30px;
  right: 80px;
}

/* === RESPONSIVE FIXES === */
@media (max-width: 992px) {
  .benefits-wrapper {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .benefits-wrapper {
    margin-bottom: 55px;
  }
  
  .benefits-left,
  .benefits-right {
    width: 100%;
  }

  .benefits-logo {
    width: 300px;
    height: 70px;
  }

  .benefits-callout h2 {
    font-size: 1.8rem;
  }

  .benefits-heading {
    font-size: 1.6rem;
  }

  .benefits-list {
    font-size: 1rem;
  }

  .benefits-footer-bar {
    top: unset;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    border-radius: 12px 12px 0 0;
  }

  .top-left {
    top: 30px;
    left: -20px;
    width: 250px;
  }

  .bottom-right {
    bottom: 50px;
    right: 5px;
    width: 250px;
  }
}

@media (max-width: 576px) {
  .benefits-overlay {
    padding: 30px 15px;
  }

  .benefits-logo {
    width: 250px;
  }

  .benefits-callout h2 {
    font-size: 1.5rem;
  }

  .benefits-callout p,
  .benefits-list,
  .benefits-contact p {
    font-size: 0.95rem;
  }

  .benefits-heading {
    font-size: 1.3rem;
  }

  .decorative-img {
    width: 120px;
    opacity: 0.5;
  }
}


/* === Grooms Section === */
.grooms-section {
  padding: 40px 20px;
  background: #f9f9f9;
}
.grooms-heading {
  color: #800000; /* Deep Maroon */
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.grooms-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 4px;
  background-color: #e99090;
  border-radius: 2px;
}

.grooms-heading::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 50%;
  height: 3px;
  background-color: #858080;
  border-radius: 2px;
}

.split-layout {
  display: flex;
  min-height: 100vh;
}

.splitleft-side {
  width: 30%;
  background: #fff;
  padding: 25px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.splitright-side {
  width: 70%;
  background: #fff;
  padding: 25px;
}

/* Left Side Styling */
.detailsinfo_heading {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: #1d3557;
}

.detailsinfo_text {
  margin-bottom: 25px;
}

.detailsinfo_contact-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.contact-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #f1f1f1;
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-3px);
  background-color: #e9ecef;
}

.contact-icon {
  font-size: 1.5rem;
  color: #007f5f;
}

.payment-info {
  background: #e0f7fa;
  padding: 20px;
  border-left: 5px solid #00796b;
  border-radius: 10px;
  margin-bottom: 25px;
}

.payment-info h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #00796b;
}

.payment-info ul {
  padding-left: 20px;
}

.payment-info li {
  margin-bottom: 8px;
  list-style: none;
}

.payment-info li i {
  margin-right: 8px;
  color: #00796b;
}

.security-info {
  display: flex;
  align-items: center;
  background: #fce4ec;
  padding: 15px;
  border-radius: 10px;
}

.security-info img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-right: 20px;
}

.security-info h3 {
  color: #c2185b;
  margin-bottom: 8px;
}

/* Right Side Styling */
.container .section-title {
  font-size: 1.8rem;
  color: #2b2d42;
  margin-bottom: 10px;
}

.section-description {
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1000px;         /* limit the width */
  margin: 0 auto;            /* center it horizontally */
}


.service-card {
  background: #fafafa;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: #f0f0ff;
}

.icon i {
  font-size: 4rem;
  color: #4a4e69;
  margin-bottom: 15px;
}

.section-head {
  font-size: 2rem;
  font-weight: 600;
  color: #2b2d42; 
  position: relative; 
  margin-bottom: 20px;
  padding-bottom: 10px;
}

.section-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; 
  height: 1px;
  background-color: #babcc3; 
  transition: all 0.3s ease-in-out; 
}

.section-head:hover::after {
  width: 50%; 
  background-color: #007f5f;
}


.service-title {
  font-size: 1.2rem;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.service-description {
  font-size: 0.95rem;
  color: #444;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .split-layout {
    flex-direction: column;
  }

  .splitleft-side, .splitright-side {
    width: 100%;
    height: auto;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    padding: 0 15px;
  }

  .service-card {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  .detailsinfo_heading {
    font-size: 1.1rem;
  }

  .container .section-title {
    font-size: 1.5rem;
  }

  .section-head {
    font-size: 1.6rem;
  }

  .icon i {
    font-size: 3rem;
  }

  .service-title {
    font-size: 1.1rem;
  }

  .service-description {
    font-size: 0.9rem;
  }

  .security-info {
    flex-direction: column;
    text-align: center;
  }

  .security-info img {
    margin-bottom: 15px;
  }
}

@media (max-width: 480px) {
  .container .section-title {
    font-size: 1.3rem;
  }

  .section-head {
    font-size: 1.4rem;
  }

  .icon i {
    font-size: 2.5rem;
  }

  .service-title {
    font-size: 1rem;
  }

  .service-description {
    font-size: 0.85rem;
  }

  .splitleft-side,
  .splitright-side {
    padding: 15px;
  }

  .payment-info {
    padding: 15px;
  }

  .contact-box {
    padding: 10px;
  }

  .security-info {
    padding: 10px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* Background image for the section */
.plans-section {
  background: rgb(240, 231, 231);
  padding: 50px 20px;
}

/* Container settings */
.plans-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Plan cards styling */
.plan-card {
  background: white;
  border-radius: 15px;
  max-height: 300px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
}

/* Icon styling */
.plan-card .silver-icon, .gold-icon, .platinum-icon {
  font-size: 50px;
  margin: 20px auto 10px;
}

/* Common Plan Details */
.plan-card h2 {
  text-align: center;
  font-size: 24px;
  margin: 10px 0;
  color: #333;
}

.plan-card .price {
  text-align: center;
  font-size: 20px;
  margin-bottom: 20px;
  color: #555;
}

/* Bottom half color block */
.plan-card .details {
  background: #f5f5f5;
  padding: 20px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

.plan-card .details p {
  margin: 5px 0;
  font-size: 16px;
  color: #080808;
}

/* Hover effects */
.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* Specific color for each plan */
.silver .details {
  background: #c0c0c0;
  color: white;
  text-align: center;
}
.silver-icon{
  color: #c0c0c0;
}
.gold .details {
  background: #ffd700;
  color: white;
  text-align: center;
}
.gold-icon{
  color: #ffd700;
}

.platinum .details {
  background: #e5e4e2;
  color: #333;
  text-align: center;
}
.platinum-icon{
  color: #e5e4e2;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .plans-section {
    padding: 30px 10px;
  }
  .plan-card h2 {
    font-size: 20px;
  }
  .plan-card .price {
    font-size: 18px;
  }
}

.footer {
  position: relative;
  background-color: brown;
  padding: 40px 0;
  color: #fff;
  overflow: hidden;
  z-index: 1;
}

/* Content wrapper sits above hearts */
.footer-content {
  position: relative;
  z-index: 2;
}

/* Heart Shape Base */
.heart-shape {
  position: absolute;
  width: 30px;
  height: 30px;
  background: #ff4d6d;
  transform: rotate(-45deg);
  opacity: 0.8;
  z-index: 0; /* Behind everything */
}

.heart-shape::before,
.heart-shape::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  background: #ff4d6d;
  border-radius: 50%;
}

.heart-shape::before {
  top: -15px;
  left: 0;
}
.heart-shape::after {
  left: 15px;
  top: 0;
}

/* Heart positions */
.heart1 { top: 40px; left: 30px; transform: rotate(-45deg) scale(1.6); }
.heart2 { top: 90px; left: 10px; transform: rotate(-45deg) scale(1.3); }
.heart3 { top: 120px; left: 70px; transform: rotate(-45deg) scale(1); }
.heart4 { top: 160px; left: 40px; transform: rotate(-45deg) scale(0.8); }
.heart5 { bottom: 40px; right: 30px; transform: rotate(-45deg) scale(1.6); }
.heart6 { bottom: 90px; right: 10px; transform: rotate(-45deg) scale(1.3); }
.heart7 { bottom: 120px; right: 70px; transform: rotate(-45deg) scale(1); }
.heart8 { bottom: 160px; right: 40px; transform: rotate(-45deg) scale(0.8); }

/* Responsive hearts */
@media (max-width: 768px) {
  .heart1 { top: 20px; left: 15px; transform: rotate(-45deg) scale(1.2); }
  .heart2 { top: 60px; left: 5px; transform: rotate(-45deg) scale(1); }
  .heart3 { top: 90px; left: 40px; transform: rotate(-45deg) scale(0.9); }
  .heart4 { top: 120px; left: 20px; transform: rotate(-45deg) scale(0.7); }
  .heart5 { bottom: 20px; right: 15px; transform: rotate(-45deg) scale(1.2); }
  .heart6 { bottom: 60px; right: 5px; transform: rotate(-45deg) scale(1); }
  .heart7 { bottom: 90px; right: 40px; transform: rotate(-45deg) scale(0.9); }
  .heart8 { bottom: 120px; right: 20px; transform: rotate(-45deg) scale(0.7); }
}

.footer-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 0 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-box {
  flex: 1 1 22%;
  min-width: 250px;
  box-sizing: border-box;
  padding: 10px;
}

.footer h3 {
  font-size: 1rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  color: #fff;
  border-bottom: 2px solid #fff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer ul {
  list-style-type: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.footer ul li a:hover {
  color: #00ffff;
}

.footer p {
  font-size: 1rem;
  margin-bottom: 10px;
}

.footer p span {
  font-weight: bold;
}

.contact-details i {
  margin-right: 8px;
  color: #ffcccc;
}

.footer-bottom {
  text-align: center;
  padding: 15px 20px;
  background-color: rgb(96, 92, 92);
  color: #fff;
  font-size: 0.9rem;
  flex: 1 1 100%;
}

.footer-bottom i {
  color: red;
  margin-left: 6px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Responsive Layout Adjustments */
@media (max-width: 992px) {
  .footer-container {
    justify-content: left;
    padding: 0 30px;
  }

  .footer-box {
    flex: 1 1 45%;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .footer-box {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .footer h3 {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .footer-bottom {
    font-size: 0.85rem;
    padding: 10px;
  }
}

@media (max-width: 480px) {
  .footer-bottom {
    font-size: 0.8rem;
    padding: 8px;
  }
}
