* {
  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: #09436A;
    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: #ffffff;
}

.vertical-bar {
    color: #d8d1d1;
    font-size: 28px;
    opacity: 0.6;
}

.social-icons-left {
    display: flex;
    gap: 20px;
}

.social-icons {
    color: #ffffff;
    transition: transform 0.3s ease;
}

.social-icons:hover {
    transform: scale(1.1);
    color: #FACD14;
}

.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: #fffbfb;
}

.info-value-yellow {
    font-size: 14px;
    color: #ffffff;
}

.info-value-yellow a {
    color: #fffefe;
    text-decoration: none;
    font-weight: 600;
}
.info-value-yellow a:hover {
    color: #FACD14;

}
/* 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: 0px;
}

/* Logo - Left Side (Not too far left) */
.logo {
    flex-shrink: 0;
    margin-right: 20px;
}

.logo-image {
    max-height: 70px;
    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;
    color: #000;
}

.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: #FACD14;
    color: #0a0a0a;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
    border-radius: 18px;
}

.call-us-btn:hover {
    background: #09436A;
    color: #fffdfd;
    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;
}

/* 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;
    }
}





/* 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: #333;
    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 */
.site-footer {
    background-color: #1e3a5f;
    color: #ffffff;
    font-family: inherit;
}

.footer-main {
    padding: 50px 0 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
    margin-bottom: 30px;
}

/* Column 1: Logo & Description */
.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 220px;
    height: auto;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    color: #ffffff;
    opacity: 0.9;
    margin: 0 0 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
   
}

.social-icon svg {
    fill: #ffffff;
}

.social-icon:hover {
    background-color: #f0b429;
    border-color: #f0b429;
  
}

.social-icon:hover svg {
    fill: #ffffff;
}

/* Column 2: Quick Links */
.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 25px;
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '›';
    font-size: 18px;
    line-height: 1;
    color: #f0b429;
}

.footer-links a:hover {
    color: #f0b429;
    opacity: 1;
    padding-left: 5px;
}

/* Column 3: Facebook */
.facebook-widget {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0;
    margin-top: 30px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    font-size: 13px;
    color: #ffffff;
    opacity: 0.8;
    margin: 0;
}

.copyright-text a {
    color: #f0b429;
    text-decoration: none;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #f0b429;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-col:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .footer-col:last-child {
        grid-column: auto;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-bottom-links {
        gap: 20px;
    }
    
    /* ===== CENTER ALL FOOTER CONTENT ===== */
    .footer-col {
        text-align: center !important;
        margin-bottom: 30px;
    }
    
    /* Logo Center */
    .footer-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }
    
    /* Description Center */
    .footer-description {
        text-align: center !important;
    }
    
    /* Social Icons Center - Proper Flex */
    .social-icons {
        display: flex !important;
        justify-content: center !important;
        align-items: center;
        gap: 15px;
        margin: 20px 0;
    }
    
    /* Quick Links Heading Center */
    .footer-heading {
        text-align: center !important;
    }
    
    /* Footer Links List Center */
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
        margin: 0;
        list-style: none;
    }
    
    .footer-links li {
        text-align: center;
        margin: 10px 0;
    }
    
    .footer-links a {
        display: inline-block;
    }
}

@media (max-width: 480px) {
    .footer-logo img {
        max-width: 180px;
    }
    
    .footer-heading {
        font-size: 16px;
    }
    
    .copyright-text {
        font-size: 12px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Social Icons Smaller */
    .social-icons {
        gap: 12px;
    }
}






/* Breadcrumb Section */
.hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-wrap-2 {
  min-height:300px;
  display: flex;
  align-items: center;
  /* padding: 60px 0 40px; */
}

@media(max-width: 992px){
    .hero-wrap-2 {
        min-height:250px;
    }
}

@media(max-width: 590px){
    .hero-wrap-2 {
        min-height:160px;
    }
}

.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;
}
