/* ==== COLOR SYSTEM ==== */
:root {
  --primary: #002B5B;
  --secondary: #FCAF1E;
  --dark: #002B5B;
  --light: #fff;
  --gray: #f5f6fa;
  --text: #333;
}

/* ==== RESET AND BASE ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  background: var(--gray);
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==== SOCIAL TOPBAR ==== */
.topbar {
  width: 100%;
  background: linear-gradient(90deg, var(--primary), #00418a);
  padding: 6px 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  transition: top 0.4s ease;
}

/* CONTACT INFO */
.topbar .contact-info {
  display: flex;
  align-items: center;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.topbar .contact-info::-webkit-scrollbar {
  display: none;
}

.topbar .contact-info a {
  color: var(--light);
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}

/* SOCIAL ICONS */
.topbar .social-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar .social-icons a {
  color: var(--light);
  font-size: 15px;
  transition: color 0.3s ease;
}

.topbar a:hover,
.topbar a:focus {
  color: #ffcc00;
  outline: none;
}

/* TABLET RESPONSIVE */
@media (max-width: 768px) {
  .topbar {
    padding: 6px 15px;
  }

  .topbar .contact-info {
    gap: 10px;
  }

  .topbar .contact-info a {
    font-size: 14px;
  }

  .topbar .social-icons a {
    font-size: 15px;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 480px) {
  .topbar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
  }

  /* Contact info visible in same row */
  .topbar .contact-info {
    display: flex;
    gap: 8px;
  }

  .topbar .contact-info a {
    font-size: 8px;
  }

  .topbar .social-icons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
  }

  .topbar .social-icons a {
    font-size: 15px;
  }
}

/* ==== MAIN HEADER ==== */
.header {
  width: 100%;
  padding: 14px 0;
  position: fixed;
  top: 32px; /* Below topbar */
  left: 0;
  background: var(--light);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: top 0.4s ease;
}

.header .container {
  width: 90%;
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


/* ==== LOGO ==== */
.logo a {
  font-size: 35px;
  font-weight: 800;
  color: var(--primary);
}

.logo span:last-child {
  color: var(--secondary);
}

/* ==== NAVIGATION ==== */
.nav {
  display: flex; 
  gap: 25px;
  align-items: center;
}

/* Nav links and dropdown button */
.nav a,
.dropbtn {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  user-select: none;
  position: relative;
}

/* Underline on hover/focus */
.nav a::after,
.dropbtn::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: #ffcc00;
  border-radius: 3px;
  transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a:focus-visible::after,
.dropbtn:hover::after,
.dropbtn:focus-visible::after {
  width: 100%;
}

.nav a:hover,
.nav a:focus-visible,
.dropbtn:hover,
.dropbtn:focus-visible {
  color: #ffcc00;
  outline: none;
}

/* Dropdown container */
.dropdown {
  position: relative;
}

/* Arrow for dropdown */
.dropbtn::after {
  content: "▾";
  font-size: 0.6em;
  margin-left: 4px;
  transition: transform 0.3s ease;
}

/* Dropdown menu hidden by default with smooth transition */
.dropdown-content {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  background: linear-gradient(90deg, var(--primary), #00418a);
  min-width: 250px;
  border-radius: 8px;
  top: 110%;
  left: 0;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  z-index: 1001;
  flex-direction: column;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  pointer-events: none;
}

/* Dropdown links styling */
.dropdown-content a {
  color: #fff;
  padding: 14px 20px;
  text-decoration: none;
  font-weight: 500;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
  border-radius: 6px;
}

.dropdown-content a:hover,
.dropdown-content a:focus {
  outline: none;
}

/* Show dropdown on hover and focus (desktop) */
@media (min-width: 901px) {
  .dropdown:hover .dropdown-content,
  .dropdown:focus-within .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Rotate arrow when dropdown is active */
  .dropdown:hover > .dropbtn::after,
  .dropdown:focus-within > .dropbtn::after {
    transform: rotate(-180deg);
  }
}

.btn-yellow {
  background: var(--secondary);
  color: var(--dark);
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  margin-right: 12px;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.btn-yellow:hover {
  background: #e6b800;
  transform: scale(1.05);
}

.btn-outline {
  border: 2px solid #0076A5;
  color: #0076A5;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline:hover {
  background: #0076A5;
  color: #fff;
}

/* ===== MOBILE MENU STYLING ===== */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 80px 25px;
    transition: right 0.4s ease;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    z-index: 2000;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    color: #002B5B;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
  }

  /* Dropdown inside mobile menu */
  .dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 10px;
    background: #f9f9f9;
    border-left: 3px solid #FCAF1E;
    border-radius: 6px;
  }

  .dropdown.open .dropdown-content {
    display: flex;
  }

  .dropdown .dropbtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #002B5B;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
  }

  /* Hamburger button */
  .navbar-toggle {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 26px;
    color: #002B5B;
    margin-left: auto;
    z-index: 2100;
  }

  .navbar-toggle.active::before {
    content: "✖";
  }

  .navbar-toggle::before {
    content: "☰";
  }

  .navbar-toggle.active {
    color: #FCAF1E;
  }
}


