:root {
    --maroon: #800000;
    --dark-maroon: #4d0000;
    --gold: #D4AF37;
    --light-gold: #f4e8c1;
    --white: #ffffff;
    --cream: #fffaf0;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h5, .brand-text .main-name {
    font-family: 'Playfair Display', serif;
}

 p b {
        font-size: 24px ;
    }



.top-header { background: var(--dark-maroon); color: white; padding: 10px 0; font-size: 13px; }
.top-header a {
  color: white;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;            
  margin-left: 6px;  
}

.top-header i {
  color: var(--gold);
  margin: 0;           
  padding: 0;
  font-size: 13px;
  line-height: 1;
}

.social i{
    font-size: 18px;
}

.navbar {
    min-height: 70px;        
    padding: 10px 0px;
    background: #fff;
    padding-left: 5px;
    background: #f7f7f7;
}
.navbar-brand {
    display: flex;
    align-items: center;
    height: 70px;             
    overflow: hidden;          
}

.logo-img {
    max-height: 168px;        
    width: auto;
    object-fit: contain;
    display: block;
}
.brand-text .main-name { display: block; font-size: 18px; font-weight: 700; color: var(--maroon); line-height: 1; }
.brand-text .sub-name { font-size: 14px; font-weight: 600; color: var(--gold); letter-spacing: 2px; }

.nav-link { font-weight: 500; color: #333 !important; margin: 0 7px; font-size: 14px;}
.nav-link:hover, .nav-link.active { color: var(--maroon) !important; border-bottom: 2px solid var(--gold); }

.btn-register { background: var(--maroon); color: white; border-radius: 30px; padding: 10px 25px; transition: 0.3s; }
.btn-register:hover { background: var(--gold); color: var(--maroon); transform: translateY(-3px); }

.hero-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero-slides {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}
.hero-slides .slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.hero-slides .slide.active {
  opacity: 1;
}
.hero-overlay {
  position: absolute;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.5);
  z-index:1;
}
.hero-content {
  position: relative;
  z-index:2;
  color: white;
}
.hero-content h1 {
  font-size: 4rem;
}
.hero-content h1 span { color: #D4AF37; }

.search-container {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 30px;
    border-radius: 20px;
    margin-top: 50px;
    text-align: left;
}
.search-container label { color: var(--gold); font-size: 12px; font-weight: 600; text-transform: uppercase; margin-bottom: 8px; }
.btn-search { background: var(--gold); color: black; font-weight: 700; border-radius: 10px; height: 50px; }

/* ================= TABLETS ================= */
@media (max-width: 992px) {

  /* Top Header */
  .top-header {
    display: block !important;
    font-size: 12px;
    padding: 12px 10px;
  }

  .top-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  /* Navbar + Logo */
  .navbar {
    min-height: 70px;
    padding: 6px 12px;
  }

  .navbar-brand {
    max-width: 75%;
    display: flex;
    align-items: center;
  }

  .logo-img {
    max-height: 144px;
    width: auto;
    object-fit: contain;
  }

  /* Hero */
  .hero-section { padding: 60px 15px; min-height: 60vh; }
  .hero-content h1 { font-size: 2.4rem; }
  .search-container { padding: 20px; }
}

/* ================= SMALL TABLETS / MOBILE ================= */
@media (max-width: 768px) {

  /* Top Header */
  .top-header {
    font-size: 8px;          /* thoda readable */
    padding: 12px 10px;
  }
   .social i {
      font-size: 14px;;
  }
  
  .section-title {
    font-weight: 700;
    font-size: 24px !important;
}

  .top-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
  }

  /* Navbar */
  .navbar {
    padding: 6px 8px;
    min-height: 55px;      
  }

  .navbar-brand {
    max-width: 90%;
    display: flex;
    align-items: center;
  }

  /* Logo */
  .logo-img {
    max-height: 144px;
    width: auto;
    object-fit: contain;
  }

  .navbar-collapse {
    margin-top: 12px;
  }

  /* Hero */
  .hero-section { padding: 50px 10px; min-height: 55vh; }
  .hero-content h1 { font-size: 2rem; }
  .search-container { padding: 15px; margin-top: 20px; }
  .btn-search { padding: 10px; font-size: 14px; }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 576px) {

  /* Top Header */
  .top-header {
    font-size: 8px;
    padding: 12px 8px;
  }
  
    .section-title {
    font-weight: 700;
    font-size: 24px !important;
}
  
  .social i {
      font-size: 14px;;
  }

  /* Navbar */
  .navbar {
    min-height: 55px;
    padding: 4px 6px;
  }

  .navbar-brand {
    max-width: 100%;
  }

  /* Logo */
  .logo-img {
    max-height: 144px;

  }

  /* Hero */
  .hero-section { padding: 40px 10px; min-height: 50vh; }
  .hero-content h1 { font-size: 1.6rem; }
  .search-container { padding: 12px; margin-top: 15px; }
  .btn-search { padding: 10px; font-size: 13px; }
}


