@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  width: 100%;
  height: 100vh;
  background: #fff;
  overflow-x: hidden;
  font-family: Verdana, sans-serif;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7); /* semi-transparent black */
  backdrop-filter: blur(6px); /* smooth blur behind navbar */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  z-index: 1000;
  box-sizing: border-box;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
}

.logo {
  color: white;
  font-size: 24px;
  font-weight: bold;
  flex: 1; /* takes left side space */
}

nav {
  flex: 3; /* takes right side space */
}

nav ul {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  background: linear-gradient(-45deg, #d737ff, #58a8d6, #dd1665, #ff8033, #6e5bda);
  animation: myGradient 12s infinite;


  /* alternating corners */
  border-top-left-radius: 0;        /* square */
  border-top-right-radius: 30px;    /* rounded */
  border-bottom-right-radius: 0;    /* square */
  border-bottom-left-radius: 30px;  /* rounded */
}



@keyframes myGradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

nav ul {
  background-size: 300% 300%;
  animation: myGradient 15s ease infinite;
}

nav ul li {
  list-style: none;
}

nav ul li a {
  color: white;
  text-decoration: none;
  padding: 12px 22px;
  display: block;
  font-size: 18px;
  border-radius: 50px; /* Pill shape */
  transition: 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
  background-color: rgba(255, 255, 255, 0.2); /* Transparent background */
  color: black; /* Change text to black on hover */
  text-shadow: none; /* Optional: remove glow when black */
  backdrop-filter: blur(4px); /* Optional glass effect */
  animation: myFlash 1.5s linear infinite;
}


@keyframes myFlash {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}

/* Keep Sign Up | Sign In aligned at end without affecting existing styles */
nav ul li.auth {
  margin-left: auto; /* push to right end */
  display: flex;
  align-items: center;
  gap: 5px;
  padding-right: 15px;
  white-space: nowrap;
}

nav ul li.auth a {
  padding: 10px 18px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

nav ul li.auth a:hover {
  background-color: rgba(255, 255, 255, 0.2); /* transparent hover */
  color: black; /* text turns black on hover */
  text-shadow: none;
  backdrop-filter: blur(4px);
  animation: myFlash 1.5s linear infinite;
}

/* Optional flash animation */
@keyframes myFlash {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}



/* Hero Section */
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300;500;700&display=swap');

.hero {
  background-image: url('images/backgroundImage.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  font-family: 'Rubik', sans-serif;
  color: white;
  margin-top: 80px;
  overflow: hidden;
  z-index: 1;
}

/* Single dark overlay for improved text visibility */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.45); /* softer transparent overlay */
  z-index: 0; /* stays behind text */
}

/* Hero content stays above overlay */
.hero-content {
  position: relative;
  z-index: 2;
  animation: slideFade 1.5s ease-in-out both;
  max-width: 90%;
}

/* Title with black outline for pop */
.hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: rgb(255, 255, 255);
  text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  animation: fadeInText 1.2s ease-in-out forwards;
}

/* Subtitle paragraph */
.hero p {
  font-size: 20px;
  font-weight: 300;
  color: #f5f3f8;
  margin-bottom: 40px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
  animation: fadeInText 1.6s ease-in-out forwards;
}

/* Call-to-action button */
.btn {
  background: transparent;
  border: 2px solid #ffffff;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: rgb(253, 64, 137);
  color: #000;
  transform: translateY(-3px);
}

