/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(135deg, #fbc2eb, #a6c1ee, #f9f586, #f6d365);
  background-size: 400% 400%;
  animation: gradientShift 20s ease infinite;
  color: #222;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Sunrise Glow Gradient Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
header {
  background: transparent;
  backdrop-filter: none;
  padding: 1rem 0;
  position: sticky; top: 0; z-index: 1000;
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: none;
}
/* Header */
header.scrolled  {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(15px);
  padding: 1rem 0;
  position: sticky; top: 0; z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.navbar {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: auto; padding: 0 1.5rem;
  position: relative;
}
.logo img {
  height: 100px;   /* increased from 55px */
  transition: transform 0.3s, height 0.3s ease;
  max-width: 100%;
}
.logo img:hover { transform: scale(1.08); }
@media (max-width: 768px) {
  .logo img {
    height: 60px;
  }
}
/* Desktop Menu */
.menu {
  display: flex; gap: 2rem;
}
.menu a {
  color: #333; font-weight: 600; text-decoration: none;
  position: relative; transition: color 0.3s ease;
}
.menu a::after {
  content: ""; position: absolute; bottom: -5px; left: 0;
  width: 0; height: 2px; background: #e91e63;
  transition: width 0.3s ease;
}
.menu a:hover::after { width: 100%; }
.menu a:hover { color: #e91e63; }

/* Hamburger Icon */
.menu-toggle {
  width: 30px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1101;
}
.menu-toggle span {
  display: block;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.menu-toggle.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Slide Down */
@media(max-width:992px) {
  .menu {
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(15px);
    padding: 0;
    border-radius: 12px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: max-height 0.5s ease, opacity 0.4s ease, transform 0.4s ease;
    z-index: 1100;
    width: 220px;
  }
  .menu.show {
    padding: 1rem;
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
  }
  .menu-toggle { display: flex; }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 4rem 8%;
}
.hero-content { text-align: left; }
.hero-title{
  font-size:3rem;font-weight:700;margin-bottom:1rem;
  background:linear-gradient(270deg,#e91e63,#a6c1ee,#ff6f61);
  background-size:600% 600%;
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  animation: gradientFlow 8s ease infinite;
}
@keyframes gradientFlow {
  0%{background-position:0% 50%;}
  50%{background-position:100% 50%;}
  100%{background-position:0% 50%;}
}
.hero-description{font-size:1.2rem;margin-bottom:2rem;color:#333;}
.cta-btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  background: linear-gradient(135deg,#e91e63,#f9f586);
  color: #fff; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(233,30,99,0.4);
  transition: all 0.3s ease;
}
.cta-btn:hover { transform: translateY(-5px) scale(1.05); }
@keyframes floatBtn {
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
}
/* Hero Illustration */
.hero-image img {
  width: 90%; max-width: 500px;
  animation: floatImage 6s ease-in-out infinite;
}
@keyframes floatImage {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr; /* stack text and image */
    text-align: center;
    padding: 2rem 5%;
  }

  .hero-content {
    order: 1;
  }

  .hero-image {
    order: 2;
    margin-top: 2rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 350px; /* balanced size for mobile */
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.2rem; /* scale down heading for mobile */
  }

  .hero-description {
    font-size: 1rem;
  }

  .cta-btn {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
  }
}
/* Sections */
/* .glass-section {
  padding: 5rem 8%;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(15px);
  border-radius: 12px;
  margin: 2rem auto;
  border: 1px solid rgba(0,0,0,0.1);
  text-align: center;
  color: #222;
}
.glass-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  background: linear-gradient(90deg,#e91e63,#a6c1ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.subtitle { font-size: 1.2rem; color: #555; margin-bottom: 2rem; } */
.glass-section{
  padding:5rem 2rem;text-align:center;
  background:linear-gradient(135deg,#ffe6fa,#fff9c4);
}
.glass-section.dark{
  background:linear-gradient(135deg,#f9d423,#ff6f61);
}
/* .glass-section h2{
  font-size:2.5rem;margin-bottom:1.5rem;
  background:linear-gradient(270deg,#e91e63,#a6c1ee,#ff6f61);
  background-size:600% 600%;
  -webkit-background-clip:text;-webkit-text-fill-color:transparent;
  animation: gradientFlow 8s ease infinite;
} */
 .glass-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(
    270deg,
    #2c003e, /* dark purple */
    #0d324d, /* deep navy */
    #3c1053, /* indigo violet */
    #1a1a2e  /* near black blue */
  );
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 8s ease infinite;
}

.subtitle{font-size:1.2rem;color:#444;margin-bottom:2rem;}
.grid{
  display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:2rem;max-width:1100px;margin:auto;
}

/* Equal Heights per Section */
.glass-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: auto;
  justify-items: stretch;
  align-items: stretch;
}
.glass-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,0.95);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: opacity 0.9s ease, transform 0.9s ease;
  height: 100%;
}
.glass-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Pricing Highlight */
#pricing .glass-card.highlight {
  border: 2px solid #e91e63;
  background: rgba(255,255,255,0.98);
  box-shadow: 0 0 30px rgba(233,30,99,0.4);
}
#pricing .glass-card.highlight.visible {
  transform: translateY(0) scale(1.05);
}

/* Hover Effects */
.glass-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 12px 40px rgba(233,30,99,0.3);
}
.glass-card h3 { color:#16c1f3; margin-bottom:0.8rem; }
.glass-card p { color:#444; }

/* Contact Section Links */
#contact a {
  color: #e91e63;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
#contact a:hover { color: #f48fb1; }

/* Icon */
.icon-wrap {
  width:70px;height:70px;
  margin:0 auto 1rem;
  display:flex;align-items:center;justify-content:center;
  font-size:1.8rem;
  border-radius:50%;
  /* background:linear-gradient(135deg,#e91e63,#f6d365); */
  background: linear-gradient(135deg, #e63946, #f4a261);
  color:#fff;
  box-shadow:0 4px 20px rgba(233,30,99,0.4);
}
.icon-wrap img.vision-gif {
  width: 90%;
  height: auto;
}

.icon-wrap-animat {
  width:80px;height:80px;
  margin:0 auto 1rem;
  display:flex;align-items:center;justify-content:center;
  font-size:1.8rem;
  border-radius:50%;
  /* background:linear-gradient(135deg,#e91e63,#f6d365); */
  /* background: linear-gradient(135deg, #e63946, #f4a261); */
  color:#fff;
  /* box-shadow:0 4px 20px rgba(233,30,99,0.4); */
}
.icon-wrap-animat img.vision-gif {
  width: 90%;
  height: auto;
}

.icon-wrap img {
  width: 40px;
  height: 40px;
}
/* Video */
.video iframe {
  width:100%;height:320px;
  border:none;border-radius:16px;
  box-shadow:0 8px 25px rgba(0,0,0,0.2);
}

/* Footer */
footer {
  background: rgba(255,255,255,0.85);
  padding: 2rem; text-align: center;
  border-top: 1px solid rgba(0,0,0,0.1);
  color: #444;
}
footer a { color:#e91e63; text-decoration:none; }
footer a:hover { color:#f48fb1; }


.modal-content {
  background: rgba(255,255,255,0.95);
  padding: 2rem;
  border-radius: 16px;
  max-width: 800px;
  width: 90%;
  height: 90%;
  position: relative;
  animation: fadeIn 0.4s ease;
  color: #333;
  display: flex;
  flex-direction: column;
}
.modal-content h3 {
  margin-bottom: 1rem;
  color: #e91e63;
}
.modal-content iframe {
  flex: 1;
  width: 100%;
  border: none;
  border-radius: 8px;
}
.modal .close {
  position: absolute;
  top: 15px; right: 20px;
  font-size: 1.8rem;
  cursor: pointer;
  color: #e91e63;
  transition: color 0.3s;
}
.modal .close:hover { color: #111; }
/* Modal Overlay */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
  justify-content: center;
  align-items: center;
}

/* Modal Content with PDF */
.modal-content {
  background: #fff;
  border-radius: 16px;
  max-width: 90%;
  width: 900px;
  height: 90%;
  padding: 1rem;
  position: relative;
  display: flex;
  flex-direction: column;
  animation: fadeIn 0.4s ease;
}

.modal-content h3 {
  color: #e91e63;
  margin-bottom: 0.5rem;
}

.modal-content iframe {
  flex: 1;
  width: 100%;
  border: none;
  border-radius: 8px;
}

/* Close Button */
.modal .close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
  color: #e91e63;
  transition: color 0.3s ease;
}
.modal .close:hover { color: #000; }

/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
/* Button Group Styling */
.btn-group {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Preview Buttons */
.preview-btn {
  padding: 0.6rem 1.4rem;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #e91e63, #f6d365);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(233,30,99,0.3);
}

.preview-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(233,30,99,0.4);
  background: linear-gradient(135deg, #f6d365, #e91e63);
}

/* Responsive Adjustment */
@media (max-width: 600px) {
  .preview-btn {
    width: 100%;
    text-align: center;
  }
}

/* Team Section Layout */
.team-grid {
  gap: 2.5rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.team-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.team-photo {
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
  color: #16c1f3;
}

.role {
  font-size: 0.95rem;
  color: #e91e63;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.bio {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 1.2rem;
  text-align: justify;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.social-links a {
  font-size: 1.1rem;
  color: #e91e63;
  background: rgba(233,30,99,0.08);
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #e91e63;
  color: #fff;
  transform: scale(1.2);
}
/* Initial hidden state for entrance animation */
.team-card {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
  transition: all 0.8s ease;
}

/* When visible, apply animation */
.team-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Optional: delay effect for sequence */
.team-card:nth-child(1).visible { transition-delay: 0.1s; }
.team-card:nth-child(2).visible { transition-delay: 0.3s; }
.team-card:nth-child(3).visible { transition-delay: 0.5s; }
.team-card:nth-child(4).visible { transition-delay: 0.7s; }

/* ---- Premium Solid Box Pricing Section with Animated Background ---- */
.pricing-section {
  padding: 5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden; /* ensures background shapes don't break layout */
}

/* Animated gradient blobs in background */
.pricing-section::before,
.pricing-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: floatBlob 20s ease-in-out infinite alternate;
  z-index: 0;
}

.pricing-section::before {
  width: 300px;
  height: 300px;
  background: rgba(233, 30, 99, 0.4);
  top: -50px;
  left: -100px;
}

.pricing-section::after {
  width: 400px;
  height: 400px;
  background: rgba(166, 193, 238, 0.4);
  bottom: -100px;
  right: -150px;
}

@keyframes floatBlob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, -30px) scale(1.1); }
  100% { transform: translate(-20px, 40px) scale(0.9); }
}

/* Heading */
.pricing-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(270deg, #e91e63, #a6c1ee, #ff6f61);
  background-size: 600% 600%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 8s ease infinite;
  position: relative;
  z-index: 1;
}

.pricing-section .subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* Grid Layout */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

/* Solid Box Pricing Card */
.pricing-card {
  position: relative;
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transform: translateY(40px);
  opacity: 0;
  animation: cardFloat 1s ease forwards, cardIdle 6s ease-in-out infinite;
  transition: all 0.5s ease;
  overflow: visible;
}

.pricing-card:nth-child(1) { animation-delay: 0.1s; }
.pricing-card:nth-child(2) { animation-delay: 0.3s; }
.pricing-card:nth-child(3) { animation-delay: 0.5s; }
.pricing-card:nth-child(4) { animation-delay: 0.7s; }

/* Hover Effect */
.pricing-card:hover {
  transform: translateY(-10px) scale(1.07) rotateX(5deg) rotateY(-3deg);
  box-shadow: 0 15px 40px rgba(233, 30, 99, 0.4),
              0 0 30px rgba(233, 30, 99, 0.3);
}

/* Fixed Ribbon */

/* Responsive adjustments */
@media (max-width: 768px) {
  .ribbon {
    right: -55px;
    padding: 6px 60px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .ribbon {
    right: -50px;
    padding: 5px 50px;
    font-size: 0.75rem;
  }
}
.ribbon {
  position: absolute;
  top: 15px;
  right: -45px;
  background: linear-gradient(135deg, #e91e63, #ff6f61);
  color: white;
  padding: 5px 60px;
  transform: rotate(45deg);
  font-size: 0.8rem;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(233,30,99,0.3);
  z-index: 2;
}

/* Text Styling */
.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #222;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  margin: 1rem 0 1.5rem;
  color: #e91e63;
}

.features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.features li {
  padding: 0.5rem 0;
  color: #555;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Gradient Button */
.pricing-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #e91e63, #f6d365);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 5px 20px rgba(233,30,99,0.3);
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(233,30,99,0.4);
}

/* Combo Offer */
.combo-offer {
  margin-top: 4rem;
  padding: 2rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #f5f5f5);
  border: 1px solid rgba(0,0,0,0.1);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  animation: fadeIn 1s ease forwards;
}

/* Note Box */
.note {
  margin-top: 2rem;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  color: #444;
  background: #fff4f7;
  border: 1px solid rgba(233,30,99,0.4);
  border-radius: 10px;
  display: inline-block;
  animation: notePulse 2s infinite ease-in-out, noteSlideUp 0.8s ease forwards;
  box-shadow: 0 0 15px rgba(233, 30, 99, 0.1);
}

.note strong {
  color: #e91e63;
}

/* Animations */

@keyframes cardFloat {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes notePulse {
  0% { box-shadow: 0 0 10px rgba(233, 30, 99, 0.2); }
  50% { box-shadow: 0 0 25px rgba(233, 30, 99, 0.4); }
  100% { box-shadow: 0 0 10px rgba(233, 30, 99, 0.2); }
}

@keyframes noteSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* Idle floating animation */
@keyframes cardIdle {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.02); }
}

/* Entrance animation */
@keyframes cardFloat {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
/* Preloader full screen */
#preloader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, #e91e63, #a6c1ee, #ff6f61);
  background-size: 400% 400%;
  animation: preloaderGradient 6s ease infinite;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Large responsive logo animation */
.loader-logo {
  width: 40vw; /* 40% of viewport width */
  max-width: 400px; /* cap for very large screens */
  animation: logoPulse 1.5s ease-in-out infinite;
}

/* Pulse effect */
@keyframes logoPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.85; }
}

/* Gradient animation */
@keyframes preloaderGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Fade-out */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s;
}

/* Mobile size adjustment */
@media (max-width: 600px) {
  .loader-logo {
    width: 60vw;
    max-width: 280px;
  }
}
/* Base Email Icon */
.flying-email {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e91e63, #ff6f61);
  color: #fff;
  font-size: 20px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(233, 30, 99, 0.3);
  transition: all 0.3s ease;
}

/* The Letter */
.flying-email .letter {
  position: absolute;
  bottom: -20px;
  width: 14px;
  height: 10px;
  background: #fff;
  border: 1px solid #ccc;
  border-bottom: none;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  opacity: 0;
}

/* Letter Fold (triangle) */
.flying-email .letter::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 6px solid #fff;
}

/* Hover Effect - icon */
.flying-email:hover {
  transform: scale(1.2);
  box-shadow: 0 8px 25px rgba(233, 30, 99, 0.5);
}

/* Hover Effect - animate letter */
.flying-email:hover .letter {
  animation: flyLetter 1s forwards ease-in-out;
  opacity: 1;
}

/* Flying letter keyframes */
@keyframes flyLetter {
  0% { bottom: -20px; opacity: 0; }
  30% { bottom: 10px; opacity: 1; }
  60% { bottom: 50px; opacity: 1; }
  100% { bottom: 80px; opacity: 0; }
}
.modal-content canvas {
  max-width: 100%;
  height: auto !important;
}
/* ====== Softer Modal Background ====== */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.35); /* Lighter overlay */
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

/* ====== Clean Glassmorphic Card ====== */
.modal-content {
  background: rgba(255, 255, 255, 0.9); /* Brighter white tint */
  border-radius: 16px;
  padding: 2rem 2rem 3.2rem;
  max-width: 500px;
  width: 90%;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: popIn 0.35s ease forwards;
  transform: scale(0.9);
}

/* ====== Close Button ====== */
.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 22px;
  font-weight: bold;
  color: #e91e63;
  cursor: pointer;
  transition: transform 0.2s, color 0.2s;
}
.close:hover {
  transform: rotate(90deg);
  color: #ff6f61;
}