/* Sections Styling */
.section-title { color: var(--maroon); font-size: 38px; position: relative; display: inline-block; padding-bottom: 15px; }
.section-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 70px; height: 3px; background: var(--gold); }

.bg-cream { background: var(--cream); }
.bg-dark-maroon { background: var(--dark-maroon); }

/* Step Cards */
.step-card { background: white; padding: 30px; border-radius: 15px; transition: 0.3s; height: 100%; }
.step-card:hover { transform: translateY(-10px); box-shadow: 0 15px 30px rgba(0,0,0,0.1); }
.icon-circle { width: 70px; height: 70px; background: var(--light-gold); color: var(--maroon); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; margin: 0 auto 20px; }

:root {
    --maroon: #800000;
    --gold: #D4AF37;
    --text-dark: #2c3e50;
}

.success-stories-section {
    background-color: #fff;
    padding: 60px 0;
}

/* Floral Header */
.success-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color:  #800000;
    font-weight: 700;
    margin-bottom: 5px;
}
.floral-img {
    height: 50px;
    margin-bottom: 20px;
}

/* Card Styling */
.story-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    border: 1px solid #eee;
    transition: 0.3s ease;
    margin-bottom: 15px;
}
.story-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    transform: translateY(-5px);
}

.story-img {
    height: 300px;
    overflow: hidden;
}
.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}
.story-card:hover .story-img img {
    transform: scale(1.1);
}

.story-body {
    padding: 20px;
    text-align: left;
}
.story-body h5 {
    color: var(--maroon);
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
}
.story-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}
.wedding-date {
    font-size: 13px;
    font-weight: 600;
    color: var(--gold);
    display: block;
}

/* Custom Swiper Buttons */
.story-next, .story-prev {
    color: var(--maroon) !important;
}
.story-next::after, .story-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Responsive */
@media (max-width: 768px) {
    .success-title { font-size: 32px; }
    .story-img { height: 250px; }
}

.bm-hero-wrap{
  padding:90px 0;
  background:#fff;
  overflow:hidden;
}

/* CONTAINER */
.bm-hero-inner{
  max-width:1300px;
  margin:auto;
  padding:0 20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

/* IMAGE GRID */
.bm-image-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
  animation:bmFadeLeft 1.2s ease forwards;
}

.bm-image-grid img{
  width:100%;
  height:230px;
  object-fit:cover;
  border-radius:18px;
  transition:0.4s ease;
}

.bm-image-grid img:hover{
  transform:scale(1.06);
}

/* TEXT CONTENT */
.bm-hero-text{
  animation:bmFadeRight 1.2s ease forwards;
}

.bm-hero-text h1{
  font-size:46px;
  color: #800000;
  line-height:1.2;
}

.bm-hero-text h1 span{
  display:block;
  font-size:20px;
  color: #D4AF37;
  margin-top:6px;
}

.bm-hero-text h3{
  margin:20px 0;
  font-size:24px;
  color:  #800000;
}

.bm-hero-text p{
  font-size:16px;
  line-height:1.8;
  color:#555;
  margin-bottom:14px;
}