/* Animations */
@keyframes slideFade {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInText {
  0% { opacity: 0; transform: scale(0.95); }
  100% { opacity: 1; transform: scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  .btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}


/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 60px 40px;
  background: url('images/features-bg.jpg') no-repeat center center/cover;
  background-attachment: scroll;  /* ✅ changed from fixed to scroll */
  position: relative;
  z-index: 2;
}

.feature {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 2px 2px 15px rgba(223, 146, 193, 0.781);
  text-align: center;
}
@media(max-width: 767px) {
  .features {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}


.feature h3 {
  margin-bottom: 15px;
  color: #ff416c;
}

.feature p {
  font-size: 16px;
  color: #333;
}
.feature::after {
  content: "★";
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #ff416c;
  opacity: 0;
  transform: scale(0.6);
  transition: all 0.4s ease;
}
.feature:hover::after {
  opacity: 1;
  transform: scale(1.1);
}

/* Hover effect */
.feature:hover {
  transform: translateY(-5px);
  box-shadow: 4px 4px 20px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

/* Footer */
footer {
  background: linear-gradient(to right, #111, #222);
  color: white;
  padding: 30px 20px;
  text-align: center;
  font-family: 'Rubik', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Footer wave glow */
footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #ff416c, #ff4b2b, #ff416c);
  animation: glowingLine 4s linear infinite;
}

@keyframes glowingLine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Optional: Footer links */
footer a {
  color: #ffcccc;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 500;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(255,255,255,0.8);
}


/* Responsive */
@media(max-width: 767px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 16px;
  }

  nav ul {
    flex-direction: column;
    border-radius: 0;
  }

  nav ul li a {
    padding: 10px;
    font-size: 16px;
  }

  .features {
    flex-direction: column;
    padding: 30px 10px;
  }
}



/* about */
/* Import font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&display=swap');



main.about-page {
  max-width: 1200px;
  margin: 80px auto;
  padding: 20px;
}

/* Top Section Layout */
/* Top Section Layout */
.top-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 40px 20px;
  background: #f9f9f9;
  overflow: hidden;
}

/* Title Box with Solid Background */
/* Main Title Section with Full-Width Transparent Box */
.main-title-box {
  width: 100vw;
  background: rgba(215, 65, 119, 0.15); /* Transparent pink */
  margin: 0 auto 10px auto;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  animation: slideFadeIn 1s ease-in-out;
  box-shadow: 0 4px 15px rgba(215, 65, 119, 0.2);
}

.main-title {
  font-size: 48px;
  color: #d74177;
  font-weight: 800;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-shadow: 1px 1px 5px rgba(255, 255, 255, 0.4);
  letter-spacing: 1.2px;
  margin: 0;
  animation: fadeInScale 1s ease-out;
}

/* Animations */
@keyframes slideFadeIn {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Text */
@media (max-width: 768px) {
  .main-title {
    font-size: 32px;
    padding: 10px;
  }

  .main-title-box {
    padding: 40px 10px;
  }
}

/* Responsive Styling */
@media (max-width: 768px) {
  .main-title {
    font-size: 36px;
  }

  .main-title-box {
    padding: 30px 20px;
    max-width: 100%;
  }
}


.top-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
   margin-top: 0;
  padding-top: 0;
  gap: 20px;
  align-items: flex-start;
}

.left-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(215, 65, 119, 0.1);
}

.left-card h2 {
  color: #d74177;
  margin-bottom: 15px;
}

.left-card p {
  line-height: 1.7;
  font-size: 16px;
}

/* Right cards stacked */
.right-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.image-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  padding: 10px;
}

.image-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.image-card p {
  margin-top: 10px;
  font-weight: 600;
  color: #555;
  font-size: 16px;
}

@media (max-width: 768px) {
  .right-cards {
    width: 100%;
  }

  .image-card img {
    max-width: 100%;
    height: auto;
  }
}

/* Scroll sections */
.section {
  background: white;
  margin: 40px 0;
  padding: 30px;
  border-left: 6px solid #d74177;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(215, 65, 119, 0.1);
  animation: fadeInUp 0.8s ease-in-out forwards;
}

.section h2 {
  color: #d74177;
  margin-bottom: 15px;
}

.section p,
.section ul {
  font-size: 16px;
  line-height: 1.8;
}

.section ul {
  padding-left: 20px;
}

.section ul li {
  margin-bottom: 12px;
}
/* Modern Card Glow Effect */
.left-card,
.image-card {
  transition: all 0.4s ease;
  position: relative;
}

.left-card:hover,
.image-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(215, 65, 119, 0.25);
}

/* Animated entry effect */
@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.left-card,
.image-card {
  animation: fadeInCard 0.8s ease-in-out both;
}

/* Responsive Typography for Cards */
@media (max-width: 768px) {
  .left-card p,
  .image-card p {
    font-size: 15px;
  }
}

/* Optional: Add a floating tag or icon */
.image-card::after {
  content: '★';
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 20px;
  color: #d74177;
  opacity: 0.6;
}

footer {
  background: #f2f2f2;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
  font-size: 15px;
  color: #888;
}

/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 900px) {
  .top-content {
    grid-template-columns: 1fr;
  }

  nav ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    right: 0;
    top: 60px;
    padding: 10px 20px;
    display: none;
  }

  nav ul.show {
    display: flex;
  }
}
.about-cta {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: rgba(215, 65, 119, 0.08); /* soft pink transparent */
  border-left: 5px solid #d74177;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(215, 65, 119, 0.1);
  text-align: center;
}

