/* =============================================
   AGEBIOTECH - Professional Pharmaceutical CSS
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --primary: #0a5c8a;
  --primary-dark: #073f61;
  --accent: #00b4b4;
  --accent-light: #e0f7f7;
  --white: #ffffff;
  --off-white: #f4f8fb;
  --text-dark: #1a2332;
  --text-mid: #4a5568;
  --text-light: #718096;
  --border: #e2e8f0;
  --card-shadow: 0 4px 24px rgba(10, 92, 138, 0.10);
  --card-shadow-hover: 0 12px 40px rgba(10, 92, 138, 0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---- TYPOGRAPHY ---- */
h1, h2, h3 { font-family: 'Playfair Display', serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.25rem; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
  display: block;
}

.section-title { color: var(--text-dark); margin-bottom: 1rem; }
.section-sub { color: var(--text-mid); max-width: 560px; margin: 0 auto 3rem; font-size: 1.05rem; }

/* ---- NAVBAR ---- */
:root {
  --primary: #0a5c8a;
  --accent: #ff9900;
  --text-dark: #1a1a1a;
  --text-mid: #555555;
  --off-white: #f4f7f9;
  --border: rgba(0,0,0,0.05);
}

#mainNav {
  background: rgba(255, 255, 255);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Jab scroll ho tab navbar ka look */
#mainNav.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.logo-mark {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.2rem;
  font-family: 'Playfair Display', serif;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar-brand:hover .logo-mark { transform: rotate(10deg) scale(1.05); }

.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; color: blue; font-size: 1.4rem; }
.logo-text span { color: var(--accent); }

/* Nav Links ke liye Tagdi Animation */
.nav-link {
  color: var(--text-mid) !important;
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 1rem !important;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: all 0.3s ease;
}

.nav-link:hover { color: blue !important; }
.nav-link:hover::before { width: 60%; left: 20%; }

/* Contact Us Button - "Strong" Look */
.btn-nav {
  background: var(--primary) !important;
  color: white !important;
  border-radius: 50px !important; /* Pill shape */
  padding: 0.6rem 1.5rem !important;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
  border: 2px solid var(--primary);
}

.btn-nav:hover {
  background: transparent !important;
  color:white;
  transform: translateY(-2px);
  box-shadow: 0 8px 15px rgba(10,92,138,0.2);
}
/* ---- HERO ---- */
#hero {
  /*min-height: 100vh;*/
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, #0d7aa8 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  background: white;
}

.shape-1 { width: 600px; height: 600px; top: -200px; right: -150px; }
.shape-2 { width: 400px; height: 400px; bottom: -100px; left: -100px; }
.shape-3 { width: 200px; height: 200px; top: 40%; right: 25%; opacity: 0.04; }

.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge-dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: pulse-dot 2s infinite; }

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title { color: white; margin-bottom: 1.2rem; }
.hero-title .accent { color: #7eedec; }

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 2.2rem;
}

.btn-primary-hero {
  background: white;
  color: var(--primary-dark);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.btn-primary-hero:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,0,0,0.25); color: var(--primary-dark); }

.btn-outline-hero {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.4);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.btn-outline-hero:hover { border-color: white; background: rgba(255,255,255,0.1); color: white; }

.hero-stats {
  display: flex; gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 700; color: white; }
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }

.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}

.hero-card-main {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 280px;
  color: white;
}

.hero-card-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--accent), #00d4d4);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.hero-card-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.3rem; }
.hero-card-sub { font-size: 0.8rem; opacity: 0.7; }

.hero-float-pill {
  position: absolute;
  background: white;
  border-radius: 100px;
  padding: 0.6rem 1rem;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-dark);
  animation: float 3s ease-in-out infinite;
}

.hero-float-pill.pill-1 { top: -30px; right: -20px; }
.hero-float-pill.pill-2 { bottom: -20px; left: -30px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- SECTIONS ---- */
section { padding: 5.5rem 0; }
.bg-off { background: var(--off-white); }
.text-center { text-align: center; }

/* ---- ABOUT ---- */
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.about-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This ensures the image fills the 580px box */
}


.about-img-placeholder {
  width: 100%;
  height: 676px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: white;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.about-img-placeholder::before {
  content: '';
  position: absolute; inset: 0;}

.about-badge-float {
  position: absolute; bottom: 1.5rem; right: 1.5rem;
  background: white;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--card-shadow);
  text-align: center;
}