.bm-hero-btn{
  display:inline-block;
  margin-top:22px;
  padding:14px 38px;

  background: linear-gradient(135deg, #800000, #4d0000) !important;
  color:#ffffff !important;

  text-decoration:none !important;
  border:none !important;
  border-radius:40px;

  font-size:16px;
  font-weight:600;
  letter-spacing:0.5px;

  box-shadow:0 10px 25px rgba(128,0,0,0.35);
  transition:all 0.4s ease;
}

/* HOVER */
.bm-hero-btn:hover{
  background: linear-gradient(135deg, #D4AF37, #b8962e) !important;
  color:#1b1b1b !important;
  transform:translateY(-3px);
  box-shadow:0 14px 30px rgba(212,175,55,0.45);
}


/* ANIMATIONS */
@keyframes bmFadeLeft{
  from{opacity:0; transform:translateX(-70px);}
  to{opacity:1; transform:translateX(0);}
}

@keyframes bmFadeRight{
  from{opacity:0; transform:translateX(70px);}
  to{opacity:1; transform:translateX(0);}
}

/* RESPONSIVE */
@media(max-width:992px){
  .bm-hero-inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .bm-image-grid{
    order:2;
  }

  .bm-hero-text{
    order:1;
  }

  .bm-hero-text h1{
    font-size:36px;
  }
}

@media(max-width:576px){
  .bm-image-grid{
    grid-template-columns:1fr;
  }

  .bm-image-grid img{
    height:220px;
  }
}

/* HERO SECTION */
.rh-hero{
  position:relative;
  width:100%;
  min-height:420px;
  background:url("../img/ctabanner.jpg") center/cover no-repeat; /* 🔥 apni image yaha */
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  overflow:hidden;
  margin:60px auto;
  max-width:1200px;
}

/* Overlay */
.rh-hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.45);
}

/* Content */
.rh-hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
  max-width:700px;
  padding:30px;
  animation:fadeUp 1s ease forwards;
}

.rh-hero-content h1{
  font-size:42px;
  margin-bottom:15px;
  font-weight:700;
}

.rh-hero-content p{
  font-size:16px;
  line-height:1.6;
  opacity:0.95;
}

/* Buttons */
.rh-hero-btns{
  margin-top:30px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.rh-btn{
  padding:14px 34px;
  border-radius:40px;
  font-size:15px;
  text-decoration:none;
  transition:0.3s;
  font-weight:600;
}

/* Primary */
.rh-btn.primary{
  background:  #D4AF37;
  color:#fff;
}

.rh-btn.primary:hover{
  background:  #D4AF37;
}

/* Outline */
.rh-btn.outline{
  border:2px solid #fff;
  color:#fff;
  background:transparent;
}

.rh-btn.outline:hover{
  background:#fff;
  color:#000;
}

/* Animation */
@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* RESPONSIVE */
@media(max-width:768px){
  .rh-hero{
    min-height:340px;
    border-radius:12px;
  }

  .rh-hero-content h1{
    font-size:28px;
  }

  .rh-hero-content p{
    font-size:14px;
  }
}


.testimonial-full-width {
    background-color: var(--maroon);
    overflow: hidden;
}

/* Image Styling */
.testimonial-img-side {
    height: 600px; /* Isse fix height milegi */
    position: relative;
}

.testimonial-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-overlay-gradient {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.3), var(--maroon));
}

/* Content Styling */
.testimonial-content-side {
    background-color: var(--maroon);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    min-height: 600px;
}

.content-wrapper { width: 100%; max-width: 600px; }

.gold-subtitle { color: var(--gold); letter-spacing: 3px; font-weight: 600; font-size: 14px; }
.main-title { font-family: 'Playfair Display', serif; font-size: 38px; margin-top: 10px; }
.gold-line { width: 80px; height: 3px; background: var(--gold); margin-top: 20px; }

/* Swiper Card Styling */
.myTestiSwiper { width: 100%; padding-bottom: 50px !important; }