.about-cta h3 {
  color: #d74177;
  font-size: 24px;
  margin-bottom: 15px;
}

.about-cta p {
  color: #555;
  font-size: 16px;
  margin-bottom: 25px;
  line-height: 1.6;
}

/* Stylish button inside CTA */
.about-cta .btn {
  background: #d74177;
  color: white;
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(215, 65, 119, 0.3);
}

.about-cta .btn:hover {
  background: #c23268;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(215, 65, 119, 0.5);
}
/* Fix pink title box positioning & spacing */
.main-title-wrapper {
  margin: 0; /* Remove any default spacing */
  padding: 0;
}

.main-title-box {
  width: 100%;           /* 100vw se 100% kiya */
  max-width: 1200px;     /* container width ke barabar */
  margin: 0 auto -3px auto; /* thoda zyada negative margin for overlap */
  padding: 60px 30px;    /* padding thoda kam kiya */
  background: rgba(215, 65, 119, 0.15);
  box-shadow: 0 4px 15px rgba(215, 65, 119, 0.2);
  position: relative;
  z-index: 10;
}


/* Optional: Make sure the next section has a top margin */
.top-section {
  height: auto; /* 100vh se change kiya hai */
  padding: 25px 25px; /* thoda kam padding */
}
/* Import a unique font */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Raleway:wght@400;600&display=swap');

.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  color: #d74177;
  animation: fadeInSlideDown 1s ease-out;
  margin-bottom: 10px;
}

.main-title-desc {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
  animation: fadeInSlideUp 1.5s ease-in-out;
}

/* Animation keyframes */
@keyframes fadeInSlideDown {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInSlideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}






/* services */
.services-main {
  max-width: 1000px;
  margin: 80px auto 40px auto;
  padding: 20px 30px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

/* Hero Section */
.services-hero {
  text-align: center;
  margin-bottom: 50px;
  animation: fadeInDown 1s ease forwards;
  opacity: 0;
}
.services-hero h1 {
  font-size: 3.2rem;
  color: #d74177;
  font-weight: 700;
  letter-spacing: 1.2px;
  margin-bottom: 0.3em;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(215, 65, 119, 0.5);
}
.services-hero p {
  font-size: 1.15rem;
  margin-top: 10px;
  color: #555;
  font-weight: 500;
}

/* Each Service */
.service {
  position: relative; /* needed for absolute positioning inside */
  margin-bottom: 40px;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 12px rgba(215, 65, 119, 0.1);
  transition: box-shadow 0.3s ease;
}

.service:hover {
  box-shadow: 0 10px 20px rgba(215, 65, 119, 0.3);
}

.service:hover::before {
  content: '•';
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 40px;  /* bigger dot */
  color: #d74177;
  animation: blink 1.2s infinite;
  pointer-events: none; /* so it doesn’t interfere with hover */
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}


.service:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(215, 65, 119, 0.2);
}

.service h2 {
  color: #d74177;
  font-size: 1.8rem;
  margin-bottom: 0.5em;
  font-weight: 700;
  border-left: 6px solid #d74177;
  padding-left: 12px;
  letter-spacing: 0.6px;
}

.service p, 
.service ul {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  font-weight: 500;
}

.service ul {
  list-style: none;  /* <-- add this line */
  padding-left: 22px;
  margin-top: 12px;
}


.service ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
  transition: color 0.3s ease;
}
.service ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #d74177;
  font-weight: 700;
  font-size: 1.2rem;
  line-height: 1;
}

/* CTA Section */
.service-cta {
  text-align: center;
  background: #fff0f6;
  padding: 50px 30px;
  border-radius: 18px;
  margin-top: 70px;
  box-shadow: 0 8px 30px rgba(215, 65, 119, 0.1);
  animation: fadeIn 1s ease forwards;
  opacity: 0;
}