/* ===== FIXES FOR MOBILE TOGGLE & DROPDOWN ===== */

/* Make sure toggle button is visible and clickable */
.navbar-toggle {
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  font-size: 30px;
  color: var(--primary);
  margin-left: auto;
  z-index: 2100;
  position: relative;
  width: 40px;
  height: 40px;
}

/* Fix dropdown visibility issue on mobile */
@media (max-width: 992px) {
  .dropdown-content {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    background: #f9f9f9 !important;
    box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 8px 0;
    margin-top: 6px;
    max-height: 280px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--secondary) #f1f1f1;
  }

  .dropdown-content::-webkit-scrollbar {
    width: 6px;
  }
  .dropdown-content::-webkit-scrollbar-thumb {
    background-color: var(--secondary);
    border-radius: 4px;
  }
  .dropdown-content::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  /* Dropdown links - improved alignment */
  .dropdown-content a {
    display: block;
    padding: 12px 18px;
    font-size: 15px;
    color: var(--dark);
    text-align: left;
    border-radius: 6px;
    letter-spacing: 0.2px;
    line-height: 1.4;
    width: 100%;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  /* Slight indent to make it visually centered within box */
  .dropdown-content a:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .dropdown-content a:hover {
    background: #fff3d4;
    color: var(--primary);
    padding-left: 24px;
  }

  /* Dropdown button text alignment fix */
  .dropdown .dropbtn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 18px;
    color: var(--primary);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.3px;
  }

  /* Open dropdown effect */
  .dropdown.open .dropdown-content {
    display: flex !important;
    flex-direction: column;
  }

  /* Demo button polish */
  .btn-yellow {
    background: var(--secondary);
    color: var(--dark);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    display: block;
    margin: 16px auto 0;
    box-shadow: 0 4px 10px rgba(252, 175, 30, 0.25);
    width: 90%;
    transition: all 0.3s ease;
  }

  .btn-yellow:hover {
    background: #ffbb00;
    transform: translateY(-2px);
  }
}


/* ==== HERO SECTION ==== */
.hero {
 margin-top: 50px;
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  background:#f8f9ff;
  padding-top: 140px; /* header ke liye space */
}

/* ==== SLIDES ==== */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 7%;
  opacity: 0;
  pointer-events: none;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  z-index: 2;
}

/* ==== LEFT CONTENT ==== */
.hero-content {
  flex: 1;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-content h5 {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.2rem;
}

.hero-content h1 {
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--primary);
}

.hero-content h1 .yellow {
  color: var(--secondary);
}

