* {
  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-blue {
    background-color: #3974EC;
    padding: 15px 0;
}

.container-blue {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar-wrapper-blue {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.top-bar-left-blue {
    display: flex;
    align-items: center;
    gap: 30px;
}

.info-item-blue {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
}

.info-icon {
    flex-shrink: 0;
    stroke: #fff;
}

.info-content {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 15px;
    font-weight: 600;
    opacity: 0.9;
}

.info-value {
    font-size: 14px;
    font-weight: 700;
}

.info-value a {
    color: #fff;
    text-decoration: none;
}

.limited-offer .info-value {
    color: #fffcf6;
}

/* ===== Social Section ===== */
.social-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.follow-label {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon svg {
    fill: #fff;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ===== Main Navigation ===== */
.main-navigation {
    background-color: #f8f9fa;
    padding: 5px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo .logo-image {
    height: 76px;
    width: 236px;
}

/* ===== Desktop Navigation ===== */
.desktop-nav {
    display: flex;
    list-style: none;
    margin: 28px;
    padding: 0;
    gap: 25px;
}

.desktop-nav > li > a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 2px 0;
    transition: color 0.3s ease;
}

.desktop-nav > li.active > a,
.desktop-nav > li > a:hover {
    color: #3974EC;
}

/* ===== Dropdown ===== */
.has-dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.dropdown-arrow {
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}

.dropdown li a:hover {
    background-color: #f8f9fa;
    color: #3974EC;
    padding-left: 25px;
}

/* ===== Mobile Menu Toggle ===== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ===== Mobile Menu Overlay ===== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 326px;
    height: 80vh;
    background: #fff;
    z-index: 9999;
    transition: right 0.3s ease;
    overflow-y: auto;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-container {
    padding: 20px;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.mobile-menu-header .logo-image {
    height: 50px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    color: #333;
}

/* ===== Mobile Top Info ===== */
.mobile-top-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 25px;
}

.mobile-info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.mobile-info-item:last-child {
    margin-bottom: 0;
}

.mobile-info-item .label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    margin-bottom: 3px;
}

.mobile-info-item .value {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.mobile-info-item .value a {
    color: #333;
    text-decoration: none;
}

/* ===== Mobile Navigation ===== */
.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: 15px 0;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.mobile-nav-menu > li.active > a {
    color: #3974EC;
}






/* ===== Mobile Dropdown ===== */
.mobile-has-dropdown {
    /* display: flex;
    align-items: center;
    justify-content: space-between; */
    /* padding: 15px 20px; */
    border-bottom: 1px solid #eee;
    position: relative;
}

.mobile-dropdown-toggle{
        display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 10px 0px;
}

.mobile-main-link {
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    flex: 1;
}

.mobile-main-link:hover {
    color: #4a6cf7;
}

.mobile-dropdown-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.minus-icon {
    display: none;
}

.mobile-has-dropdown.open .plus-icon {
    display: none;
}

.mobile-has-dropdown.open .minus-icon {
    display: block;
}

.mobile-dropdown {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}

.mobile-has-dropdown.open .mobile-dropdown {
    display: block;
}

.mobile-dropdown li {
    padding: 10px 20px 10px 30px;
    border-bottom: 1px solid #f5f5f5;
}

.mobile-dropdown li a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
}

.mobile-dropdown li a:hover {
    color: #4a6cf7;
}



/* ===== Responsive ===== */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .limited-offer,.address-header {
        display: none;
    }
    
    .top-bar-left-blue {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-bar-wrapper-blue {
     
        gap: 15px;
    }
    .follow-label{
        display:none;
    }
    .top-bar-left-blue {
      
        align-items: flex-start;
        width: 100%;
    }
    
    .info-item-blue {
        width: 100%;
    }
    
    .social-section {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .top-bar-blue {
        padding: 10px 0;
    }
    
    .info-label {
        font-size: 12px;
    }
    
    .info-value {
        font-size: 13px;
    }
    
    .follow-label {
        display: none;
    }
}












/* ============================================================
   FOOTER — Matches your screenshot design
   ============================================================ */

/* ===== Footer New ===== */
.site-footer-new {
    background-color: #3974EC;
    color: #fff;
    padding: 60px 0 0;
}

.footer-main-new {
    padding-bottom: 40px;
}

.footer-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid-new {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

/* ===== Column 1: About ===== */
.footer-about-new .footer-logo-new img {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
}

.footer-desc-new {
    font-size: 14px;
    line-height: 1.8;
    color: #fff;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-social-label {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 15px 0;
}

.social-icons-new {
    display: flex;
    gap: 12px;
}

.social-icon-new {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon-new svg {
    fill: #fff;
    width: 18px;
    height: 18px;
}

.social-icon-new:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* ===== Column 2: Quick Links ===== */
.footer-heading-new {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
}

.footer-links-new {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-new li {
    margin-bottom: 10px;
}

.footer-links-new li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links-new li a:hover {
    color: #7B9630;
    transform: translateX(5px);
}

/* ===== Column 3: Facebook ===== */
.facebook-widget-new {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    padding: 15px;
}

/* ===== Footer Bottom ===== */
.footer-bottom-new {
    border-top: 1px solid rgb(8 8 8);
    padding: 20px 0;
}

.footer-bottom-line {
    display: none;
}

.copyright-text-new {
    margin: 0;
    font-size: 14px;
    color: #fff;
    text-align: center;
    line-height: 1.6;
}

.fb-page-new {
    /* Fallback background image (apni actual image ka path yahan dein) */
    background-image: url('{{ asset("img/bg/746385218_1020271574168550_6934572152609013400_n") }}');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 250px; /* Widget ki height ke barabar */
    width: 100%;
    max-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

/* Jab Facebook widget successfully load ho jaye, to background hide ho jaye (optional) */
.fb-page-new iframe {
    position: relative;
    z-index: 2;
    background: #ffffff; /* Widget ke peeche ki image chupane ke liye */
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
    .footer-grid-new {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-desc-new {
        max-width: 100%;
    }
}





@media (max-width: 576px) {
    .site-footer-new {
        padding: 50px 0 0;
    }
    
    .footer-heading-new {
        font-size: 18px;
    }
    
    /* .social-icons-new {
        justify-content: center;
    } */
    
    .footer-links-new li a {
        text-align: center;
    }
}

/* Breadcrumb Section */
.hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-wrap-2 {
  min-height: 350px;
  display: flex;
  align-items: center;
  /* padding: 60px 0 40px; */
}

@media (max-width: 576px) {
    .hero-wrap-2 {
        min-height: 220px;
        display: flex;
        align-items: center;
    
    }
}

.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;
}