.service-cta h2 {
  font-size: 2.4rem;
  color: #d74177;
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.service-cta p {
  font-size: 1.15rem;
  margin-bottom: 25px;
  color: #5c375d;
  font-weight: 600;
}

.service-cta .btn {
  padding: 14px 35px;
  background: linear-gradient(135deg, #d74177, #ff416c);
  color: white;
  text-decoration: none;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(215, 65, 119, 0.4);
  transition: all 0.4s ease;
  display: inline-block;
  letter-spacing: 1px;
  cursor: pointer;
}

.service-cta .btn:hover {
  background: linear-gradient(135deg, #ff416c, #d74177);
  box-shadow: 0 12px 30px rgba(255, 65, 108, 0.6);
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}



/* contact */
.contact-container {
  max-width: 1000px;
  margin: auto;
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  margin-top: 80px;
  background: linear-gradient(to right, #f8f9ff, #ffffff);
  border-radius: 12px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.contact-info {
  text-align: center;
  margin-bottom: 40px;
}

.contact-info h1 {
  font-size: 2.5em;
  color: #d74177;
  position: relative;
  margin-bottom: 0.5em;
}

.contact-info h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background-color: #d74177;
  margin: 10px auto 0;
  border-radius: 3px;
}

.contact-info .info-block p {
  font-size: 1rem;
  margin: 8px 0;
  color: #555;
}

.social-icons {
  margin-top: 20px;
}

.social-icons a {
  text-decoration: none;
  color: #d74177;
  margin: 0 12px;
  font-size: 26px;
  transition: transform 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.social-icons a:hover {
  color: #b83764;
  transform: scale(1.3) translateY(-4px);
  box-shadow: 0 6px 12px rgba(215, 65, 119, 0.4);
  animation: bounce 0.4s ease;
}

/* Bounce animation */
@keyframes bounce {
  0%, 100% {
    transform: scale(1.3) translateY(-4px);
  }
  50% {
    transform: scale(1.35) translateY(-8px);
  }
}


/* Form Styling */
.contact-form form {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(215, 65, 119, 0.15);
  position: relative;
  overflow: hidden;
}

/* Floating label container */
.form-group {
  position: relative;
  margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 16px 16px 16px 12px;
  font-size: 16px;
  border: 1.5px solid #ddd;
  border-radius: 8px;
  background: transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
  resize: none;
  font-family: 'Segoe UI', sans-serif;
}

/* Hide native placeholder */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: transparent;
  transition: color 0.3s ease;
}

/* Floating label */
.contact-form label {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  padding: 0 6px;
  color: #999;
  font-size: 16px;
  pointer-events: none;
  transition: all 0.3s ease;
  font-family: 'Segoe UI', sans-serif;
}

/* When input is focused or filled */
.contact-form input:focus,
.contact-form input:not(:placeholder-shown),
.contact-form textarea:focus,
.contact-form textarea:not(:placeholder-shown) {
  border-color: #d74177;
  box-shadow: 0 0 8px rgba(215, 65, 119, 0.25);
}

/* Move label up on focus or filled */
.contact-form input:focus + label,
.contact-form input:not(:placeholder-shown) + label,
.contact-form textarea:focus + label,
.contact-form textarea:not(:placeholder-shown) + label {
  top: -10px;
  font-size: 13px;
  color: #d74177;
  font-weight: 600;
}

/* Textarea height */
.contact-form textarea {
  min-height: 120px;
}

/* Submit button */
.contact-form button {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #d74177, #ff416c);
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(215, 65, 119, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
  background: linear-gradient(135deg, #ff416c, #d74177);
  box-shadow: 0 12px 30px rgba(255, 65, 108, 0.6);
  transform: scale(1.05);
}

/* Map Section */
.map-section {
  margin-top: 60px;
}

.map-section h2 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #d74177;
  position: relative;
}

.map-section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #d74177;
  margin: 8px auto 0;
  border-radius: 3px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact-form form {
    padding: 20px;
  }

  .contact-info h1 {
    font-size: 2em;
  }
}




/* Dropdown */
/* Dropdown Menu Styles */
nav ul li.dropdown {
  position: relative;
}

nav ul li .dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 5px;
}

nav ul li .dropdown-content li {
  display: block;
}

nav ul li .dropdown-content li a {
  color: #333;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

nav ul li .dropdown-content li a:hover {
  background-color: #f2f2f2;
}

nav ul li.dropdown:hover .dropdown-content {
  display: block;
}
/* Additions to existing dropdown for transparent pink style */
nav ul li .dropdown-content {
  background-color: rgba(255, 192, 203, 0.3); /* transparent pink */
  border: 1px solid #b71c46; /* dark pink border */
  border-radius: 12px; /* rounded dropdown */
  backdrop-filter: blur(6px); /* optional: for modern blur effect */
}

nav ul li .dropdown-content li a {
  border-radius: 999px; /* pill shape */
  transition: background 0.3s ease, color 0.3s ease;
}

nav ul li .dropdown-content li a:hover {
  background-color: #e91e63; /* dark pink */
  color: #df256c; /* white text */
}
/* Enhanced dropdown styling */
nav ul li .dropdown-content {
  background-color: rgba(255, 255, 255, 0.95); /* soft white base */
  border: 1.5px solid #b71c46; /* dark pink border */
  border-radius: 12px;
  backdrop-filter: blur(6px); /* optional for depth */
  transition: background 0.3s ease, border 0.3s ease;
}

/* Link styles */
nav ul li .dropdown-content li a {
  color: #d81b60; /* medium pink text */
  border-radius: 999px; /* pill shape */
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover effect */
nav ul li .dropdown-content li a:hover {
  background-color: rgba(255, 182, 193, 0.4); /* transparent baby pink */
  color: #e61094; /* black text on hover */
}
nav ul li .dropdown-content {
  background: rgba(255, 255, 255, 0.95) !important; /* force override */
  border: 1.5px solid #b71c46;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: background 0.3s ease, border 0.3s ease;
}




/* Careers */
/* Import Google Fonts - Montserrat and Lato */
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Montserrat:wght@600&display=swap');

main.careers-main {
  padding: 2rem 3rem;
  margin-top: 90px;
  font-family: 'Lato', sans-serif;
  animation: fadeIn 1s ease forwards;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px);}
  to { opacity: 1; transform: translateY(0);}
}

.careers-hero {
  text-align: center;
  background: linear-gradient(135deg, #e079e4, #e00a8e);
  color: white;
  padding: 4rem 2rem;
  border-radius: 15px;
  box-shadow: 0 6px 15px rgba(189, 11, 120, 0.5);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.05em;
  user-select: none;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

/* Subtle animated background highlight */
.careers-hero::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  top: -100px;
  right: -100px;
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse {
  0%, 100% { transform: scale(1);}
  50% { transform: scale(1.3);}
}

.careers-hero h1 {
  margin: 0;
  font-size: 3rem;
  position: relative;
  z-index: 1;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.careers-hero p {
  font-size: 1.4rem;
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
  font-weight: 300;
}

.careers-section {
  margin-top: 2.5rem;
}

.job-card {
  background-color: #fff;
  border: none;
  padding: 2rem 2.5rem;
  margin-bottom: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  color: #333;
  position: relative;
  overflow: hidden;
}

/* Star icon appears at right top corner on hover */
.job-card:hover::after {
  content: '★';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  color: #ff416c;
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease;
}

.job-card::after {
  content: '';
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  color: #ff416c;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(255, 65, 108, 0.3);
}

.job-card h3 {
  color: #0b3d91;
  margin-bottom: 0.8rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
}

.job-card p {
  margin: 0.4rem 0;
  font-weight: 400;
  line-height: 1.5;
  color: #444;
}

.apply-btn {
  display: inline-block;
  margin-top: 1.5rem;
  background-color: #ff416c;
  color: white;
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 4px 15px rgba(255, 65, 108, 0.5);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  user-select: none;
}

.apply-btn:hover {
  background-color: #e33a63;
  box-shadow: 0 6px 25px rgba(227, 58, 99, 0.7);
  transform: scale(1.05);
}

/* Responsive tweaks */
@media (max-width: 768px) {
  main.careers-main {
    padding: 1.5rem 1.5rem;
  }
  .careers-hero {
    padding: 3rem 1.5rem;
  }
  .careers-hero h1 {
    font-size: 2.2rem;
  }
  .job-card {
    padding: 1.5rem 1.8rem;
  }
}

.careers-intro {
  max-width: 800px;
  margin: 3rem auto;
  padding: 1.5rem 2rem;
  background: #f9fafb;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(8, 8, 8, 0.08);
  font-family: 'Poppins', sans-serif;
  color: #222;
  animation: fadeSlideIn 1s ease forwards;
  opacity: 0; /* start hidden for animation */
  transform: translateY(20px);
}

.careers-intro h2 {
  font-size: 2.2rem;
  color: #5dc4e4;
  margin-bottom: 1.2rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.careers-intro ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.careers-intro ul li {
  position: relative;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-left: 2.8rem;
  line-height: 1.5;
  color: #444;
  font-weight: 500;
  transition: color 0.3s ease;
}

.careers-intro ul li strong {
  color: #dd4c6e;
  font-weight: 700;
}

.careers-intro ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: #f56587;
  font-size: 1.4rem;
  transform: scale(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.careers-intro ul li:hover {
  color: #0a0a0a;
  cursor: default;
}

.careers-intro ul li:hover::before {
  transform: scale(1.2);
}

/* Fade and slide animation */
@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.open-positions {
  max-width: 900px;
  margin: 3rem auto;
  padding: 1.5rem 2rem;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  font-family: 'Poppins', sans-serif;
}

.open-positions h2 {
  text-align: center;
  font-size: 2rem;
  color: #0b3d91;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.open-positions h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff416c;
  margin: 10px auto 0;
  border-radius: 2px;
}

.careers-apply {
  background: linear-gradient(135deg, #8efff9, #1c5ed9);
  color: rgb(20, 20, 20);
  padding: 3rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem auto;
  max-width: 800px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  font-family: 'Poppins', sans-serif;
  animation: fadeInUp 1.2s ease;
}

.careers-apply h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  position: relative;
}

.careers-apply h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ff416c;
  margin: 10px auto 0;
  border-radius: 3px;
}

.careers-apply p {
  font-size: 1.1rem;
  margin: 0.6rem 0;
  line-height: 1.6;
}

.careers-apply a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.careers-apply a:hover {
  color: #ffdede;
}

/* Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  text-align: center;
  padding: 1rem;
  background-color: #222;
  color: white;
  margin-top: 3rem;
}



/* Testonomials */
.testimonials-section {
  padding: 4em 2em;
  background: linear-gradient(to bottom, #f0f4ff, #ffffff);
  text-align: center;
  margin-top: 80px;
  font-family: 'Poppins', sans-serif;
  animation: fadeIn 1s ease;
}

.testimonials-section h1 {
  font-size: 2.8em;
  margin-bottom: 1.5em;
  color: #0b3d91;
  position: relative;
}

.testimonials-section h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #ff416c;
  margin: 10px auto 0;
  border-radius: 5px;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 2em;
  max-width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .testimonials-container {
    grid-template-columns: 1fr; /* 1 card per row on smaller screens */
  }
}


.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 2em 1.5em;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "★";
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.5em;
  color: #ff416c;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s, transform 0.4s;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(224, 75, 167, 0.966);
}

.testimonial-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-text {
  font-size: 1.1em;
  font-style: italic;
  color: #333;
  margin-bottom: 1.2em;
  position: relative;
  line-height: 1.6;
}

.client-name {
  font-weight: 600;
  font-size: 1.1em;
  color: #0b3d91;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Avatar Images */
.client-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;        /* Ensures the image fills the circle without distortion */
  object-position: top center;  /* Focus on top center of image */
  border: 3px solid #ff416c;
  margin-bottom: 1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}


.testimonial-card:hover .client-avatar {
  transform: scale(1.05);
}

/* Star Ratings */
.testimonial-rating {
  color: #FFD700;
  font-size: 1.2em;
  margin-bottom: 0.8em;
}

/* Featured Badge */
.featured-badge {
  display: inline-block;
  background: #ff416c;
  color: #fff;
  font-size: 0.8em;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 0.8em;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* CTA Section */
.testimonial-cta {
  background: linear-gradient(135deg, #0b3d91, #ff416c);
  color: #fff;
  text-align: center;
  padding: 3em 1.5em;
  margin-top: 4em;
  border-radius: 10px;
  animation: fadeInUp 1s ease;
}

.testimonial-cta h2 {
  font-size: 2.2em;
  margin-bottom: 0.5em;
  font-family: 'Poppins', sans-serif;
}

.testimonial-cta p {
  font-size: 1.2em;
  margin-bottom: 1.2em;
}

.testimonial-cta .apply-btn {
  background: #fff;
  color: #0b3d91;
  font-weight: 600;
  font-size: 1em;
  padding: 0.7em 1.4em;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(255, 255, 255, 0.2);
}

.testimonial-cta .apply-btn:hover {
  background: #f7f7f7;
  color: #ff416c;
  transform: scale(1.05);
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 1em;
}
html {
  scroll-behavior: smooth;
}




/* modal */

  /* Modal container */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: opacity 0.3s ease;
}

/* Modal box */
.modal-content {
  background: linear-gradient(135deg, #f9f9f9, #fff);
  border-radius: 14px;
  padding: 40px 50px;
  max-width: 420px;
  width: 90%;
  box-shadow: 0 25px 40px rgba(215, 65, 119, 0.2);
  position: relative;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  animation: modalFadeIn 0.35s ease forwards;
}

/* Fade in animation */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close button */
.close-btn {
  position: absolute;
  right: 20px;
  top: 20px;
  font-size: 28px;
  font-weight: 700;
  color: #d74177;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
}
.close-btn:hover {
  color: #a53059;
}

/* Modal heading */
.modal-content h2 {
  margin-bottom: 28px;
  font-weight: 700;
  font-size: 28px;
  color: #d74177;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Form styling */
.modal-content form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Inputs */
.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="password"] {
  padding: 14px 18px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 10px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: inherit;
  background-color: #fff;
  outline-offset: 2px;
}

.modal-content input[type="text"]:focus,
.modal-content input[type="email"]:focus,
.modal-content input[type="password"]:focus {
  border-color: #d74177;
  box-shadow: 0 0 8px rgba(215, 65, 119, 0.5);
  outline: none;
}

/* Buttons */
.modal-content button {
  background: linear-gradient(135deg, #d74177, #ff416c);
  color: white;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 8px 25px rgba(215, 65, 119, 0.4);
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.modal-content button:hover {
  background: linear-gradient(135deg, #ff416c, #d74177);
  box-shadow: 0 12px 40px rgba(255, 65, 108, 0.7);
  transform: scale(1.05);
}

/* Auth links in header */
.auth {
  font-family: 'Segoe UI', sans-serif;
}
.auth a {
  color: #d74177;
  text-decoration: none;
  padding: 0 8px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.3s ease;
}
.auth a:hover {
  color: #b83764;
}

/* User account dropdown */
.user-account {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: black;
  font-size: 1.1rem;
  cursor: pointer;
  user-select: none;
  padding: 0 10px;
  gap: 6px;
}

/* Profile icon style */
.user-account i.profile-icon {
  font-size: 20px;
  color: black;
}

/* Dropdown menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 130%;
  right: 0;
  background-color: #fff;
  border: 1px solid #d74177;
  border-radius: 6px;
  min-width: 100px;
  box-shadow: 0 4px 10px rgba(215, 65, 119, 0.2);
  z-index: 1500;
}
.dropdown-menu li {
  list-style: none;
}
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #d74177;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.dropdown-menu li a:hover {
  background-color: #d74177;
  color: #fff;
  border-radius: 6px;
}

/* Show dropdown on hover */
.user-account:hover .dropdown-menu {
  display: block;
}

/* Responsive modal */
@media (max-width: 480px) {
  .modal-content {
    padding: 30px 20px;
  }
}


/* sabscribe */
.subscribe-btn {
  background: #d74177;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}
.subscribe-btn:hover {
  background: #b83764;
}


/* Generic Modal Style */
/* Modal background */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(253, 251, 251, 0.8); /* light pink translucent */
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  backdrop-filter: blur(6px);
}

/* Modal content box */
.modal-content {
  background: #fff0f6; /* very light pink */
  border-radius: 16px;
  padding: 35px 45px;
  width: 90%;
  max-width: 420px;
  box-shadow: 0 12px 28px rgba(255, 105, 180, 0.3); /* pinkish shadow */
  position: relative;
  animation: slideDown 0.35s ease forwards;
  border: 2px solid #e91e63; /* vibrant pink border */
}

/* Slide down animation */
@keyframes slideDown {
  from {opacity: 0; transform: translateY(-30px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Close button */
.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #e91e63; /* pink */
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-btn:hover {
  color: #c2185b; /* darker pink */
}

/* Headings with icons */
.modal-content h2 {
  font-size: 26px;
  margin-bottom: 18px;
  color: #b71c46; /* deep pink */
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

/* Input fields */
.modal-content input[type="text"],
.modal-content input[type="email"],
.modal-content input[type="password"] {
  width: 100%;
  padding: 14px 18px;
  margin: 12px 0 22px 0;
  border-radius: 10px;
  border: 2px solid #f48fb1; /* soft pink border */
  font-size: 16px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background-color: #fff0f6;
}
.modal-content input[type="text"]:focus,
.modal-content input[type="email"]:focus,
.modal-content input[type="password"]:focus {
  outline: none;
  border-color: #e91e63; /* strong pink */
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
}

/* Buttons */
.modal-content button {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-radius: 10px;
  background: linear-gradient(90deg, #e91e63, #ddd9da);
  color: white;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.4);
}
.modal-content button:hover {
  background: linear-gradient(90deg, #f48fb1, #e91e63);
  box-shadow: 0 7px 20px rgba(233, 30, 99, 0.6);
}

/* Input group with icon */
.input-group {
  position: relative;
}
.input-group .email-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #e91e63;
  font-size: 20px;
  pointer-events: none;
}
.input-group input {
  padding-left: 48px !important;
  background-color: #fff0f6;
}

/* Subscribe popup specific */
.subscribe-popup p {
  color: #a62457;
  margin-bottom: 28px;
  font-size: 17px;
  text-align: center;
  font-style: italic;
}

/* User account dropdown in navbar */
.user-account {
  position: relative;
  cursor: pointer;
  color: #141414; /* deep pink */
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
  user-select: none;
}
.user-account .profile-icon {
  color: #e91e63;
  font-size: 22px;
}

/* Fix flicker & instant close by using hover with delay using pointer-events */
.user-account .dropdown-menu {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 32px;
  right: 0;
  background: #fff0f6;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.15);
  list-style: none;
  padding: 12px 0;
  width: 120px;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
  z-index: 1000;
}

/* Show dropdown on hover */
.user-account:hover .dropdown-menu,
.user-account .dropdown-menu:hover {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.user-account .dropdown-menu li a {
  color: #b71c46;
  text-decoration: none;
  display: block;
  padding: 10px 18px;
  font-size: 15px;
  transition: background 0.3s ease, color 0.3s ease;
  border-radius: 8px;
}
.user-account .dropdown-menu li a:hover {
  background: #e91e63;
  color: white;
}

/* Make sure dropdown does not flicker when moving between menu and parent */
.user-account,
.user-account .dropdown-menu {
  /* Prevent flicker by pointer-events on parent and child */
  pointer-events: auto;
}






/* Our Tools */

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background: #fafafa;
}

/* Flex layout to push footer to bottom */
.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Tool container with fade-in animation */
.tool-container {
  flex: 1;
  max-width: 900px;          /* wider rectangle */
  margin: 5rem auto 2rem;
  padding: 3rem 3rem 3rem 3rem;
  background: white;
  border-radius: 24px;       /* smoother rounded rectangle */
  box-shadow:
    0 8px 20px rgba(233, 30, 99, 0.15),
    0 0 30px rgba(233, 30, 99, 0.1);
  text-align: center;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(20px);
  transition: box-shadow 0.3s ease;
}

/* Hover shadow for subtle glow */
.tool-container:hover {
  box-shadow:
    0 12px 30px rgba(233, 30, 99, 0.3),
    0 0 40px rgba(233, 30, 99, 0.2);
}

/* Heading */
.tool-container h1 {
  font-size: 2.4rem;
  color: #e91e63;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-shadow: 0 1px 3px rgba(233, 30, 99, 0.3);
}

/* Input field styling */
.tool-container input[type="text"] {
  padding: 14px 18px;
  width: 75%;
  border: 2.5px solid #e91e63;
  border-radius: 12px;
  font-size: 1.1rem;
  margin-right: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}

/* Input focus effect */
.tool-container input[type="text"]:focus {
  border-color: #c2185b;
  box-shadow: 0 0 8px rgba(194, 24, 91, 0.6);
}

/* Button styling */
.tool-container button {
  padding: 14px 28px;
  background: #e91e63;
  border: none;
  color: white;
  font-size: 1.1rem;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Button hover effect */
.tool-container button:hover {
  background: #c2185b;
  box-shadow: 0 0 12px rgba(194, 24, 91, 0.8);
}

/* Result box styling */
.result-box {
  margin-top: 2.5rem;
  text-align: left;
  font-size: 1rem;
  color: #333;
  background: #fff0f5;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.12);
  min-height: 120px;
  overflow-wrap: break-word;
  line-height: 1.5;
}

/* Result list padding */
.result-box ul {
  padding-left: 1.5rem;
}

/* Footer styling */
footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 1.2rem 1rem;
  margin-top: auto; /* push footer to bottom */
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  user-select: none;
}

footer a {
  color: #e91e63;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
  transition: color 0.3s ease;
}

footer a:hover {
  text-decoration: underline;
  color: #ff3f7d;
}

/* Fade in up animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

    footer {
      background-color: #111;
      color: white;
      text-align: center;
      padding: 1rem;
      margin-top: auto;
    }

    footer a {
      color: #e91e63;
      text-decoration: none;
      margin: 0 8px;
    }

    footer a:hover {
      text-decoration: underline;
    }
  