.hero-content p.lead {
  font-size: 17px;
  color: #444;
  line-height: 1.7;
  max-width: 95%;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn {
  padding: 12px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(90deg, var(--secondary), #ffb84d);
  color: var(--dark);
  box-shadow: 0 10px 20px rgba(252, 175, 30, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-3px);
}

/* ==== RIGHT MEDIA ==== */
.hero-media {
  flex: 1;
  max-width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.media-wrap1,
.hero-media img {
  width: 100%;
  max-width: 600px;
  border-radius: 16px;
  overflow: hidden;
}

.media-wrap1 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ==== BADGE ==== */
.offer-badge {
  position: absolute;
  top: 18px;
  right: -6px;
  background: var(--secondary);
  color: var(--dark);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(252, 175, 30, 0.18);
  transform: rotate(-6deg);
}

/* ==== DOTS ==== */
.hero-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: 0.3s ease;
}

.hero-dots button.active {
  background: linear-gradient(90deg, var(--secondary), #ffb84d);
  width: 16px;
  height: 16px;
}

/* ==== ARROWS ==== */
.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 26px;
  z-index: 20;
}

.slider-controls button {
  border: none;
  background: rgba(0, 0, 0, 0.36);
  color: var(--light);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  transition: 0.3s ease;
}

.slider-controls button:hover {
  background: linear-gradient(90deg, var(--secondary), #ffb84d);
  color: var(--dark);
  transform: translateY(-3px);
}

/* ==== RESPONSIVE ==== */

/* TABLET */
@media (max-width: 992px) {
  .hero-slide {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
  }

  .hero-content {
    max-width: 100%;
    order: 2;
    margin-top: 30px;
  }

  .hero-media {
    max-width: 100%;
    order: 1;
  }
}

/* ==== MOBILE (max-width: 600px) FINAL FIXED ==== */
@media (max-width: 600px) {
  .hero {
    padding: 300px 0 180px; /* ⬆️ bottom spacing increased from 140px → 180px */
    margin-top: 80px;
    position: relative;
  }

  .hero-slide {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px 100px; /* ⬆️ bottom padding increased from 60px → 100px */
    transform: translateX(100%);
    transition: all 0.8s ease;
  }

  .hero-slide.active {
    transform: translateX(0);
    opacity: 1;
  }

  .hero-media {
    order: 1;
    margin-top: 10px;
  }

  .hero-content {
    order: 2;
    margin-top: 25px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-content p.lead {
    font-size: 15px;
    line-height: 1.6;
  }

  .hero-buttons {
    justify-content: center;
    margin-top: 15px;
  }

  .media-wrap1 {
    height: 320px;
  }

  .hero-media img,
  .media-wrap1 video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* ✅ Dots perfectly aligned & visible */
  .hero-dots {
    bottom: 55px; /* ⬆️ moved up from 40px → 55px */
    gap: 8px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 25;
    display: none;
  }

  .slider-controls {
    position: absolute;
    bottom: 110px; /* ⬆️ moved up from middle → proper spacing */
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 26px;
    z-index: 20;
    transform: none; /* remove center translate */
  }

  .slider-controls button {
    width: 38px;
    height: 38px;
    background-color: rgba(0, 0, 0, 0.3);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
  }
}

/* ==== About SEO Section ==== */
.busy-seo {
  padding: 60px 20px;
  background: #fff;
}

.busy-seo .container {
  max-width: 1200px;
  margin: auto;
}

/* Section Title */
.busy-seo .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #002B5B;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
}

/* Row Layout */
.seo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 40px;
}

/* Reverse Layout */
.seo-row reverse {
  flex-direction: row-reverse;
}

/* Text Content */
.seo-text {
  flex: 1;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.seo-text h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #002B5B;
}

.seo-text h3 {
  font-size: 1.4rem;
  margin: 20px 0 10px;
  color: #FCAF1E;
}

.seo-text ul,
.seo-text ol {
  margin: 15px 0;
  padding-left: 20px;
}

.seo-text li {
  margin-bottom: 8px;
}

/* Image */
.seo-img {
  flex: 1;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.seo-img img {
  width: 100%;
  max-width: 480px;   /* keeps image neat */
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

/* CTA Buttons */
.cta {
  margin-top: 20px;
}

.cta .btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-right: 12px;
  transition: 0.3s ease;
}

.btn.red {
  background: #E63946;
  color: #fff;
}

.btn.blue {
  background: #1D3557;
  color: #fff;
}

.btn:hover {
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
  .seo-row,
  .seo-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .seo-text {
    text-align: left;
    width: 100%;
  }

  .seo-img {
    margin-top: 25px;
  }

  .seo-img img {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .busy-seo {
    padding: 40px 15px;
  }

  .busy-seo .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .seo-text h2 {
    font-size: 1.5rem;
  }

  .seo-text h3 {
    font-size: 1.2rem;
  }
}

.navbar-toggle { display: none; }

/* ===== MOBILE MENU STYLING ===== */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 80px 25px;
    transition: right 0.4s ease;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    z-index: 2000;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    color: #002B5B;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
  }

  /* ===== MOBILE MENU STYLING ===== */
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 80px 25px;
    transition: right 0.4s ease;
    box-shadow: -2px 0 8px rgba(0,0,0,0.1);
    z-index: 2000;
  }

  .nav.active {
    right: 0;
  }

  .nav a {
    color: #002B5B;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
  }

  /* Dropdown inside mobile menu */
  .dropdown-content {
    display: none;
    flex-direction: column;
    padding-left: 10px;
    background: #f9f9f9;
    border-left: 3px solid #FCAF1E;
    border-radius: 6px;
  }

  .dropdown.open .dropdown-content {
    display: flex;
  }

  .dropdown .dropbtn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #002B5B;
    font-weight: 500;
    text-decoration: none;
    font-size: 16px;
    padding: 10px 0;
    border-bottom: 1px solid #f1f1f1;
  }

  /* Hamburger button */
  .navbar-toggle {
    display: block;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 26px;
    color: #002B5B;
    margin-left: auto;
    z-index: 2100;
  }

  .navbar-toggle.active::before {
    content: "✖";
  }

  .navbar-toggle::before {
    content: "☰";
  }

  .navbar-toggle.active {
    color: #FCAF1E;
  }
}

}