.about-badge-float .big-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--primary); line-height: 1; }
.about-badge-float .small-lbl { font-size: 0.72rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }

.about-features { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }

.about-feat-item {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  transition: box-shadow 0.2s;
}

.about-feat-item:hover { box-shadow: var(--card-shadow); }
.about-feat-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.about-feat-title { font-weight: 600; color: var(--text-dark); font-size: 0.95rem; }
.about-feat-desc { font-size: 0.85rem; color: var(--text-light); margin-top: 2px; }

/* ---- WHY CHOOSE ---- */
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }

.why-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.why-card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }

.why-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 1.2rem;
}

.why-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.875rem; color: var(--text-light); }

/* ---- PRODUCTS ---- */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover { transform: translateY(-8px); box-shadow: var(--card-shadow-hover); }

.product-img {
  height: 220px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}

.product-img-icon { font-size: 3.5rem; margin-bottom: 0.5rem; opacity: 0.9; }
.product-img-label { font-size: 0.75rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em; }

.product-tag {
  position: absolute; top: 1rem; right: 1rem;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-body { padding: 1.8rem; }
.product-body h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.product-body p { color: var(--text-mid); font-size: 0.9rem; margin-bottom: 1.5rem; }

.product-meta { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1.5rem; }

.meta-chip {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-weight: 500;
  background: var(--accent-light);
  color: var(--primary);
}

.btn-product {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  text-decoration: none;
  padding: 0.7rem 1.5rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: opacity 0.2s, transform 0.2s;
  border: none; cursor: pointer;
}

.btn-product:hover { opacity: 0.88; transform: translateY(-1px); color: white; }

/* ---- TESTIMONIALS ---- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }

.testi-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s;
  position: relative;
}

.testi-card:hover { transform: translateY(-4px); }

.testi-quote { font-size: 2.5rem; color: var(--accent); line-height: 1; margin-bottom: 1rem; opacity: 0.5; }
.testi-text { color: var(--text-mid); font-size: 0.9rem; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }

.testi-author { display: flex; align-items: center; gap: 0.8rem; }

.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

.testi-name { font-weight: 600; font-size: 0.9rem; }
.testi-role { font-size: 0.78rem; color: var(--text-light); }

.testi-stars { color: #f59e0b; font-size: 0.8rem; margin-bottom: 1rem; }

/* ---- FAQ ---- */
.faq-wrap { max-width: 750px; margin: 0 auto; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item.open { box-shadow: var(--card-shadow); }

.faq-question {
  padding: 1.2rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  background: white;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  user-select: none;
  transition: background 0.2s;
  gap: 1rem;
}

.faq-question:hover { background: var(--off-white); }
.faq-question.open { background: var(--accent-light); color: var(--primary); }

.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--off-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  color: var(--text-mid);
}

.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: white; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer.open { max-height: 200px; }
.faq-answer-inner { padding: 0 1.5rem 1.4rem; color: var(--text-mid); font-size: 0.9rem; line-height: 1.75; }

/* ---- CONTACT ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }

.contact-info-card {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.contact-info-card h3 { color: white; font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-info-card p { color: rgba(255,255,255,0.72); margin-bottom: 2rem; font-size: 0.9rem; }

.contact-detail { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }

.contact-detail-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.55); margin-bottom: 2px; }
.contact-detail-value { font-weight: 600; font-size: 0.95rem; }
.contact-detail-value a { color: white; text-decoration: none; }
.contact-detail-value a:hover { text-decoration: underline; }

.contact-social { display: flex; gap: 0.7rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.12); }

.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s;
}

.social-btn:hover { background: rgba(255,255,255,0.25); color: white; }

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border);
}

.form-group { margin-bottom: 1.3rem; }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; display: block; }

.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: white;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 180, 180, 0.12);
}

textarea.form-control { resize: vertical; min-height: 110px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.btn-submit {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
  font-family: 'Inter', sans-serif;
}

.btn-submit:hover { opacity: 0.9; transform: translateY(-1px); }

/* ---- FOOTER ---- */
/* Footer Container */
footer {
  background: var(--text-dark);
  color: #a0a0a0;
  padding: 4rem 0 2rem;
  border-top: 4px solid var(--accent); /* Ek premium touch ke liye */
}

/* Grid Layout - Content ko balance karne ke liye */
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr; /* Logo wale column ko thoda space diya */
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* Logo aur Tagline */
.logo-text { font-size: 1.5rem; font-weight: 700; color: white; }
.footer-tagline { 
  font-size: 0.9rem; 
  line-height: 1.7; 
  margin-top: 1rem; 
  max-width: 300px; /* Text line length limit ki taaki readable ho */
}

/* Titles */
.footer-col-title { 
  font-size: 0.9rem; 
  font-weight: 700; 
  text-transform: uppercase; 
  letter-spacing: 0.1em; 
  color: white; 
  margin-bottom: 1.5rem; 
}

/* Links */
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a { 
  color: #a0a0a0; 
  text-decoration: none; 
  font-size: 0.9rem; 
  transition: all 0.3s ease; 
  display: inline-block;
}
.footer-links a:hover { 
  color: var(--accent); 
  transform: translateX(5px); /* Hover transition effect */
}

/* Social Buttons */
.social-btn {
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: white;
  transition: all 0.3s ease;
}
.social-btn:hover { background: var(--accent); }

/* Footer Bottom */
.footer-bottom { 
  display: flex; 
  justify-content: space-between; 
  font-size: 0.8rem; 
  border-top: 1px solid rgba(255,255,255,0.05); 
  padding-top: 2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-top { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 1rem; }
  .footer-tagline { margin: 1rem auto; }
  .social-btn { margin: 0 auto; }
}

/* ---- SCROLL TO TOP ---- */
#scrollTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: white;
  border: none; border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 16px rgba(10,92,138,0.3);
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  z-index: 999;
}

