/* Reset and Base Theme */
:root {
  --primary-color: #002244; /* Darker shade for better contrast */
  --accent-color: #007060;  /* Slightly deeper tone */
  --bg-color: #f4f7fa;
  --text-color: #222;
  --light-color: #fff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --radius: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: rgb(255, 255, 255);
  color: var(--text-color);
  line-height: 1.6;
  user-select: none;
}

/* Accessibility Enhancements */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 3px solid var(--accent-color);
  outline-offset: 3px;
}

/* Navigation */
/* ===== BASE NAVBAR STYLES (MOBILE FIRST) ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  background: #002244;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #ffd60a;
  cursor: pointer;
  transition: color 0.3s ease, transform 0.3s ease;
}

.logo:hover {
  color: #ffffff;
  transform: scale(1.05);
}

/* Hamburger Icon */
.hamburger {
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  z-index: 1100;
  transition: transform 0.3s ease;
}

.hamburger span {
  display: block;
  height: 3px;              /* thinner for cleaner cross */
  width: 100%;
  background-color: #ffd60a;
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
  pointer-events: none;
}

/* Active state: morph hamburger to cross */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 8.5px);
  background-color: #fff;
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -8.5px);
  background-color: #fff;
}


.hamburger.active {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}


/* Mobile Navigation Menu */
.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 64px;
  left: 0;
  width: 100%;
  background: #002244;
  border-top: 2px solid #ffd60a;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
  animation: slideDown 0.3s ease;
}