/* ===============================
   Section: Why Choose Us (Modern)
==================================*/
.why-choose-us {
  padding: 90px 7%;
  background: linear-gradient(135deg, #f8f9ff 0%, #eef3ff 100%);
  position: relative;
  overflow: hidden;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: clamp(30px, 3.2vw, 42px);
  font-weight: 700;
  color: #002B5B;
  position: relative;
  display: inline-block;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 4px;
  background: #FCAF1E;
  border-radius: 3px;
}

/* Layout */
.choose-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  flex-wrap: wrap;
}

/* Text Column */
.choose-text {
  flex: 1;
  min-width: 320px;
  max-width: 620px;
}

.choose-text h2 {
  color: #002B5B;
  font-size: 30px;
  margin-bottom: 18px;
  font-weight: 700;
}

.choose-text p {
  font-size: 17px;
  color: #333;
  margin-bottom: 20px;
  line-height: 1.7;
}

.choose-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 35px;
}

.choose-text ul li {
  font-size: 16px;
  margin-bottom: 14px;
  color: #444;
  display: flex;
  align-items: center;
  gap: 10px;
}

.choose-text ul li::before {
  content: "✔";
  color: #FCAF1E;
  font-weight: 700;
  font-size: 17px;
}

/* CTA Buttons */
.cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.cta .btn {
  padding: 13px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-block;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.btn.red {
  background: #FCAF1E;
  color: #002B5B;
}
.btn.red:hover {
  background: #e6b800;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(252, 175, 30, 0.4);
}

.btn.blue {
  background: #002B5B;
  color: #fff;
}
.btn.blue:hover {
  background: #004080;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(0, 43, 91, 0.4);
}

/* Image Slider */
.choose-img.slider {
  position: relative;
  flex: 1;
  min-width: 300px;
  max-width: 520px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.choose-img.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.1);
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1.3s ease, transform 1.3s ease;
  border-radius: 16px;
}

.choose-img.slider img.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

/* Hover effect (optional visual polish) */
.choose-img.slider:hover img.active {
  transform: scale(1.03);
}

/* ===============================
   Responsive Design
==================================*/
@media (max-width: 992px) {
  .choose-row {
    flex-direction: column-reverse;
    text-align: center;
    gap: 50px;
  }

  .choose-text {
    max-width: 100%;
  }

  .choose-img.slider {
    max-width: 90%;
    margin: 0 auto 30px;
  }

  .cta {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .why-choose-us {
    padding: 60px 5%;
  }

  .choose-text h2 {
    font-size: 24px;
  }

  .choose-text p,
  .choose-text ul li {
    font-size: 15px;
  }

  .cta .btn {
    width: 100%;
    text-align: center;
  }
}

/* ==== INDUSTRIES SECTION ==== */
.industries-section {
  background: #fdfdfd; /* light neutral background */
  color: #002B5B;
  padding: 50px 10px;
  text-align: center;
  font-family: "Poppins", sans-serif;
}

.industries-section h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #002B5B;
}

.industries-section .industries-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto 50px auto;
  line-height: 1.6;
}

/* Grid Layout */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Industry Card */
.industry-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  font-size: 16px;
  font-weight: 600;
  color: #002B5B;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: default;
}

.industry-card span {
  font-size: 36px;
  margin-bottom: 12px;
  display: inline-block;
}

