/* ===================== GENERAL SETTINGS ===================== */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
  background: #000;
}

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

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ===================== GLOBAL STYLES ===================== */

/* Section Title Highlight (Global) */
.section-title .highlight {
  color: #ff6600;
  font-weight: bold;
  font-style: normal;
}

/* ===================== ROOT VARIABLES ===================== */
:root {
  --topbar-bg: #002b5c;
  --topbar-text: #ffffff;
  --topbar-icon: #ff6600;
  --topbar-icon-hover: #ffffff;
}

/* ===================== HEADER ===================== */
.header-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.top-bar {
  background-color: var(--topbar-bg);
  color: var(--topbar-text);
  font-size: 14px;
  padding: 6px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar i {
  margin-right: 0;
  color: var(--topbar-icon);
  transition: color 0.3s ease;
}
.top-bar i:hover { color: var(--topbar-icon-hover); }

.top-left, .top-right { display: flex; align-items: center; gap: 12px; }

header {
  background: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  z-index: 9999;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}

.logo img {
  max-height: 40px !important;
  width: auto !important;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #002b5c;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover { color: #ff6600; }

.header-buttons { display: flex; align-items: center; gap: 15px; }

.quote-btn {
  position: relative;
  z-index: 1000;
  background: #ff6600;
  color: white;
  padding: 6px 11px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}

.quote-btn:hover { background: #e65c00; }

.menu-btn {
  display: none;
  font-size: 25px;
  background: transparent;
  border: none;
  color: #002b5c;
  cursor: pointer;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 20px;
    background: #ffffff;
    flex-direction: column;
    padding: 15px;
    border-radius: 8px;
    gap: 15px;
    z-index: 9999;
 }
  .nav-links.show { display: flex; }
  .menu-btn { display: block; }
}

<!-- ================= Breadcrumb Section ================= -->
.breadcrumb-section {
  background: #2563eb; /* blue background */
  color: #fff;
  padding: 150px 0 100px;  /* 👈 upar ane niche padding vadhaari */
  text-align: center;
  margin-top: 100px;      /* 👈 header niche thodu gap */
}

.breadcrumb-section h1 {
  margin: 0;
  font-size: 36px;       /* heading thodi moti */
  font-weight: 700;
}

.breadcrumb {
  margin-top: 8px;
  font-size: 14px;
}

.breadcrumb a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  margin: 0 6px;
  color: #e5e7eb;
}

/* ===================== HERO SECTION ===================== */
.hero {
  position: relative;
  background: #f8f9fa;
  padding: 80px 10%;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* allow wrapping on smaller screens */
  position: relative;
  z-index: 2;
  padding-top: 50px;
}

.hero-text {
  flex: 1;
  min-width: 300px;
  font-size: 2rem;
  line-height: 1.4;
  color: #002b5c;
  margin-top: 20px;
}

.hero-text h1 span {
  color: #ff6600; /* highlight */
}

.hero-image {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

/* Mobile Responsive */
@media(max-width: 768px) {
  .hero {
    padding: 120px 20px 60px; /* 👈 top padding vadhaavi */
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .hero-text {
    font-size: 1.5rem;
    margin-top: 40px; /* 👈 extra space header & text vachche */
  }
}

/* Only for Hero Button */
.hero-btn {
  display: inline-block;
  background: #ff6600;  /* orange color */
  color: #fff;
  padding: 12px 30px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  margin-top: 20px;
}

.hero-btn:hover {
  background: #e55b00;
  transform: translateY(-2px);
}

/* Mobile full width */
@media(max-width: 768px) {
  .hero-btn {
    width: 100%;
    text-align: center;
max-width: 250px;   /* max width limit */
    padding: 10px 0;    /* reduce vertical padding */
    margin: 20px auto;  /* center + spacing from text */
  }
}

/* ===================== ABOUT SECTION ===================== */
.about {
  width: 100%;
  background: #e6f2fa;
  padding: 40px 20px;
  text-align: left;
}

.about-section h2 {
  margin: 5px 0 20px 0;
  font-weight: normal;
  color: #003366;
  font-size: 2em;
}

.about-section p {
  margin: 0 0 15px 0;
  font-weight: normal;
  color: #003366;
  font-size: 1em;
  line-height: 1.6;
}

.about-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: transparent;
  color: #002b5c;
  border: 2px solid #002b5c;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background-color: #002b5c;
  color: #ffffff;
}

/* Responsive Adjustments */
@media(max-width: 768px) {
  .about {
    padding: 30px 15px;
  }
  .about-section h2 { font-size: 1.8rem; }
  .about-section p { font-size: 0.95rem; }
}

/* ===================== SERVICES SECTION ===================== */
.services {
  background: #ffffff;
  padding: 4rem 0;
  text-align: center;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 30px;
  padding-bottom: 40px;
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px auto; /* bottom gap increased (40px → 60px) */
  line-height: 1.6;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 6rem;
  margin-top: 5rem;
}

.card {
  position: relative;
  background: #e6f2fa;
  padding: 4rem 1.5rem 2.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}

.card:hover { transform: translateY(-8px); box-shadow: 0 4px 15px rgba(0,0,0,0.2); }

.card .image-wrapper {
  position: absolute;
  top: -0px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
  height: 130px;
}

.card .image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.services-btn {
  background-color: transparent;
  color: #002b5c;
  padding: 8px 16px;
  border: 2px solid #002b5c;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.services-btn:hover {
  background-color: #002b5c;
  color: #ffffff;
}

.services h2 {
  margin: 0 0 15px 0;
  font-weight: normal;
  color: #003366;
  font-size: 2em;
}

.services p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: #003366;
}

/* ===================== BRAND LOGOS SECTION ===================== */
.brand-section {
  padding: 60px 20px;
  background: #ffffff;
  text-align: center;
}

.section-title {
  font-size: 30px;
  font-weight: bold;
  color: #333;
  margin: 0;
  line-height: 1.2;
}

.title-underline {
  width: 120px;
  height: 12px;
  margin: 4px auto 40px;  /* gap logos vachche */
  border-top: 3px solid #ff6600;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.6s ease-in-out;
}

.title-underline.visible {
  opacity: 1;
  transform: translateY(0);
}

.brand-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.brand-item {
  flex: 0 1 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.brand-item img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
  display: block;
}

.brand-item:hover {
  transform: scale(1.1);
}

@media(max-width: 768px) {
  .brand-item {
    flex: 0 1 80px;
  }
}

/* ===================== TESTIMONIALS SECTION ===================== */
.testimonials {
  background: #f8f9fa;
  padding: 60px 20px;
}

.testimonials .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #002b5c;
  margin-bottom: 40px;
  font-weight: 700;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.review-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-icon {
  width: 25px;
  height: 25px;
}

.review-author {
  font-weight: 600;
  color: #002b5c;
}

.review-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.5;
  overflow: hidden;
  max-height: 3em; /* show 2 lines approx */
  transition: max-height 0.4s ease;
}

