* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red-color: #D11E2D;
  --yellow-color:#FCDA41;
  --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;
}
a{
  text-decoration: none;
  color: inherit;
}
/* ============================================================
   HEADER — Matches your screenshot design
   ============================================================ */
/* Top Bar Styles */
.top-bar {
    background: #ffffff;
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.top-bar__brand {
    flex: 0 0 auto;
}

.brand-logo__img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.top-bar__info {
    display: flex;
    align-items: center;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.special-offer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.special-offer__label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}

.special-offer__text {
    font-size: 16px;
    font-weight: 700;
    color: black;
}

.phone-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    color: #D11E2D;
    flex-shrink: 0;
}

.phone-info {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.phone-number {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-number:hover {
    color: #D11E2D;
}

.top-bar__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #D11E2D;
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D11E2D;
    transform: translateY(-2px);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

/* Main Navigation */
.main-navigation {
    background: #D11E2D;

}
.site-header{
  position: sticky;
    top: 0;
    z-index: 1000;
}
.nav-wrapper {
    display: flex;
    align-items: center;    
    padding: 10px 0px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 15px;
}

.mobile-menu-toggle .bar {
    display: block;
    width: 100%;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;    
    justify-content: space-between;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 18px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
    background: rgba(0, 0, 0, 0.1);
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-arrow {
    width: 10px;
    height: 10px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 250px;
    list-style: none;
    margin: 0;
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown li a:hover {
    background: #f5f5f5;
    color: #D11E2D;
    padding-left: 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .top-bar__wrapper {
        flex-wrap: wrap;
        gap: 20px;
    }

    .top-bar__info {
        order: 3;
        width: 100%;
        justify-content: flex-start;
        gap: 30px;
    }

    .special-offer {
        flex: 1;
    }

    .phone-section {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .top-bar {
        padding: 10px 0;
    }

    .top-bar__wrapper {
        grid-direction: column;
        align-items: stretch;
    }

    .top-bar__brand {
        text-align: center;
        margin-bottom: 10px;
    }

    .brand-logo__img {
        height: 50px;
    }

    .top-bar__info {
        display: none;
        grid-direction: column;
        gap: 15px;
        align-items: flex-start;
    }

    .special-offer,
    .phone-section {
        width: 100%;
    }

    .special-offer__label {
        font-size: 12px;
    }

    .special-offer__text {
        font-size: 14px;
    }

    .phone-label {
        font-size: 11px;
    }

    .phone-number {
        font-size: 16px;
    }

    .top-bar__social {
        justify-content: center;
        margin-top: 10px;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #D11E2D;
        flex-direction: column;
        padding: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu > li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-menu > li > a {
        padding: 15px 20px;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.1);
        display: none;
        min-width: 100%;
    }

    .dropdown.active {
        display: block;
    }

    .dropdown li a {
        padding: 12px 30px;
        color: #fff;
    }

    .dropdown li a:hover {
        background: rgba(0, 0, 0, 0.2);
        color: #fff;
        padding-left: 30px;
    }

    .dropdown-arrow {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .brand-logo__img {
        height: 40px;
    }

    .special-offer__text {
        font-size: 13px;
    }

    .phone-number {
        font-size: 14px;
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .nav-menu > li > a {
        font-size: 13px;
        padding: 12px 15px;
    }
}

/* Animation for mobile menu */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}
















/* ============================================================
   FOOTER — Matches your screenshot design
   ============================================================ */

/* Footer Styles */
.site-footer {
    background-color: #FCDA41;
    color: #000;
    font-family: 'Arial', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    padding: 40px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 40px;
}

.footer-col {
    margin-bottom: 20px;
}

.footer-about {
    max-width: 350px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #000;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.footer-socials a:hover {
    transform: translateY(-3px);
    background-color: #D11E2D;
    color: #fff;
}

.social-youtube,
.social-facebook,
.social-instagram {
    background-color: #fff;
    color: #000;
}

.footer-socials svg {
    width: 20px;
    height: 20px;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-contact .contact-block {
    margin-bottom: 15px;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #000;
}

.contact-value {
    font-size: 14px;
    color: #000;
    text-decoration: none;
}

.contact-value:hover {
    opacity: 0.7;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    margin-top: 20px;
}

.footer-bottom__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom p {
    font-size: 13px;
    margin: 0;
    color: #000;
}

.footer-credit {
    color: #D11E2D;
}

.footer-legal {
    display: flex;
    gap: 10px;
    align-items: center;
}

.footer-legal a {
    color: #000;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s ease;
}

.footer-legal a:hover {
    opacity: 0.7;
}

.footer-legal span {
    color: #000;
}

/* Responsive Design */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-about {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-main {
        padding: 30px 0 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .footer-logo img {
        max-width: 150px;
    }
    
    .footer-desc {
        font-size: 13px;
    }
    
    .footer-heading {
        font-size: 14px;
    }
}













/* Breadcrumb Section */
.hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-wrap-2 {
  min-height: 320px;
  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: white;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    font-size: 20px;
    font-weight: 700;
  /* text-align: center; */
}

.breadcrumbs a {
   color: white;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    font-size: 20px;
    font-weight: 700;
}

.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; */
}


.hero-title
{
    color: white;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    font-size: 36px;
}

.breadcrumb-link , .breadcrumb-separator, .breadcrumb-current{
    color: white;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.8);
    font-size: 20px;
    font-weight: 700;
}