/* ====== Title ====== */
.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ff6f61, #e91e63);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ====== Inputs ====== */
.modal-content input,
.modal-content textarea {
  width: 100%;
  padding: 12px;
  margin: 6px 0 14px;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  transition: all 0.25s ease;
}
.modal-content input:focus,
.modal-content textarea:focus {
  background: white;
  box-shadow: 0 0 8px rgba(233, 30, 99, 0.3);
  outline: none;
}

/* ====== Star Rating ====== */
#starRating span {
  font-size: 40px;
  color: #ccc;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
}
#starRating span:hover {
  transform: scale(1.2);
}
#starRating span.selected {
  color: #ffc107;
  text-shadow: 0 0 5px rgba(255,193,7,0.5);
}

/* ====== Send Button ====== */
.cta-btn_feedback {
  background: linear-gradient(135deg, #e91e63, #ff6f61, #ffc107);
  background-size: 200% 200%;
  animation: gradientMove 5s ease infinite;
  color: white;
  padding: 14px;
  border: none;
  width: 100%;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(233, 30, 99, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta-btn_feedback:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.4);
}
.cta-btn_feedback:active {
  transform: scale(0.97);
}

/* ====== Animations ====== */
@keyframes fadeIn {
  from { background: rgba(0,0,0,0); }
  to { background: rgba(0,0,0,0.35); }
}
@keyframes popIn {
  to { transform: scale(1); }
}
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