#scrollTop.visible { opacity: 1; transform: translateY(0); }
#scrollTop:hover { transform: translateY(-3px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  section { padding: 4rem 0; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-visual { display: none; }
}

/* ---- UTILITY ---- */
.btn-gap { display: flex; gap: 1rem; flex-wrap: wrap; }

.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



/* _---------------------------- */
.swiper {
  width: 100%;
  padding-top: 40px;
  padding-bottom: 50px;
}

.swiper-slide {
  height: auto; /* Zaroori hai taaki cards ki height barabar rahe */
}

/* Pagination Dots ka color */
.swiper-pagination-bullet-active {
  background: #0a5c8a !important;
}













/* FAQ Layout */
.faq-layout {
  display: flex;
  align-items: flex-start; /* Image ko top se align karega */
  gap: 40px;               /* Gap kam kiya taki balance bane */
  margin-top: 60px;
}

/* Left Image */
.faq-image {
  flex: 1;
  display: flex; /* Image ko stretch hone mein help karega */
}

.faq-image img {
  width: 100%;
  height: 100%;       /* Fixed height hata di, ye parent FAQ list ki height lega */
  min-height: 450px;  /* Image ko minimum height di taaki wo bahut choti na ho jaye */
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

/* Right FAQ */
.faq-wrap {
  flex: 1.2;
}

/* FAQ Item (Baaki sab same) */
.faq-item {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  padding: 18px 20px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-icon {
  font-size: 22px;
  font-weight: 700;
}

/* Tablet & Mobile Responsiveness */
@media (max-width: 991px) {
  .faq-layout {
    flex-direction: column;
    gap: 30px;
  }

  .faq-image, .faq-wrap {
    width: 100%;
  }

  .faq-image img {
    height: 350px; /* Tablet pe fix height rakhna safe hai */
  }
}

@media (max-width: 576px) {
  .faq-image img {
    height: 250px;
  }
  .faq-question {
    font-size: 15px;
    padding: 15px;
  }
}
















.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 5px 0; /* Extra space taaki logo touch na kare */
}

/* Logo image styling */
.navbar-brand img {
  transition: transform 0.3s ease;
  /* Navbar scroll hone par logo chhota ho sake iske liye responsive height */
}

/* Navbar scroll hone par logo ko chhota karne ke liye */
#mainNav.scrolled .navbar-brand img {
  height: 35px; /* Scroll hone par 45px se 35px ho jayega */
}

/* Logo-text alignment */
.logo-text { 
  font-family: 'Playfair Display', serif; 
  font-weight: 700; 
  color: var(--primary); 
  font-size: 1.3rem; 
  display: flex;
  align-items: center;
}