/* Hover Effect */
.industry-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Responsive Typography */
@media (max-width: 768px) {
  .industries-section h2 { font-size: 32px; }
  .industries-section .industries-subtitle { font-size: 14px; }
  .industry-card { font-size: 14px; padding: 20px 12px; }
  .industry-card span { font-size: 28px; }
}

/*******Our product Funtion*********/

/* Product Section - Mobile Responsive */

/* Section Background */
.product-cards {
  background-color: #002B5B;
  padding: 60px 20px; /* Add padding for spacing */
}

/* Section Title */
.section-title {
  color: #ffc107;
  font-size: 2rem; /* Slightly smaller for */
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.section-title::after {
  content: "";
  display: block;
  width: 60px; /* smaller underline on mobile */
  height: 4px;
  background-color: #ffc107;
  margin: 10px auto 0;
  border-radius: 3px;
  animation: underlineFade 1s ease-out;
}

/* Cards Wrapper */
.cards-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 20px 10px; /* Adjust padding for mobile */
}

/* Product Card */
.card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 102, 204, 0.08);
  flex: 1 1 280px; /* Reduce flex-basis for small screens */
  max-width: 360px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0, 102, 204, 0.12);
}

/* Card Image */
.card-img img {
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
  transition: transform 0.3s ease;
}

.card:hover .card-img img {
  transform: scale(1.03);
}

/* Card Title */
.card-title {
  font-size: 1.2rem; /* Adjust for mobile */
  font-weight: 600;
  color: #004d99;
  margin-bottom: 10px;
}

/* Description */
.desc {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 12px;
}

/* Price */
.price {
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 18px;
}

/* CTA Button */
.btn-view {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0066cc;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-view:hover {
  background-color: #004a99;
  transform: translateY(-2px);
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
  .cards-wrapper {
    gap: 28px;
  }

  .card {
    flex: 1 1 45%; /* Two cards per row */
  }
}

@media (max-width: 768px) {
  .cards-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .card {
    max-width: 95%;
    flex: 1 1 100%;
    padding: 18px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .card-title {
    font-size: 1.1rem;
  }

  .desc {
    font-size: 0.88rem;
  }

  .price {
    font-size: 0.95rem;
  }

  .btn-view {
    padding: 9px 18px;
    font-size: 0.95rem;
  }
}

@keyframes underlineFade {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* ==== ACHIEVEMENTS SECTION ==== */
.achievements {
  text-align: center;
  padding: 60px 20px;
  background: #f5f7fa; /* soft gray background */
  color: #002B5B;
  font-family: "Poppins", sans-serif;
}

.achievements h3 {
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FCAF1E;
  margin-bottom: 5px;
}

.achv-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 12px;
  color: #002B5B;
  line-height: 1.1;
}

.achv-sub {
  font-size: 16px;
  opacity: 0.8;
  margin-bottom: 40px;
  color: #555;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* ==== GRID LAYOUT ==== */
.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

/* ==== ACHIEVEMENT CARD ==== */
.achievement-item {
  background: #fff;
  padding: 30px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
}

.achievement-item:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.achievement-icon {
  font-size: 42px;
  margin-bottom: 15px;
  color: #FCAF1E;
  transition: color 0.3s ease;
}

.achievement-item:hover .achievement-icon {
  color: #002B5B; /* icon color changes on hover */
}

.achievement-number {
  font-size: 38px;
  font-weight: 700;
  color: #002B5B;
  margin-bottom: 8px;
}

.achievement-text {
  font-size: 15px;
  color: #555;
  line-height: 1.4;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .achv-title {
    font-size: 32px;
  }
  .achievement-number {
    font-size: 32px;
  }
  .achievements {
    padding: 50px 15px;
  }
  .achievement-item {
    padding: 25px 15px;
  }
}


/* ==== TESTIMONIAL SECTION IMPROVED ==== */
.testimonials {
  background: #fff; /* Section background stays white */
  color: #002B5B;
  padding: 50px 0px;
  font-family: "Poppins", sans-serif;
}

.testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.testimonials h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #FCAF1E;
  margin-bottom: 10px;
}

.test-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1;
}

.test-sub {
  font-size: 16px;
  opacity: 0.85;
  color: #555;
  margin-bottom: 60px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Carousel */
.testimonial-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 30px;
  padding-bottom: 10px;
}

/* Testimonial Card */
.testimonial-item {
  flex: 0 0 calc((100% - 60px)/3); /* 3 cards visible, subtract gaps */
  background: transparent;
  border-radius: 25px;
  padding: 40px 30px 30px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


/* Floating Quote Icon */
.testimonial-item::before {
  content: "“";
  position: absolute;
  font-size: 60px;
  color: #FCAF1E;
  top: -20px;
  left: 20px;
  opacity: 0.15;
}

/* Testimonial Text */
.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #002B5B;
  margin-bottom: 30px;
  font-style: italic;
}

/* Author Section */
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #FCAF1E;
}

