* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-color: #77d33f;
  --blue-color: #2b3990;
  --dark-blue: #1a237e;
  --light-bg: #f8f9fa;
  --topbar-blue: #4ac8ed;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.container-1200 {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 300px;
}
*


/* ============================================================
   HEADER — Matches your screenshot design
   ============================================================ */
/* ===== HEADER STYLES ===== */
/* ===== HEADER STYLES ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Top Bar Green Design */
/* ===== Top Bar Blue ===== */
/* Top Bar Yellow Styles */
.top-bar-yellow {
  background: #ffbc13;
  padding: 12px 0;
}

.container-yellow {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar-wrapper-yellow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-left-yellow {
  display: flex;
  align-items: center;
  gap: 15px;
}

.offer-text {
  font-size: 16px;
  font-weight: 600;
  color: #000;
  /* opacity: 0.6; */
  border-right: solid 2px #000;
  padding-right: 10px;
}

.vertical-bar {
  color: #000;
  font-size: 28px;
  opacity: 0.6;
  height: 4vh;
}

.social-icons-left {
  display: flex;
  gap: 20px;
}

.social-icon {
  color: #000;
  transition: transform 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
  color: #fff;
}

.top-bar-right-yellow {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-item-yellow {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label-yellow {
  font-size: 12px;
  font-weight: 700;
  color: #000;
}

.info-value-yellow {
  font-size: 14px;
  color: #000;
}

.info-value-yellow a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

/* Main Navigation */
/* Main Navigation */
.main-navigation {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  padding: 15px 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px; /* Reduced from edges */
}

.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo - Left Side (Not too far left) */
.logo {
  flex-shrink: 0;
  margin-right: 20px;
}

.logo-image {
  max-height: 55px;
  width: auto;
  display: block;
}

/* Desktop Navigation - Center */
.nav-menu.desktop-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 20px;
  flex: 1;
  justify-content: center;
}

.nav-menu.desktop-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 15px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-menu.desktop-nav a:hover {
  color: #ffbc13;
}

.nav-menu.desktop-nav li.active > a {
  color: #ffbc13;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  padding: 10px 0;
  z-index: 1000;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.has-dropdown:hover .dropdown {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 12px 20px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.dropdown li a:hover {
  padding-left: 25px;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
  margin-left: 5px;
}

.has-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

/* Call Us Button - Right Side (Not too far right) */
.nav-cta-button {
  flex-shrink: 0;
  margin-left: 20px;
}

.call-us-btn {
  background: #122b54;
  color: #fff;
  padding: 12px 28px;

  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}

.call-us-btn:hover {
  background: #fffffe;
  color: #000;
  border: 2px solid black;
}

/* Mobile Menu Toggle - RIGHT SIDE */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: 15px;
  flex-shrink: 0;
  order: 4; /* Ensures it stays on the right */
}

.mobile-menu-toggle .bar {
  display: block;
  width: 25px;
  height: 3px;
  background: #000;
  margin: 5px 0;
  transition: 0.3s;
  border-radius: 2px;
}

.mobile-has-dropdown {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.mobile-has-dropdown > a {
  flex: 0 0 auto;
  margin-right: 12px;
}
.mobile-has-dropdown > .mobile-dropdown-btn {
  flex-shrink: 0; /* + button right me, same line */
}
.mobile-has-dropdown > .mobile-dropdown {
  flex-basis: 100%; /* dropdown neeche full width */
}
/* Tablet Responsiveness */
@media (max-width: 992px) {
  /* .offer-text,
    .vertical-bar, */
  .info-item-yellow:last-child {
    display: none;
  }

  .nav-menu.desktop-nav {
    display: none;
  }

  .nav-cta-button {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .logo {
    margin-right: 0;
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .top-bar-right-yellow .info-item-yellow:first-child {
    display: none;
  }

  /* .social-icons-left {
        display: none;
    } */

  .container {
    padding: 0 20px;
  }

  .nav-wrapper {
    gap: 10px;
  }
}

@media (max-width: 576px) {
  /* FB widget ko container ke andar force karo */
  .offer-text,
  .vertical-bar,
  .info-item-yellow:last-child {
    display: none;
  }
  .facebook-widget-container {
    max-width: 100%;
    overflow: hidden;
  }
  .fb_iframe_widget,
  .fb_iframe_widget > span,
  .fb_iframe_widget iframe {
    max-width: 100% !important;
    width: 100% !important;
  }

  /* Footer columns full width */
  .footer-col-new {
    width: 100%;
    max-width: 100%;
  }

  /* Bottom bar stack */
  .footer-bottom-new {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .vertical-bar {
    height: 5vh;
  }
}

/* Mobile Menu Overlay */
/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
}

.mobile-menu-overlay.active {
  display: block;
}

/* Mobile Menu Container - RIGHT SIDE SE SLIDE */
.mobile-menu-container {
  background: #fff;
  height: 87%;
  width: 320px;
  max-width: 85%;
  overflow-y: auto;
  padding: 25px;
  position: fixed;
  top: 0;
  right: -350px; /* Pehle left se tha, ab right se hoga */
  transition: right 0.4s ease;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu-overlay.active .mobile-menu-container {
  right: 0; /* Active hone par right se 0 par aa jayega */
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #ffbc13;
}

.mobile-menu-header .logo-image {
  max-height: 50px;
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: #000;
  padding: 5px;
  transition: transform 0.3s ease;
}

.mobile-menu-close:hover {
  transform: rotate(90deg);
}

/* Mobile Top Info Box */
.mobile-top-info {
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  border-left: 4px solid #ffbc13;
}

.mobile-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.mobile-info-item:last-child {
  margin-bottom: 0;
}

.mobile-info-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.mobile-info-item .label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin-bottom: 3px;
}

.mobile-info-item .value {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #000;
}

.mobile-info-item .value a {
  color: #000;
  text-decoration: none;
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu > li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-menu > li > a {
  display: block;
  padding: 16px 0;
  color: #000;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.mobile-nav-menu > li > a:hover,
.mobile-nav-menu > li.active > a {
  color: #ffbc13;
}

/* Mobile Dropdown */
.mobile-has-dropdown {
  border-bottom: none;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-dropdown-toggle > span {
  font-weight: 600;
  font-size: 16px;
  color: #000;
}

.mobile-dropdown-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  color: #ffbc13;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.minus-icon {
  display: none;
}

.mobile-dropdown-btn.active .plus-icon {
  display: none;
}

.mobile-dropdown-btn.active .minus-icon {
  display: block;
}

.mobile-dropdown {
  display: none;
  list-style: none;
  padding: 0 0 15px 15px;
  margin: 0;
  background: #fafafa;
  border-radius: 8px;
}

.mobile-dropdown.active {
  display: block;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-dropdown li a {
  display: block;
  padding: 12px 15px;
  color: #000;
  text-decoration: none;
  font-size: 14px;
  border-left: 2px solid transparent;
  transition: all 0.3s ease;
}

.mobile-dropdown li a:hover {
  color: #ffbc13;
  border-left-color: #ffbc13;
  padding-left: 20px;
}

/* ============================================================
   FOOTER — Matches your screenshot design
   ============================================================ */

/* ===== Footer New ===== */
/* ============================================
   FOOTER STYLES - EXACT UI MATCH
   ============================================ */

.site-footer-new {
  background-color: #1a1a1a;
  color: #ffffff;
  font-family: inherit;
}

.footer-main-new {
  padding: 50px 0 30px;
}

.footer-container-new {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

/* Column Styles */
.footer-col-new {
  color: #ffffff;
}

/* Column 1: About */
.footer-logo-new img {
  max-width: 180px;
  height: auto;
  margin-bottom: 20px;
}

.footer-desc-new {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
  margin-bottom: 20px;
}

/* Social Icons - Yellow Boxes */
.footer-socials-new {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.social-icon-box {
  width: 36px;
  height: 36px;
  background-color: #ffbc13;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.social-icon-box svg {
  fill: #1a1a1a;
}

.social-icon-box:hover {
  background-color: #ffffff;
  transform: translateY(-3px);
}

.social-icon-box:hover svg {
  fill: #ffbc13;
}

/* Legal Links */
.footer-legal-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal-links li {
  margin-bottom: 10px;
}

.footer-legal-links a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-legal-links a::before {
  content: "▶";
  color: #ffbc13;
  font-size: 10px;
}

.footer-legal-links a:hover {
  color: #ffbc13;
}

/* Column 2: Services */
.footer-heading-new {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links-new {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-new li {
  margin-bottom: 12px;
}

.footer-links-new a {
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-new a::before {
  content: "▶";
  color: #ffbc13;
  font-size: 10px;
}

.footer-links-new a:hover {
  color: #ffbc13;
}

/* Facebook Widget Container */
.facebook-widget-container {
  background-color: #ffffff;
  border-radius: 4px;
  overflow: hidden;
  max-width: 300px;
  margin: 0 auto;
}

.fb-page-new {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .facebook-widget-container {
    max-width: 100%;
  }
}

/* Column 4: Twitter + Contact Info */
.twitter-info {
  font-size: 14px;
  color: #cccccc;
  margin-bottom: 20px;
  line-height: 1.6;
}

.twitter-info a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.twitter-info a:hover {
  color: #ffbc13;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item h5 {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 5px;
}

.contact-item p {
  font-size: 14px;
  color: #cccccc;
  margin: 0;
}

.contact-item a {
  color: #f3f2ee;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #ffbc13;
}

/* Footer Bottom */
.footer-bottom-new {
  background-color: #0f0f0f;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-bottom-new .footer-container-new {
  display: flex;
  justify-content: center;
  align-items: center;
}

.copyright-text-new {
  font-size: 13px;
  color: #999999;
  margin: 0;
  text-align: center;
}

.copyright-text-new a {
  color: #ffbc13;
  text-decoration: none;
}

.copyright-text-new a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-main-new {
    padding: 40px 0 20px;
  }

  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-heading-new {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .footer-socials-new {
    flex-wrap: wrap;
  }

  .social-icon-box {
    width: 32px;
    height: 32px;
  }
}

/* Breadcrumb Section */
.hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-wrap-2 {
  min-height: 400px;
  display: flex;
  align-items: center;
  /* padding: 60px 0 40px; */
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  z-index: 2;
  width: 100%;
}

.hero-content {
  width: 100%;
}

.breadcrumbs {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  margin-bottom: 10px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}

.breadcrumbs a {
  color: white;
  text-decoration: none;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  transition: color 0.3s ease;
  text-align: center;
}

.breadcrumbs a:hover {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  color: var(--green-color);
}

.breadcrumbs .separator {
  font-size: 14px;
  margin: 0 8px;
  color: rgba(255, 255, 255, 0.7);
}

.breadcrumbs span {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  margin-right: 8px;
}

.page-title {
  color: white;
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  text-align: center;
}

a {
  color: #ffbc13;
}