.quote-box i { font-size: 40px; color: rgba(212, 175, 55, 0.3); margin-bottom: 20px; display: block; }
.quote-box p { font-size: 1.2rem; color: #f1f1f1; font-style: italic; line-height: 1.8; margin-bottom: 30px; }

.couple-info h4 { color: var(--gold); font-weight: 700; margin-bottom: 5px; }
.couple-info span { color: #ccc; font-size: 14px; }

/* Dots Styling */
.swiper-pagination-bullet { background: #fff !important; opacity: 0.5; }
.swiper-pagination-bullet-active { background: var(--gold) !important; opacity: 1; }

@media (max-width: 768px) {
    .testimonial-content-side { padding: 40px 20px; min-height: auto; }
    .main-title { font-size: 28px; }
}
/* Footer */
ul { margin: 0; padding: 0; list-style: none; }
.footer-section {
  background: #151414;
  position: relative;
  overflow: hidden;
}
.footer-logo h2 {
  font-weight: 700;
  letter-spacing: 1px;
}
.footer-logo h2 span {
  color: #D4AF37; /* Gold Color */
}
.footer-text p {
  margin-bottom: 14px;
  font-size: 14px;
  color: #7e7e7e;
  line-height: 28px;
}
.footer-social-icon span {
  color: #fff;
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-social-icon a {
  color: #fff;
  font-size: 16px;
  margin-right: 15px;
  transition: all 0.3s;
}
.footer-social-icon i {
  height: 40px; width: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}
.facebook-bg { background: #3B5998; }
.instagram-bg { background: #E1306C; }
.twitter-bg { background: #55ACEE; }

/* Hover Animation for Social Icons */
.footer-social-icon a:hover {
  transform: translateY(-5px);
  filter: brightness(1.2);
}

.footer-widget-heading h3 {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}
.footer-widget-heading h3::before {
  content: "";
  position: absolute;
  left: 0; bottom: -15px;
  height: 2px; width: 50px;
  background: #D4AF37;
}
.footer-widget ul li {
  display: inline-block;
  width: 50%;
  margin-bottom: 12px;
}
.footer-widget ul li a:hover { color: #D4AF37; padding-left: 5px; }
.footer-widget ul li a {
  color: #878787;
  text-transform: capitalize;
  transition: all 0.3s;
  text-decoration: none;
}

.contact-info p {
  color: #878787;
  font-size: 14px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: #D4AF37;
  margin-right: 10px;
  min-width: 18px;
}

.contact-info a {
  color: #878787;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #D4AF37;
  text-decoration: underline;
}

@media (max-width: 576px) {
  .contact-info p {
    font-size: 15px;
  }
}

.subscribe-form { position: relative; overflow: hidden; margin-top: 20px; }
.subscribe-form input {
  width: 100%;
  padding: 14px 28px;
  background: #2E2E2E;
  border: 1px solid #2E2E2E;
  color: #fff;
}
.subscribe-form button {
  position: absolute;
  right: 0; background: #D4AF37;
  padding: 13px 20px; border: 1px solid #D4AF37; top: 0;
  color: #fff; cursor: pointer;
}

/* Bottom Area */
.copyright-area { background: #202020; padding: 25px 0; }
.copyright-area p { margin: 0; font-size: 14px; color: #878787; }

/* Heart Pulse Animation */
.pulse-animation {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .search-container { padding: 15px; margin-top: 30px; }
    .section-title { font-size: 28px; }
}

/*premium*/
/* --- Premium Members Section Extra Styling --- */
.premium-members-section {
    background-color: #fffaf0; /* Light cream background for luxury shaadi feel */
}

/* Container padding for hover effect */
.premiumSwiper {
    padding: 20px 10px 50px 10px !important;
}

/* Slider Navigation Buttons */
.swiper-button-next-custom, .swiper-button-prev-custom {
    width: 45px;
    height: 45px;
    background: var(--maroon);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease;
    border: 1px solid var(--gold);
}
.swiper-button-next-custom:hover, .swiper-button-prev-custom:hover {
    background: var(--gold);
    color: white;
    transform: scale(1.1);
}

/* Member Card Luxury Styling */
.member-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.member-card:hover {
    border-color: var(--gold);
    box-shadow: 0 15px 35px rgba(128, 0, 0, 0.15);
    transform: translateY(-10px);
}

.member-img {
    height: 280px;
    overflow: hidden;
}
.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s;
}
.member-card:hover .member-img img {
    transform: scale(1.1);
}

.crown-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, var(--gold), #f9e29f);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 5;
}

.member-details { padding: 20px; }
.member-id { font-size: 12px; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; }
.member-details h5 { color: var(--maroon); margin: 5px 0; font-weight: 600; }
.member-details p { font-size: 14px; margin-bottom: 5px; color: #555; }
.edu { font-style: italic; font-size: 13px !important; color: #888 !important; }

.btn-contact {
    background: transparent;
    border: 2px solid var(--maroon);
    color: var(--maroon);
    font-weight: 600;
    border-radius: 25px;
    padding: 6px 20px;
    transition: 0.3s;
}
.btn-contact:hover { background: var(--maroon); color: white; }

.swiper-pagination-bullet-active { background: var(--maroon) !important; }

/*login*/
.login-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)), 
                url('../img/bhartiya1.jpg') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 10px; 
}

.login-text-box h1 {
    font-family: 'Playfair Display', serif; 
    font-size: 4rem;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    animation: fadeInLeft 1.2s ease-out;
}

.login-text-box h1 span {
    color: #D4AF37; /* Gold Color */
    font-style: italic;
}

/* Right Side Login Card (Glassmorphism Effect) */
.login-card {
    background: rgba(0, 0, 0, 0.75); /* Dark semi-transparent */
    backdrop-filter: blur(15px); /* Premium Blur Effect */
    padding: 45px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    animation: fadeInRight 1.2s ease-out;
}

/* Form Inputs */
.form-label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
}

.custom-input {
    background: #ffffff !important;
    border: 1px solid #ddd;
    height: 50px;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 15px;
    transition: 0.3s;
}

.custom-input:focus {
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
    border-color: #D4AF37;
}

/* Login Button */
.btn-login-submit {
    background: #112347; /* Navy Blue from screenshot */
    color: #fff;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    letter-spacing: 1px;
    transition: 0.4s;
    margin-top: 10px;
}

.btn-login-submit:hover {
    background: #1a3a7a;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: #fff;
}

/* Links inside card */
.forgot-link {
    color: #D4AF37;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.forgot-link:hover {
    color: #fff;
    text-decoration: underline;
}

.signup-link {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 600;
}

.signup-link:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    font-size: 30px;
    z-index: 999;
    box-shadow: 2px 2px 15px rgba(0,0,0,0.3);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .login-text-box {
        text-align: center;
        margin-bottom: 40px;
    }
    .login-text-box h1 {
        font-size: 3.5rem;
    }
    .login-section {
        padding: 120px 0 60px;
        height: auto;
    }
}




 .logo-section {
      text-align: center;
      margin-bottom: 12px;
    }
    .logo-section img {
      max-width: 328px;
      margin-bottom: 6px;
    }
    .logo-section h1 {
      font-weight: 700;
      color: #a01919;
      margin-bottom: 3px;
      font-size: 2rem;
      line-height: 1.1;
    }
    .logo-section p {
      font-style: italic;
      color: #8b6c42;
      font-size: 0.95rem;
      margin-top: 0;
    }

    .section-title {
      background-color: #1e58d7;
      color: #fff;
      display: inline-block;
      padding: 8px 28px;
      border-radius: 6px;
      font-size: 1.2rem;
      margin-bottom: 30px;
      font-weight: 600;
      font-family: "Segoe UI Semibold", Tahoma, Geneva, Verdana, sans-serif;
      letter-spacing: 0.02em;
    }

    /* Card styling */
    .plan-card {
      background: #fff;
      border-radius: 0px 12px 12px 0px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
      padding: 14px;
      position: relative;
      min-height: 428px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform 0.3s ease;
    }
    .plan-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    }

    /* Most Popular Badge */
    .badge-popular {
      position: absolute;
      top: -12px;
      left: 54px;
      background-color: #ff5c5c;
      color: white;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: 20px;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      font-family: "Segoe UI Semibold", Tahoma, Geneva, Verdana, sans-serif;
      box-shadow: 0 2px 6px rgba(255, 92, 92, 0.7);
      user-select: none;
    }

    /* Title and Duration on one line */
    .title-duration {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 16px auto 8px auto;
      flex-wrap: nowrap;
    }
    .plan-title {
      font-weight: bolder;
      font-size: 22px;
      margin: 0;
      position: relative;
      padding-bottom: 5px;
      font-family: "Segoe UI Semibold", Tahoma, Geneva, Verdana, sans-serif;
    }
    /* Underline below plan title */
    .plan-title::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      height: 2.5px;
      width: 48px;
      border-radius: 5px;
    }
    .duration {
      font-size: 0.95rem;
      font-weight: 600;
      color: #666;
      border-bottom: 2.5px solid transparent;
      padding-bottom: 2px;
      white-space: nowrap;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    }

    /* Colored title underline */
    .plan-title.gold {
      color: #c9a227;
      font-weight: 700;
    }
    .plan-title.gold::after {
      background-color: #c9a227;
    }
    .plan-title.diamond {
      color: #3b5bdb;
      font-weight: 700;
    }
    .plan-title.diamond::after {
      background-color: #3b5bdb;
    }
    .plan-title.platinum {
      color: #e74c3c;
      font-weight: 700;
    }
    .plan-title.platinum::after {
      background-color: #e74c3c;
    }
    .plan-title.vip {
      color: #2ecc71;
      font-weight: 700;
    }
    .plan-title.vip::after {
      background-color: #2ecc71;
    }

    /* Price */
    .old-price {
      text-decoration: line-through;
      color: #999;
      font-size: 1rem;
      margin-bottom: 0px;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      text-align: center;
    }
    .price {
      font-size: 24px;
      font-weight: 800;
      margin-bottom: 12px;
      font-family: "Segoe UI Black", Tahoma, Geneva, Verdana, sans-serif;
    }
    .price.gold {
      color: #c9a227;
      text-align: center;
    }
    .price.diamond {
      color: #3b5bdb;
      text-align: center;
    }
    .price.platinum {
      color: #e74c3c;
      text-align: center;
    }
    .price.vip {
      color: #2ecc71;
      text-align: center;
    }

    /* Features list */
    .features {
      list-style: none;
      padding-left: 0;
      margin-bottom: 30px;
      color: #444;
      font-size: 14px;
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
      user-select: none;
    }
    .features li {
      margin-bottom: 15px;
      padding-left: 18px;
      position: relative;
      border-bottom: 1px solid #ddd;
      padding-bottom: 10px;
      line-height: 1.3;
    }
    .features li:last-child {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }
    .features li::before {
      content: "✔";
      color: #2ecc71;
      position: absolute;
      left: 0;
      top: 0px;
      font-weight: 700;
      font-size: 12px;
      user-select: none;
    }

    /* Buttons */
    .btn-buy {
      font-weight: 700;
      text-transform: uppercase;
      border-radius: 5px;
      padding: 10px 0;
      font-size: 14px;
      width: 100%;
      border: none;
      cursor: pointer;
      color: white;
      transition: background-color 0.3s ease;
      font-family: "Segoe UI Semibold", Tahoma, Geneva, Verdana, sans-serif;
      user-select: none;
      box-shadow: 0 4px 12px rgb(0 0 0 / 0.12);
    }
    .btn-gold {
      background-color: #d4af37;
    }
    .btn-gold:hover {
      background-color: #c43b32;
      color: #fff;
    }
    .btn-diamond {
      background-color: #3b5bdb;
    }
    .btn-diamond:hover {
      background-color: #324fba;
    }
    .btn-platinum {
      background-color: #e74c3c;
    }
    .btn-platinum:hover {
      background-color: #c43b32;
    }
    .btn-vip {
      background-color: #2ecc71;
    }
    .btn-vip:hover {
      background-color: #27ae60;
    }

    /* Responsive grid fixes */
    @media (max-width: 991.98px) {
      .plan-card {
        min-height: auto;
      }
    }
    
    .pricemenu {
        padding-bottom: 60px;
    }
    
    /* Header styling */
        .page-header {
            text-align: center;
            padding: 40px 0;
            background-color: white;
            text-transform: uppercase;
        }
        .breadcrumb-custom {
            font-size: 14px;
            font-weight: bold;
            color: #6c757d;
        }
        .breadcrumb-custom a {
            text-decoration: none;
            color: #6c757d;
        }
        /* Section Header styling */
        .section-bar {
            background-color: #4d0000;
            color: white;
            padding: 12px 20px;
            border-radius: 5px;
            font-weight: 600;
            font-size: 1.2rem;
            margin-top: 30px;
        }
        .content-body {
            padding: 20px 0;
            line-height: 1.6;
            color: #444;
        }
        
        #premium-plans {
            scroll-behavior: smooth;
    scroll-margin-top: 90px; /* navbar height ke hisab se */
    
    
    .modal-header {
            background-color: #540209 !important;
            color: white;
        }
        .btn-register {
            padding: 12px 30px;
            font-size: 18px;
        }

 /* Theme Colors */
    .login-theme {
        background-color: #151414;
        border-radius: 12px;
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.25);
    }

    .text-gold {
        color: #D4AF37 !important;
    }

    /* Inputs */
    .custom-input {
        background-color: transparent;
        border: 1px solid #D4AF37;
        color: #ffffff;
    }

    .custom-input::placeholder {
        color: #b5b5b5;
    }

    .custom-input:focus {
        background-color: transparent;
        color: #ffffff;
        border-color: #D4AF37;
        box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    }

    /* Button */
    .btn-gold {
        background-color: #D4AF37;
        color: #151414;
        font-weight: 600;
        border: none;
    }

    .btn-gold:hover {
        background-color: #c9a633;
        color: #151414;
    }
    
    .meettxt {
        font-size: 104px !important;
        font-weight: bold !important;
    }
    
    
    
   
    