.testimonial-author h4 {
  margin: 0;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 14px;
  color: #555;
  display: block;
  margin-top: 2px;
}

/* Carousel Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #FCAF1E;
  border: none;
  padding: 12px 16px;
  border-radius: 50%;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: #002B5B;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

/* Responsive */
@media (max-width: 768px) {
  .test-title { font-size: 36px; }
  .testimonial-item { min-width: 260px; padding: 30px 20px 25px; }
  .carousel-btn { font-size: 20px; padding: 10px 14px; }
  .testimonial-text { font-size: 15px; }
}

@media (max-width: 480px) {
  .carousel-container {
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .carousel-track {
    display: flex;
    gap: 20px;
    justify-content: center;
    transition: transform 0.6s ease;
  }

  .carousel-item {
    min-width: 80%;
    flex: 0 0 80%;
    margin: 0 auto;
  }
}

/*---------- Faq ----------*/ 
.faq-container {
    max-width: 700px;
    margin: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 50px;
}

.faq-header {
    font-size: 24px;
    font-weight: 600;
    color: #007bff;
    padding: 20px;
    border-bottom: 2px solid #ff4d4d;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    font-weight: 500;
    font-size: 16px;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 18px;
    transition: transform 0.3s;
}

.faq-question.active::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    background: #f9f9f9;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 15px 0;
    margin: 0;
}

.view-all-btn {
    display: block;
    text-align: center;
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    margin: 20px auto 40px;
    width: fit-content;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.view-all-btn:hover {
    background: #0056b3;
}

/*---------- Mobile Responsive ----------*/
@media (max-width: 768px) {
    .faq-container {
        width: 90%;
        margin-top: 30px;
    }

    .faq-header {
        font-size: 20px;
        padding: 15px;
        text-align: center;
    }

    .faq-question {
        padding: 12px 15px;
        font-size: 15px;
    }

    .faq-question::after {
        right: 15px;
        font-size: 16px;
    }

    .faq-answer {
        padding: 0 15px;
    }

    .faq-answer p {
        font-size: 14px;
        line-height: 1.5;
    }

    .view-all-btn {
        padding: 12px 25px;
        font-size: 14px;
        margin: 25px auto 50px;
    }
}

@media (max-width: 480px) {
    .faq-header {
        font-size: 18px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer p {
        font-size: 13px;
    }

    .view-all-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ==== FOOTER ==== */
.vg-footer {
  background: var(--primary); /* unified footer bg color */
  color: #f1f1f1; /* main text color */
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.vg-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.vg-footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* Logo & About */
.footer-logo {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
}
.footer-logo span {
  color: var(--secondary); /* accent color */
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  color: #e5e5e5;
  margin-bottom: 20px;
}

/* Footer Links & Contact */
.footer-links h3,
.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--secondary); /* highlight */
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  position: relative;
  display: inline-block;
  color: #f1f1f1;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Hover underline effect */
.footer-links a::after,
.footer-contact a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--secondary);
}
.footer-links a:hover::after,
.footer-contact a:hover::after {
  width: 100%;
}

.footer-contact p {
  font-size: 14px;
  margin: 8px 0;
  color: #e5e5e5;
  display: flex;
  align-items: center;
}

.footer-contact i {
  color: var(--secondary);
  margin-right: 8px;
}

/* Social Icons */
.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 16px;
  color: #f1f1f1;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  color: var(--secondary);
  transform: translateY(-3px);
}

/* Footer Map */
.footer-map {
  margin: 30px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}
.footer-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
  font-size: 13px;
  color: #ccc;
}

.footer-bottom a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 600;
  transition: text-decoration 0.3s ease;
}
.footer-bottom a:hover {
  text-decoration: underline;
}

/* ==== RESPONSIVE ==== */
@media (max-width: 768px) {
  .vg-footer {
    padding: 40px 15px 15px;
  }
  .footer-map iframe {
    height: 200px;
  }
}