.nav-links.active {
  display: flex;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-links li {
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-links a {
  color: #ffffff;
  padding: 1rem;
  display: block;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-links a:hover {
  background-color: #ffd60a;
  color: #002244;
}

/* ===== CONTACT BANNER (MOBILE) ===== */
.contact-banner{
  background: linear-gradient(90deg, #007f5f, #2a9d8f);
  color: #ffffff;
  text-align: center;
  padding: 0.8rem 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.contact-banner a{
  text-decoration: none;
  color: #ffffff;
}

/* Optional: Contact banner tweak for desktop */
@media (min-width: 1024px) {
  .contact-banner {
    font-size: 1.1rem;
    padding: 1rem 2rem;
  }
}/*ye add kiya*/

/* ===== DESKTOP STYLES ===== */
@media (min-width: 768px) {
  .navbar {
    padding: 1rem 3rem;
    background: linear-gradient(90deg, #001d3d, #003566);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;/*ye add kiya*/
  }

  /* Hide hamburger on desktop */
  #hamburger {
    display: none;
  }

  /* Desktop Navigation */
  .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
    background: transparent;
    position: static;
    border: none;
    box-shadow: none;
    width: auto;/*marked*/
  }

  .nav-links li {
    border: none;
  }

  .nav-links a {
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;/*marked*/
  }

  /* Animated underline hover effect */
  .nav-links a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ffd60a;
    transition: width 0.3s ease;
  }

  .nav-links a:hover {
    color: #ffd60a;
    background-color: rgba(255, 255, 255, 0.2);/*marked*/
  }

  .nav-links a:hover::after {
    width: 100%;
  }

  /* Logo larger on desktop */
  .logo {
    font-size: 2rem;
    letter-spacing: 1px;
    color: #ffd60a;
  }

  .logo:hover {
    color: #ffffff;
  }

  /* Contact banner refined for desktop */
  .contact-banner {
    background: linear-gradient(90deg, #007f5f, #00b4d8);
    font-size: 1.1rem;
    padding: 1.25rem 2rem;
    border-top: 3px solid #ffd60a;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
}

/* Headline */
h1 {
  text-align: center;
  margin: 2rem 1rem 1rem;
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* === ADS SECTION === */
.ads-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  padding: 0px 20px;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
}

/* === AD CARD === */
.ad-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8e8e8;
  transition: all 0.35s ease;
}

.ad-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  border-color: #2563eb;
}

/* === IMAGE === */
.ad-image {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.ad-card:hover .ad-image {
  transform: scale(1.03);
}

/* === CONTENT === */
.ad-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ad-content h2,
.ad-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
  line-height: 1.3;
}

.ad-content h2 strong,
.ad-content h3 strong {
  color: #2563eb;
}

.ad-content p {
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.7;
  margin-bottom: 0;
  flex: 1;
}

.ad-content p strong {
  color: #2563eb;
  font-weight: 600;
}

/* === BOTTOM BUTTONS === */
.card-actions {
  display: flex;
  gap: 12px;
  padding: 16px 20px 20px;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}

/* Common Button */
.card-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 0;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Icons */
.card-btn i {
  font-size: 1.1rem;
}

/* WhatsApp Button */
.card-btn.wa {
  background: linear-gradient(135deg, #25D366, #16a34a);
}

.card-btn.wa:hover {
  background: linear-gradient(135deg, #1db954, #0f9635);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

/* Call Button */
.card-btn.call {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.card-btn.call:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.35);
}

/* Shine Effect on Buttons */
.card-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.card-btn:hover::before {
  left: 100%;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .ads-section {
    padding: 50px 15px;
    gap: 20px;
  }
  
  .ad-card {
    border-radius: 12px;
  }
  
  .ad-image {
    height: 240px;
  }
  
  .ad-content {
    padding: 20px;
  }
  
  .ad-content h2,
  .ad-content h3 {
    font-size: 1.1rem;
  }
  
  .ad-content p {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .card-actions {
    padding: 14px 16px 18px;
    gap: 10px;
  }
  
  .card-btn {
    padding: 12px 0;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .ads-section {
    grid-template-columns: 1fr;
  }
  
  .ad-image {
    height: 220px;
  }
  
  .card-btn i {
    font-size: 1rem;
  }
}

/* Info Section */
.info-section {
  padding: 60px 20px;
  background: #ffffff;
  max-width: 900px;
  margin: 0 auto;
}

/* Title Design */
.info-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111111;
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: left;
}

.info-section h2 strong {
  color: #2563eb;
}

/* Paragraph */
.info-section p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom: 20px;
}

.info-section p strong {
  color: #2563eb;
  font-weight: 600;
}

/* Paraline/List */
.paraline {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 25px;
  margin-top: 20px;
  border-left: 4px solid #2563eb;
}

.paraline ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.paraline ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 18px;
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.6;
}

.paraline ul li:last-child {
  margin-bottom: 0;
}

/* List Marker */
.paraline ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #078b82;
  font-weight: 700;
  font-size: 1rem;
}

.paraline ul li strong {
  color: #078b82 !important;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .info-section {
    padding: 40px 20px;
  }
  
  .info-section h2 {
    font-size: 1.25rem;
  }
  
  .info-section p {
    font-size: 0.9rem;
  }
  
  .paraline {
    padding: 20px;
  }
  
  .paraline ul li {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .info-section h2 {
    font-size: 1.1rem;
  }
  
  .paraline {
    padding: 16px;
  }
}

/* Contact Form */
.contact-form {
  background: #e3f2f1;
  padding: 2rem 1rem;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.contact-form form {
  max-width: 600px;
  margin: auto;
}

.contact-form label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: bold;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: var(--radius);
  font-size: 1rem;
}

.contact-form button {
  width: 100%;
  padding: 0.75rem;
  background: var(--primary-color);
  color: white;
  font-size: 1rem;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #004d66;
}

/* Footer */
footer {
  background: var(--primary-color);
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .ads-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1200px;
  }

  .ad-card {
    flex-direction: column;
    display: flex;
    height: 100%;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
  }

  .ad-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .ad-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
  }

}

/* Floating Icons Container */
.floating-icons {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

/* Common Icon Button */
.floating-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/* Icon Style */
.floating-icons a i {
  font-size: 1.4rem;
  color: #fff;
}

/* WhatsApp */
.floating-icons a:first-child {
  background: linear-gradient(135deg, #25D366, #16a34a);
}

.floating-icons a:first-child:hover {
  background: linear-gradient(135deg, #1db954, #0f9635);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.4);
}

/* Call */
.floating-icons a:last-child {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.floating-icons a:last-child:hover {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.4);
}

/* Hover Icon Scale */
.floating-icons a:hover i {
  transform: scale(1.2);
}

/* Pulse Animation - WhatsApp */
.floating-icons a:first-child {
  animation: pulse-wa 2s infinite;
}

/* Pulse Animation - Call */
.floating-icons a:last-child {
  animation: pulse-call 2s infinite;
  animation-delay: 1s;
}

/* Pulse Animation - Only OUT Effect */
@keyframes pulse-wa {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes pulse-call {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130,246, 0.5);
  }
  50% {
    box-shadow: 0 0 0 15px rgba(59, 130,246, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(59, 130,246, 0);
  }
}

/* ======== RESPONSIVE ======== */
@media (max-width: 768px) {
  .floating-icons {
    bottom: 18px;
    right: 18px;
    gap: 12px;
  }
  
  .floating-icons a {
    width: 52px;
    height: 52px;
  }
  
  .floating-icons a i {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .floating-icons {
    bottom: 15px;
    right: 15px;
    gap: 10px;
  }
  
  .floating-icons a {
    width: 48px;
    height: 48px;
  }
  
  .floating-icons a i {
    font-size: 1.1rem;
  }
}
/* main CSS file */
/* Base styles */
.nav-links {
  display: none;
  flex-direction: column;
  gap: 1rem;
}

/* Show nav in mobile when active */
.nav-links.active {
  display: flex;
}


/* Ads Section Styles */
.ads-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

/* Each Ad Card */
.ad-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.ad-card:hover {
  transform: scale(1.01);
}

/* Ad Image */
.ad-card img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
}

/* Ad Content */
.ad-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Ad Icons */
.ad-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
}

/* ===== MORE LOCATIONS – STYLISH LIST ===== */

/* Section Base - White Background */
.locations-section {
  padding: 50px 20px;
  background: #ffffff;
}

.container {
  max-width: 1050px;
  margin: 0 auto;
}

/* H2 Title Design */
.section-title {
  text-align: center;
  margin-bottom: 45px;
  position: relative;
}

/* Accent Text (Small) */
.title-accent {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #2563eb;
  margin-bottom: 8px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 20px;
}

/* Main Title */
.title-main {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #111111;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  line-height: 1.2;
}

/* Creative Underline */
.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* Hover Effect (Optional) */
.section-title:hover .title-accent {
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .title-main {
    font-size: 1.6rem;
  }
  .title-accent {
    font-size: 0.65rem;
    letter-spacing: 3px;
  }
}

@media (max-width: 480px) {
  .title-main {
    font-size: 1.3rem;
  }
}

/* Wrapper Grid - 5 Columns */
.locations-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

/* Card Design - Light Theme */
.location-card {
  display: flex;
  align-items: center;
  padding: 16px 18px;
  background: #f8f8f8;
  color: #444444;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 14px;
  transition: all 0.3s ease;
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
}


/* City Name */
.city-name {
  position: relative;
  z-index: 2;
  flex-grow: 1;
  transition: all 0.3s ease;
}

/* Arrow */
.arrow {
  font-size: 1rem;
  font-weight: 700;
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.3s ease;
  color: #2563eb;
  margin-left: 8px;
}

/* ========== HOVER EFFECTS ========== */

/* Card Hover - Dark Theme */
.location-card:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* Number Color Change */
.location-card:hover .location-number {
  color: #2563eb;
}

/* Arrow Show */
.location-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ========== SHORT ACCENT LINE (30% Height) ========== */
.location-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 30%;
  background: linear-gradient(180deg, #2563eb, #06b6d4);
  border-radius: 0 4px 4px 0;
  opacity: 0;
  transition: all 0.3s ease;
}

.location-card:hover::before {
  opacity: 1;
  height: 55%;
}

/* ========== SHINE EFFECT (Talwar Jaisi) ========== */
.shine-effect {
  position: absolute;
  top: 0;
  left: -100%;
  width: 45%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.6),
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.location-card:hover .shine-effect {
  left: 200%;
  transition: left 0.55s ease;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
  .locations-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .locations-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .section-title {
    font-size: 1.7rem;
  }
  .location-card {
    padding: 14px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 520px) {
  .locations-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 380px) {
  .locations-wrapper {
    grid-template-columns: 1fr;
  }
  .location-card {
    padding: 16px 18px;
  }
}

/* FAQ Section */
.faq-section {
  padding: 70px 20px;
  background: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Title Design */
.faq-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.faq-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #2563eb;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 12px;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  overflow: hidden;
  background: #f8f8f8;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #2563eb;
}

/* FAQ Question */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question span:first-child {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333333;
  flex-grow: 1;
  padding-right: 15px;
}

.faq-question strong {
  color: #2563eb;
  font-weight: 700;
}

/* FAQ Icon */
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  color: #2563eb;
  transition: all 0.3s ease;
  transform: rotate(0deg);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: #666666;
  line-height: 1.7;
}

.faq-answer strong {
  color: #2563eb;
  font-weight: 600;
}

/* ========== ACTIVE STATE ========== */
.faq-item.active {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.1);
}

.faq-item.active .faq-question {
  background: #f0f7ff;
}

.faq-item.active .faq-question span:first-child {
  color: #111111;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.3rem;
  }
  .faq-question {
    padding: 16px 20px;
  }
  .faq-question span:first-child {
    font-size: 0.9rem;
  }
  .faq-answer p {
    padding: 0 20px 16px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .faq-section {
    padding: 50px 15px;
  }
  .faq-question {
    padding: 14px 16px;
  }
  .faq-question span:first-child {
    font-size: 0.85rem;
  }
}

/* Desktop Navbar Styles */
@media (min-width: 768px) {
  #hamburger {
    display: none; /* Hide hamburger on desktop */
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    position: static; /* Remove absolute positioning */
    width: auto;/*marked*/
    background: none;
  }
}

/* ===== TABLE WRAPPER ===== */
.info-table {
  width: 90%;
  max-width: 900px;
  margin: 30px auto;
  border-collapse: collapse;
  background: #0f172a;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  font-family: 'Poppins', sans-serif;
}

/* ===== TABLE HEADER ===== */
.info-table thead {
  background: linear-gradient(120deg, #9fd213, #177cba);
}

.info-table th {
  padding: 16px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.4px;
}

/* ===== TABLE BODY ===== */
.info-table td {
  padding: 14px 16px;
  font-size: 0.9rem;
  color: #e5e7eb;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ===== ROW EFFECT ===== */
.info-table tbody tr{
  transition: 0.3s ease;
}

.info-table tbody tr:hover {
  background: #1e293b;
  transform: scale(1.01);
}

/* ===== COLUMN COLORS ===== */
.info-table td:nth-child(1) {
  color: #08d9d6;
  font-weight: 500;
}

.info-table td:nth-child(2) {
  color: #facc15;
}

.info-table td:nth-child(3) a{
  color: #46b74d;
  text-decoration: none;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .info-table {
    font-size: 0.85rem;
  }

  .info-table th,
  .info-table td {
    padding: 12px;
  }
}

/* Tags */


/* Tags Section - White Background */
.tags-section {
  padding: 70px 20px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.container {
  max-width: 1150px;
  margin: 0 auto;
}

/* ========== TITLE DESIGN ========== */
/* Simple H2 Design */
.tags-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #111111;
  text-align: center;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Simple Underline */
.tags-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: #2563eb;
  margin: 10px auto 0;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .tags-title {
    font-size: 1.4rem;
  }
}

.title-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  padding: 8px 14px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ========== TAGS WRAPPER ========== */
.tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

/* ========== TAG DESIGN ========== */
.tag {
  display: inline-block;
  padding: 12px 18px;
  background: #f8f8f8;
  color: #555555;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e8e8e8;
  position: relative;
  overflow: hidden;
  cursor: default;
}

/* ========== HOVER EFFECTS ========== */

/* Dark Theme Hover */
.tag:hover {
  background: #1a1a1a;
  border-color: #1a1a1a;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

/* Left Accent Line */
.tag::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 30%;
  background: linear-gradient(180deg, #3b82f6, #06b6d4);
  border-radius: 0 3px 3px 0;
  opacity: 0;
  transition: all 0.35s ease;
}

.tag:hover::before {
  opacity: 1;
  height: 55%;
}

/* Shine Effect - Talwar Style */
.tag::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    rgba(255, 255, 255, 0.5),
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transform: skewX(-18deg);
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.tag:hover::after {
  left: 200%;
  transition: left 0.55s ease;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .tags-title {
    font-size: 1.5rem;
    flex-direction: column;
    gap: 10px;
  }
  .tag {
    padding: 10px 14px;
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .tags {
    gap: 8px;
  }
  .tag {
    padding: 8px 12px;
    font-size: 0.7rem;
  }
}