* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 background: #f9f9f9;
  margin: 0;
  padding: 0;
}


.steps-section {
  padding: 60px 20px;
  text-align: center;
  background-color: white;
}

.steps-section h2 {
  font-size: 26px;
  margin-bottom: 50px;
  color: #333;
}

.steps {
  display: flex;

  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.step {
  width: 220px;
}

.step-icon {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px;
}

.step-icon img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #3b5998;
  padding: 20px;
  object-fit: contain;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.step-number {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: #333;
  font-weight: bold;
  border-radius: 50%;
  padding: 5px 10px;
  font-size: 14px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.step h3 {
  font-size: 16px;
  margin: 10px 0 5px;
  color: #222;
}

.step p {
  font-size: 14px;
  color: #555;
}

.register-button {
  margin-top: 40px;
}

.register-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: #a30000;
  color: white;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.register-btn:hover {
  background-color: #e74c3c;
}


/* .hero-container {
  position: relative;
  background: url('./wedding10.jpg') no-repeat center center/cover;
  opacity: 100%;
  height: 120vh;
  color: #fff;
} */

/* Header */
.hero-header {
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-family: 'Georgia', serif;
  color: white;
}

.hero-nav a.btn-nav {
  background: #a30000;
  color: white;
  padding: 8px 16px;
  margin-left: 15px;
  border-radius: 20px;
  font-weight: bold;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
}

.hero-nav a.btn-nav:hover {
  background: #6b4000;
}

/* Main Text */
.hero-content {
  text-align: center;
  margin-top: 300px;
  z-index: 2;
}

.hero-content h1 {
  font-size: 36px;
  font-weight: 500;
}

/* Search Bar */
/* .search-bar {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  gap: 15px;
  flex-direction: row;
  flex-shrink: 0;
  overflow-x: auto;
} */
.search-bar {
  margin: 40px auto 0;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  width: fit-content;
  max-width: 90%;
  z-index: 2;
}

/* Button */
.btn-search {
  white-space: nowrap;
  background: linear-gradient(to right, #a30000, #a30000);
  color: white;
  padding: 10px 8px;
  border-radius: 20px;
  border: none;
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
  height: 38px;
  /* align-self: center; */
  bottom: 50px;
}


.btn-search:hover {
  background: linear-gradient(to right, #d32f2f, #c62828);
}
.search-bar::-webkit-scrollbar {
  display: none;
}

.search-field {
  display: flex;
  flex-direction: column;
  color: white;
  min-width: 120px;
}

.search-field label {
  margin-bottom: 5px;
  font-size: 14px;
}

.search-field input,
.search-field select {
  padding: 8px;
  border-radius: 5px;
  border: none;
  font-size: 14px;
  background: #fff;
  color: #333;
}



/* Responsive */
@media (max-width: 768px) {
  .search-bar {
    flex-wrap: wrap;
    justify-content: center;
  }

  .search-field {
    min-width: 100px;
  }

  .btn-search {
    width: 100%;
    margin-top: 10px;
  }
}
/* Why PerfectJodi Section */
.why-section {
  padding: 60px 20px;
  text-align: center;
  background: white;
  position: relative;
  z-index: 1;
}

.why-section h2 {
  font-size: 35px;
  color: #c62828;
  margin-bottom: 40px;
}

.why-grid {
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
}

.why-item {
  width: 200px;
  text-align: center;
}

.why-item img {
  height: 70px;
  margin-bottom: 15px;
}

/* Success Stories Section */
.stories-section {
  padding: 60px 20px;
  text-align: center;
  background: #fbfbfb;
}

.stories-section h2 {
  font-size: 35px;
  color: #700505;
  margin-bottom: 40px;
}

.story-cards {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.story-card {
  width: 450px;
  text-align: center;
}

.story-card img {
  width: 90%;
  height: 250px;
  object-fit:cover;
  border-radius: 40px;
  margin-bottom: 10px;
}

.story-card h3 {
  color: #c62828;
  margin-bottom: 10px;
}

.story-card p {
  font-size: 15px;
  color: #444;
}
.footer {
  background-color: #1d3557;
  color: white;
  padding: 40px 20px 0;
  margin-top: 50px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-column h3 {
  border-bottom: 2px solid #ffffff60;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-contact li {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a img {
  width: 30px;
  margin-right: 10px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-image {
  margin-top: 15px;
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000040;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding: 15px 0;
  background-color: #16324f;
  font-size: 14px;
  color: #ccc;
}

/* Plan Section */
.plan-section {
  padding: 60px 20px;
  text-align: center;
  background-color: white;
}

.plan-section h1 {
  font-size: 32px;
  color: #a30000;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.plan-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.plan-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px 20px;
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card h2 {
  font-size: 20px;
  color: #8b0000;
  margin-bottom: 10px;
}

.price {
  font-size: 18px;
  color: #444;
  margin-bottom: 20px;
  font-weight: bold;
}

.plan-card ul {
  list-style: none;
  text-align: left;
  padding: 0 20px;
  margin-bottom: 20px;
}

.plan-card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  color: black;
}

.plan-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: black;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #a30000;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #6b0000;
}
.hero-container {
  position: relative;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

/* Header */
header {
  background-color: #8b0000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-family: 'Georgia', serif;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-weight: bold;
  background: #a30000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  transition: background 0.3s ease;
}

nav a:hover {
  background: #6b0000;
}

/* Main */
.container {
  text-align: center;
  padding: 40px 20px;
}

.container h1 {
  font-family: 'Trebuchet MS', sans-serif;
  margin-bottom: 40px;
  color: #b22222;
}

.highlight {
  color: red;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: auto;
}

.card {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
}

.card img {
  display: block;
  margin: 0 auto 15px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.card h3 {
  text-align: center;
  margin-bottom: 15px;
  color: #8e2214;
}

.card ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.card ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 15px;
}

.card ul li::before {
  /* content: "•"; */
  position: absolute;
  left: 0;
  color: #8b0000;
}

.price {
  text-align: center;
  font-size: 18px;
  color: #a30000;
  margin-bottom: 10px;
}

.profile-btn {
  display: block;
  margin: 0 auto;
  padding: 10px 20px;
  border: 2px solid #a30000;
  border-radius: 25px;
  background-color: #a30000;
  cursor: pointer;
  font-weight: bold;
  color: white;
  transition: background 0.3s;
}

.profile-btn:hover {
  background-color: #6b0000;
}

/* Footer */
.footer {
  background-color: #1d3557;
  color: white;
  padding: 40px 20px 0;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-column h3 {
  border-bottom: 2px solid #ffffff60;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-contact li {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a img {
  width: 30px;
  margin-right: 10px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-image {
  margin-top: 15px;
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000040;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding: 15px 0;
  background-color: #16324f;
  font-size: 14px;
  color: #ccc;
}


/* Ensure slider is in the background */
.image-slider {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

.image-slider img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  animation: fadeSlider 15s infinite;
  align-self: center;
}

.image-slider img:nth-child(1) { animation-delay: 0s; }
.image-slider img:nth-child(2) { animation-delay: 5s; }
.image-slider img:nth-child(3) { animation-delay: 10s; }

@keyframes fadeSlider {
  0%, 100% { opacity: 0; }
  10%, 30% { opacity: 1; }
  40%, 90% { opacity: 0; }
}

/* Add z-index to bring header, content, and search above slider */
.hero-header,
.hero-content,
.search-bar {
  position: relative;
  z-index: 2;
}
.premium-members {
 padding: 60px 20px;
  text-align: center;
  background-color: white !important;
  position: relative;
  z-index: 3;
  margin-top: 0;
}


.premium-members h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 40px;
}

.member-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.member-card {
  position: relative;
  width: 220px;
  height: 300px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  background: white;
}

.member-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-details {
  position: absolute;
  bottom: 0;
  background: rgba(255,255,255,0.9);
  width: 100%;
  padding: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #121111;
}

.profile-id {
  font-weight: bold;
  color: red;
}


/* RESET & BASE */
/*home*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: url('images/couple3.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #fff;
  min-height: 100vh;
  position: relative;
}

.premium-members {
  padding: 60px 20px;
  text-align: center;
  background-color: white !important;  /* Forcefully make it white */
  position: relative;
  z-index: 2;  /* Ensure it's above body::before */
  display: block;
}

/* HEADER */
header {
  background-color: #8b0000; 
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-family: 'Georgia', serif;
  color: white;
}

.main-nav a {
  color: white;
  text-decoration: none;
  margin-left: 12px;
  font-weight: bold;
  background: #a30000; /* Replaced orange with rich red */
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.main-nav a:hover {
  background: #6b2e00; /* Dark red hover */
}

/* Dropdown Wrapper */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Button */
.dropbtn {
  background-color: #a30000;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.dropbtn:hover {
  background-color: #6b0000;
}

/* Dropdown Content Box */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
  border-radius: 8px;
  overflow: hidden;
  animation: fadeIn 0.3s ease-in-out;
}

/* Dropdown Links */
.dropdown-content a {
  color: #2c3e50;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 80px 20px;
  background-color: rgba(8, 8, 8, 0.939);
  border-bottom: 1px solid #ffffff33;
}

.hero-content h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-content p {
  font-size: 16px;
  margin-bottom: 20px;
}

.btn {
  background-color: white;
  color: #a30000;
  padding: 10px 22px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #f5f5f5;
}

/* DASHBOARD SECTION */
.dashboard {
  padding: 60px 20px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  color: #111;
  border-radius: 12px;
  margin: 30px auto;
  max-width: 1100px;
}

.dashboard h2 {
  font-size: 28px;
  color: #8b0000;
  margin-bottom: 40px;
}

.cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
}

.card {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 25px;
  width: 250px;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  color: #333;
  text-align: center;
}

.card h3 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.card p {
  font-size: 14px;
  color: #555;
}

.btn-small {
  margin-top: 10px;
  display: inline-block;
  padding: 8px 16px;
  background: linear-gradient(to right, #a30000, #cc4b4b);
  color: white;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.btn-small:hover {
  background: linear-gradient(to right, #6b0000, #992424);
}

/* FOOTER */
.footer {
  background-color: #1d3557;
  color: white;
  padding: 40px 20px 0;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-column h3 {
  border-bottom: 2px solid #ffffff60;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-contact li {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a img {
  width: 30px;
  margin-right: 10px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-image {
  margin-top: 15px;
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000040;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding: 15px 0;
  background-color: #16324f;
  font-size: 14px;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    max-width: 100%;
    text-align: center;
  }
}



/*About page*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  background-image: url('images/img3.jpg'); /* Add your background image here */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Header */
header {
  background-color: #8b0000d0;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-family: 'Georgia', serif;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-weight: bold;
  background: #a30000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  transition: background 0.3s ease;
}

nav a:hover {
  background: #6b0000;
}

/* About Section */
.container {
  max-width: 900px;
  margin: 60px auto;
  background: rgba(241, 240, 240, 0.95);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.container h1 {
  color: #b22222;
  margin-bottom: 30px;
  text-align: center;
}

.overlay .content p {
  margin: 20px 0;
  line-height: 1.7;
  font-size: 16px;
}

/* Footer */
.footer {
  background-color: #1d3557;
  color: white;
  padding: 40px 20px 0;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-column h3 {
  border-bottom: 2px solid #ffffff60;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-contact li {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a img {
  width: 30px;
  margin-right: 10px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-image {
  margin-top: 15px;
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000040;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding: 15px 0;
  background-color: #16324f;
  font-size: 14px;
  color: #ccc;
}

/*contact page*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

/* Header */
header {
  background-color: #8b0000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-family: 'Georgia', serif;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 15px;
  font-weight: bold;
  background: #a30000;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  transition: background 0.3s ease;
}

nav a:hover {
  background: #6b0000;
}

/* Container */
.container {
  max-width: 1000px;
  margin: 60px auto;
  background: #fff;
  padding: 50px 70px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
}

h1 {
  text-align: center;
  color: red;
  margin-bottom: 10px;
}

h2 {
  color: red;
  margin-bottom: 30px;
  text-align: center;
}

.address {
  text-align: center;
  margin-bottom: 30px;
}

.address img {
  vertical-align: middle;
  width: 20px;
  margin-right: 10px;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.left {
  flex: 1;
  min-width: 300px;
}

.left p {
  margin: 10px 0;
}

.left img {
  width: 18px;
  vertical-align: middle;
  margin-right: 10px;
}

.image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.image img {
  width: 100%;
  max-width: 400px;
  border-radius: 8px;
}

/* Footer */
.footer {
  background-color: #1d3557;
  color: white;
  padding: 40px 20px 0;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-column h3 {
  border-bottom: 2px solid #ffffff60;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-contact li {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a img {
  width: 30px;
  margin-right: 10px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-image {
  margin-top: 15px;
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000040;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding: 15px 0;
  background-color: #16324f;
  font-size: 14px;
  color: #ccc;
}

/*feedback*/


/*girls profile*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f5f5f5;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1000px;
  margin: 40px auto;
  background: #fff;
  padding: 30px 20px;
  border-radius: 10px;
  text-align: center;
}

.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.back-arrow {
  position: absolute;
  left: 30px;
  font-size: 24px;
  color: #000;
  text-decoration: none;
}

.header h1 {
  font-family: 'Georgia', serif;
  color: #801010;
  font-size: 30px;
}

.profiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  padding: 20px;
}

.profile img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ccc;
}

.profile h3 {
  margin-top: 10px;
  color: #801010;
}

.profile p {
  color: #d32f2f;
  font-weight: bold;
  margin-bottom: 10px;
}

.profile button {
  padding: 8px 15px;
  border: 2px solid #000;
  border-radius: 20px;
  background: #fff;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.3s ease;
}

.profile button:hover {
  background: #fbe9e7;
}

.see-more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  background-color: #801010;
  padding: 12px 25px;
  border-radius: 30px;
  color: white;
  gap: 20px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.see-more a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: bold;
}

.see-more img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
/* HEADER */
header {
  background-color: #8b0000; 
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-family: 'Georgia', serif;
  color: white;
}

.main-nav a {
  color: white;
  text-decoration: none;
  margin-left: 12px;
  font-weight: bold;
  background: #a30000; /* Replaced orange with rich red */
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.main-nav a:hover {
  background: #6b2e00; /* Dark red hover */
}

/* Dropdown Wrapper */
.dropdown {
  position: relative;
  display: inline-block;
}

/* Dropdown Button */
.dropbtn {
  background-color: #a30000;
  color: white;
  padding: 8px 16px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.dropbtn:hover {
  background-color: #6b0000;
}

/* Dropdown Content Box */
.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 99;
  border-radius: 8px;
  overflow: hidden;
  animation: fadeIn 0.3s ease-in-out;
}

/* Dropdown Links */
.dropdown-content a {
  color: #2c3e50;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background-color 0.2s ease;
}

.dropdown-content a:hover {
  background-color: #f5f5f5;
}

/* Show Dropdown on Hover */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* FOOTER */
.footer {
  background-color: #1d3557;
  color: white;
  padding: 40px 20px 0;
  margin-top: 50px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}

.footer-column h3 {
  border-bottom: 2px solid #ffffff60;
  padding-bottom: 10px;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-column ul li a {
  color: white;
  text-decoration: none;
}

.footer-column ul li a:hover {
  text-decoration: underline;
}

.footer-contact li {
  font-size: 14px;
  line-height: 1.6;
}

.social-icons a img {
  width: 30px;
  margin-right: 10px;
  border-radius: 50%;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

.footer-image {
  margin-top: 15px;
  width: 100%;
  max-width: 150px;
  border-radius: 10px;
  box-shadow: 0 0 10px #00000040;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding: 15px 0;
  background-color: #16324f;
  font-size: 14px;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav {
    margin-top: 10px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-column {
    max-width: 100%;
    text-align: center;
  }
}







/* GENERAL STYLING */
body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
   /* 👈 This makes the image fixed */
}

.with-bg {
  background-image: url('../images/bg3.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}



/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: #8b0000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
}

.main-nav a {
  color: white;
  text-decoration: none;
  margin-left: 20px;
  font-weight: bold;
}

.main-nav a:hover {
  text-decoration: underline;
}

.dashboard-icon img {
  height: 40px;
  width: 40px;
  cursor: pointer;
}

/* ===== SIDEBAR ===== */
#sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  top: 0;
  right: 0; /* opens from right */
  background-color: brown; /* brown color */
  overflow-x: hidden;
  transition: 0.3s;
  padding-top: 60px;
  z-index: 1000;
}

#sidebar a {
  padding: 10px 20px;
  text-decoration: none;
  color: white;
  display: block;
}

#sidebar .closebtn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 30px;
  color: white;
}


/* ===== HOME PAGE (DASHBOARD) ===== */
body.home-page {
  background-color: #f5f5f5;
}

.hero {
  background-color: transparent;
  color: #a30000;
  text-align: center;
  padding: 60px 20px;
  
}

.hero h1 {
  color: red;
  font-size: 32px;
  margin-bottom: 10px;
  
}

.marquee-text {
  color: #f0f0f0; /* ✅ Marquee text color */
  font-size: 16px;
  margin-top: 10px;
  
}

.dashboard {
  padding: 40px 20px;
  text-align: center;
}

.dashboard h2 {
  font-size: 28px;
  color: #a30000;
  margin-bottom: 30px;
}

.cards {
 display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.card {
 width: 300px; /* Ensure same width */
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  text-align: center;
}

.card h3 {
  color: #a30000;
}

.card p {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
}

.btn-small {
  background-color: #a30000;
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  font-weight: bold;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-small:hover {
  background-color: #6b0000;
}

/* ===== FOOTER ===== */
.footer {
  background-color: navy;
  color: white;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 20px;
}

.footer-column h3 {
  margin-bottom: 15px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
}

.footer-column ul li a:hover {
  color: white;
}

.social-icons a img {
  width: 24px;
  margin-right: 10px;
}

.footer-bottom {
  background-color: navy;
  text-align: center;
  margin-top: 20px;
  color: white;
  font-size: 14px;
}

/* ===== EDIT PROFILE PAGE ===== */
body.edit-profile-page {
  background-image: url('Images/bg3.jpg');
}

.edit-profile-container {
  max-width: 600px;
  margin: 60px auto;
  background-color: rgba(172, 152, 152, 0.95);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
  color: #333;
}

.edit-profile-container h2 {
  text-align: center;
  color: #8b0000;
  margin-bottom: 20px;
  font-size: 28px;
}

.edit-profile-container label {
  font-weight: bold;
  margin-top: 10px;
  display: block;
  color: #444;
}

.edit-profile-container input,
.edit-profile-container textarea,
.edit-profile-container select {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  margin-bottom: 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 14px;
}

.edit-profile-container button {
  background-color: #a30000;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s;
}

.edit-profile-container button:hover {
  background-color: #6b0000;
}

/* ===== MY MATCHES PAGE ===== */
body.my-matches-page {
  background-image: url('Images/bg3.jpg');
  padding: 30px;
}

.match-heading {
  text-align: center;
  color: #a30000;
  margin-bottom: 30px;
  font-size: 30px;
}

.matches-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.profile-card {
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 220px;
  text-align: center;
}

.profile-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

.profile-card h3 {
  margin-bottom: 6px;
  color: #333;
}

.profile-card p {
  margin-bottom: 10px;
  color: #555;
}

/* ===== INBOX PAGE ===== */
body.inbox-page {
  background-image: url('Images/bg3.jpg');
  padding: 30px;
}

.inbox-heading {
  text-align: center;
  color:#FFF5E1 ;
  font-size: 30px;
  margin-bottom: 40px;
}

.inbox-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.message-card {
  display: flex;
  align-items: flex-start;
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  width: 85%;
  max-width: 800px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.message-card img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 20px;
}

.message-content h3 {
  margin-bottom: 8px;
  color: #333;
}

.message-content p {
  margin-bottom: 10px;
  color: #555;
}

.reply-btn {
  padding: 8px 16px;
  background-color: #a30000;
  color: white;
  border: none;
  border-radius: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.reply-btn:hover {
  background-color: #6b0000;
}

/* ===== VIEWED-ME PAGE ===== */
body.viewed-page {
  padding: 30px;
  background-color: #f5f5f5;
}

.heading {
  text-align: center;
  color: #FFF5E1;
  font-size: 30px;
  margin-bottom: 40px;
}

.viewed-container {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

.viewer-card {
  display: flex;
  align-items: center;
  background-color: white;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  width: 85%;
  max-width: 800px;
}

.viewer-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 20px;
  border: 3px solid #a30000;
}

.viewer-info h3 {
  margin-bottom: 6px;
  color: #333;
}

.viewer-info p {
  margin-bottom: 10px;
  color: #555;
}

/* ===== UPLOAD PHOTOS PAGE ===== */
body.upload-page {
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
}

.upload-box {
  background: white;
  padding: 30px;
  margin-top: 60px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 90%;
  max-width: 600px;
}

.upload-box h2 {
  text-align: center;
  color: #8b0000;
  margin-bottom: 10px;
}

.upload-box p {
  text-align: center;
  font-size: 14px;
  color: #333;
  margin-bottom: 20px;
}

.file-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 20px;
}

.file-group input[type="file"] {
  flex: 1 1 45%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.upload-btn {
  display: block;
  margin: 0 auto;
  padding: 10px 22px;
  background-color: #8b0000;
  color: white;
  border: none;
  border-radius: 25px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.upload-btn:hover {
  background-color: #5d0000;
}


/* plans payment page */


.payment-container {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.payment-container h1 {
  text-align: center;
  color: #a30000;
  margin-bottom: 10px;
}

.payment-container p {
  text-align: center;
  margin-bottom: 30px;
  color: #555;
}

.plan-summary {
  background: #fff7f7;
  border: 1px solid #e5e5e5;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.plan-summary h2 {
  color: #a30000;
  margin-bottom: 5px;
}

.plan-summary span {
  color: #444;
}

.plan-summary p {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: bold;
}

.plan-summary ul {
  list-style: none;
  padding-left: 0;
}

.plan-summary ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.payment-form h3 {
  margin-bottom: 15px;
  color: #444;
}

.payment-form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

.card-info input,
.upi-info input {
  width: 100%;
  padding: 10px;
  margin-top: 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.card-details {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.card-details input {
  flex: 1;
}

.btn-pay {
  display: block;
  margin: 30px auto 0;
  background: #a30000;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-pay:hover {
  background: #800000;
}

/* Responsive */
@media (max-width: 600px) {
  .card-details {
    flex-direction: column;
  }

  .btn-pay {
    width: 100%;
  }
}

/* ======= Premium Members Section ======= */
.premium-members {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.premium-members h2 {
  font-size: 30px;
  color: #8b0000;
  font-weight: bold;
  margin-bottom: 40px;
}

.premium-members .member-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.premium-members .member-card {
  width: 220px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
}

.premium-members .member-card:hover {
  transform: scale(1.05);
}

.premium-members .member-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #ddd;
}

.premium-members .member-details {
  padding: 15px;
  font-size: 14px;
  color: #333;
}

.premium-members .profile-id {
  font-weight: bold;
  color: #8b0000;
  margin-bottom: 5px;
}

/* success stories */

.success-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.success-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: 600;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
}

.story {
  background-color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.story img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.story h3 {
  color: #b22222;
  font-size: 18px;
  margin: 10px 0 5px;
}

.story p {
  font-style: italic;
  font-size: 14px;
  color: #333;
}





