* {
  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;
    
}
*


/* ============================================================
   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: #9E1F63;
    padding: 15px 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: 18px;
    font-weight: 600;
    color: #ffffff;
}

.vertical-bar {
    color: #d8d1d1;
    font-size: 37px;
    opacity: 0.6;
    margin-bottom: 9px;
}

.social-icons-left {
    display: flex;
    gap: 23px;
}

.social-icons {
    color: #ffffff;
    transition: transform 0.3s ease;
}



.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;
}

/* 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 15px; /* 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: 55px;
    width: auto;
    display: block;
}

/* Desktop Navigation - Center */
.nav-menu.desktop-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
    flex: 1;
    justify-content: center;
}

@media (max-width: 1024px){
    .nav-menu.desktop-nav {
        gap: 10px;
    }
}

.nav-menu.desktop-nav a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu.desktop-nav a:hover {
    color: #1D75BC;
}

.nav-menu.desktop-nav li.active > a {
    color: #020202;
}

/* 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;
}

.dropdown li a{
    color: white;
}
.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 {
    background: #9E1F63;
    padding-left: 25px;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
    margin-left: 5px;
}
.main-navigation .nav-menu .dropdown li a:hover {
    background: #9E1F63;
    color: #fff !important;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
    color: white;
}

/* Call Us Button - Right Side (Not too far right) */
.nav-cta-button {
    flex-shrink: 0;
    margin-left: 20px;
}

.call-us-btn {
    background: #1D75BC;
    color: #fdfdfd;
    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:  #9E1F63;
    color: #ffffff;
   
}

.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;          
}
.mobile-has-dropdown > .mobile-dropdown {
    flex-basis: 100%;        
}

/* 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 #9E1F63;
}

.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 #9E1F63;
}

.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: #9E1F63;
}

/* 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: #9E1F63;
    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 0px;
    color: hsl(0, 3%, 7%);
    text-decoration: none;
        background-color: #f8f9fa;
    font-size: 14px;
    border-left: 2px solid transparent;
    transition: all 0.3s ease;
    border-bottom: 2px solid #9E1F63 ;
}

.mobile-dropdown li a:hover {
    color: #9E1F63;
    border-left-color: #9E1F63;
    padding-left: 20px;
}


.mobile-dropdown li:last-child a {
    border-bottom: none;
}








/* =============================================
   FOOTER (Magenta - Image Style)
============================================= */

.site-footer {
    background: #9E1F63;
    color: #fff;
    font-family: 'Poppins', 'Roboto', Arial, sans-serif;
    overflow-x: hidden;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ---------- Main ---------- */
.footer-main { 
    /* padding: 80px 0 60px;     
    padding-left: 50px;
    padding-right: 100px;  */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr;
    gap: 0px;
    align-items: start;
}

/* Column 1 */
.footer-logo img {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    margin-bottom: 35px;
}
.footer-description {
    margin: 0 0 40px;
    font-size: 15px;
    line-height: 2;
    color: #fff;
}
.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.footer-legal a {
    color: #fff;
    font-size: 15px;
    text-decoration: none;
    transition: opacity .2s;
}
.footer-legal a:hover { opacity: .8; text-decoration: underline; }

/* Headings + white bar */
.footer-heading {
    margin: 0 0 12px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
}
.footer-heading-bar {
    width: 38px;
    height: 2px;
    background: #fff;
    margin: 0 0 35px;
}

/* Facebook plugin */
.footer-fb-wrap {
    max-width: 340px;
    width: 100%;
}
.footer-fb-wrap .fb-page,
.footer-fb-wrap iframe {
    max-width: 100% !important;
}

/* Address column */
.addr-label {
    margin: 0 0 12px;
    font-size: 15px;
    color: #fff;
}
.addr-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 26px;
    font-size: 15px;
}
.addr-item svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
}
.addr-item a {
    color: #fff;
    text-decoration: none;
}
.addr-item a:hover { text-decoration: underline; }

/* ---------- Bottom ---------- */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.25);
    padding: 26px 0;
}
.copyright-text {
    margin: 0;
    text-align: center;
    font-size: 15px;
    color: #fff;
}
.copyright-text a {
    color: #fff;
    text-decoration: none;
}
.copyright-text a:hover { text-decoration: underline; }

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .footer-grid { 
        grid-template-columns: 1fr; 
        gap: 55px; 
    }
    .footer-main { 
        padding: 60px 0 45px; 
    }
}
@media (max-width: 576px) {
    .footer-container { padding: 0 18px; }
    .footer-main { 
        padding: 50px 0 40px; 
    }

    /* FB plugin ko container ke andar force karo */
    .footer-fb-wrap {
        max-width: 100%;
        overflow: hidden;
    }
    .footer-fb-wrap .fb-page,
    .footer-fb-wrap .fb-page > span,
    .footer-fb-wrap .fb-page > span > iframe,
    .footer-fb-wrap iframe {
        width: 100% !important;
        max-width: 100% !important;
    }

    .footer-logo img { max-width: 220px; margin-bottom: 25px; }
    .footer-heading { font-size: 18px; }
    .footer-description { font-size: 14px; }
    .addr-item { font-size: 14px; }
    .copyright-text { font-size: 12px; }
}

@media (max-width: 360px) {
    .footer-container { padding: 0 14px; }
    .footer-grid { gap: 45px; }
    .footer-description { font-size: 13.5px; }
}


.footer-main {
    /* padding: 80px 0 80px;
    margin: 69px 0 80px;
        margin-right: -300px; */
        padding: 60px 0px;
}



/* 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;
}
