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

*
html, body{
   
    max-width: 100vw;
}

/* ============================================================
   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: #672E91;
    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: 16px;
    font-weight: 600;
    color: #ffffff;
}

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

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

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

.social-icons:hover {
    transform: scale(1.1);
    color: #F9AF40;
}

.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: #F9AF40;

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

.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: #F9AF40;
    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: transparent;
    color: #000000;
    border: 2px solid #F9AF40;
}

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





/* 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: #000000;
    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:#000000;
    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 Styles */
.site-footer {
    background-color: #672E91;
    color: #ffffff;
    padding: 60px 0 0;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}



.footer-logo img {
    max-width: 250px;
    height: auto;
    margin-bottom: 20px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ffffff;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff;
    border-radius: 50%;
    color: #672E91;
    
}

.social-icon:hover {
   color: #F9AF40;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* YouTube Icon - Orange Hover Effect */
.social-icon.youtube-icon {

    color: #672E91;
}

.social-icon.youtube-icon:hover {
   color: #F9AF40;

    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Footer Headings */
.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* Footer Column - Space Reduced */
.footer-col {
    padding: 0;
    margin-bottom: 0;
}

.footer-col .footer-heading {
    margin-bottom: 15px;
    font-size: 16px;
}

/* Contact Info Items - Reduced Spacing */
.footer-col .contact-info .contact-item {
    margin-bottom: 10px;
}

.footer-col .contact-info .contact-item strong {
    margin-bottom: 2px;
    font-size: 14px;
}

.footer-col .contact-info .contact-item {
    font-size: 13px;
    line-height: 1.5;
}
/* Footer Links */
.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: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #F9AF40;
    padding-left: 5px;
}

/* Commercial Services - Orange Hover Effect */
.footer-links a.commercial-link {
    color: #ffffff;
}

.footer-links a.commercial-link:hover {
    color: #F9AF40;
    padding-left: 5px;
}

/* Contact Info */
.contact-info {
    font-size: 15px;
    line-height: 1.8;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item strong {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

/* Phone Link - Orange Hover Effect */
.phone-link {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #F9AF40;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 25px 0;
    background-color: rgba(0, 0, 0, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text {
    margin: 0;
    font-size: 14px;
    color: #ffffff;
}

.copyright-text a {
    color: #F9AF40;
    text-decoration: none;
}

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

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

.footer-bottom-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
  
}







/* 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: 570px){
    .hero-wrap-2 {
        min-height: 250px;
    }
}
.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;
}