.read-more-btn {
  align-self: flex-start;
  background: transparent;
  color: #ff6600;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: color 0.3s;
}

.read-more-btn:hover {
  color: #e65c00;
}

/* Expanded review text */
.review-text.expanded {
  max-height: 500px; /* show full */
}

.review-rating {
  color: #ffcc00; /* Gold stars */
  margin-top: 5px;
  margin-bottom: 10px;
  font-size: 1rem;
}

.review-rating i {
  margin-right: 3px;
}

.more-reviews.hidden {
  display: none;
}

.more-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}

.show-more-btn {
  background-color: transparent !important;
  border: none !important;
  color: #ff6600 !important;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.show-more-btn:hover {
  background-color: #ff6600;      /* hover par orange fill */
  color: #fff;                    /* white text */
}

.show-more-btn i { color: inherit; margin-left: 6px; }



/* ===================== FAQ SECTION ===================== */
.faq-section {
  padding: 60px 20px;
  background: #f8f9fa;
  font-family: 'Lato', sans-serif;
}

.faq-section .section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color: #002b5c; /* Dark Blue */
}

.faq-item {
  background: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

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

.faq-toggle {
  font-size: 24px;
  line-height: 1;
  font-weight: bold;
  transition: transform 0.3s ease;
  display: inline-block;
}

/* Answer animation */
.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 16px;
  color: #555;
}

.faq-item.active .faq-answer {
  max-height: 500px; /* adjust as needed */
  padding: 20px;
}

/* Plus → Minus icon style */
.faq-item.active .faq-toggle {
  transform: rotate(180deg); /* rotate instead of cross */
}

/* Hide extra FAQs by default */
.hidden-faq {
  display: none;
}

/* Show More Button */
.more-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}

.faq-btn {
  background: #002b5c;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-btn:hover {
  background: #004080;
}

.faq-btn i {
  color: inherit;
  margin-left: 6px;
}

/* Responsive */
@media(max-width: 768px){
  .faq-section {
    padding: 40px 15px;
  }
  .faq-question {
    font-size: 16px;
  }
  .faq-answer {
    font-size: 14px;
  }
}

/* ===================== FOOTER TOP SECTION ===================== */
.footer-top {
  background: #f5f5f5; /* light grey background */
  padding: 50px 20px;
  text-align: center;
}

.footer-top-img {
  max-width: 250px; /* image size thodi moti */
  margin-bottom: 20px;
}

.footer-top-heading {
  font-size: 1.7rem;
  margin-bottom: 10px;
  color: #111;
  font-weight: 700;
}

.footer-top-subheading {
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: #555;
  font-weight: 500;
}

.footer-top-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ff6600; /* orange button */
  color: #fff;
  padding: 10px 20px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s;
}

.footer-top-btn i {
  font-size: 1.1rem;
  color: #fff !important;
}

.footer-top-btn:hover {
  background-color: #002b5c;
}



/* ===================== POPUP ===================== */
.popup-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #fff4e6;
  color: #003366;
  padding: 25px 30px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0px 6px 15px rgba(0,0,0,0.5);
}

.popup-box form input,
.popup-box form textarea {
  display: block;
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 16px;
}

.popup-box h3 { margin-bottom: 15px; color: #ff6600; }

.popup-buttons {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.popup-box button {
  background: #003366;
  color: #fff;
  padding: 10px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.popup-box button:hover { background: #002244; }


/* ===================== FOOTER ===================== */
.footer {
  background: #002b5c;
  color: #ffffff;
  padding: 10px 20px 20px;
  font-family: 'Lato', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-left .footer-logo img {
  width: 120px;
  margin-bottom: 10px;
}

.footer-left .slogan {
  font-size: 16px;
  color: #d1d1d1;
  margin-bottom: 20px;
  font-style: italic;
}

.footer-social a {
  display: inline-block;
  margin-right: 12px;
  font-size: 18px;
  color: #ffffff;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #ff6600; /* hover colour */
}

.footer-right h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #ffffff;
  border-left: 4px solid #ff6600; /* new orange line */
  padding-left: 8px;
}

.footer-links {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #d1d1d1;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff6600;
}

.footer-right p {
  margin: 6px 0;
  font-size: 14px;
}

.footer-right i {
  margin-right: 8px;
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 30px;
}

.footer-bottom p {
  font-size: 13px;
  color: #cccccc;
}

/* ===================== MEDIA QUERIES ===================== */
@media(max-width: 768px){
  .hero { padding-top: 80px; padding-bottom: 30px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
}