/* ===========================
   HERO SLIDER SECTION
   =========================== */
   .menu-link {
    color: #555;
    font-weight: 400;
    text-decoration: none;
    transition: 0.3s ease;
}

.menu-link:hover {
    color: #000;
}

/* Active Page */
.menu-link.active {
    color: #000;
    font-weight: 700;
}

/* Optional: active contact button */
.hero-btn1.active-btn {
    background-color: #000;
    color: #fff;
}


.hero-slider-section {
    position: relative;
    width: 100%;
    height: 485px;
    overflow: hidden;
}

/* Swiper container */
.hero-slider-container {
    width: 100%;
    height: 100%;
}

/* Swiper wrapper */
.swiper-wrapper {
    height: 100%;
}

/* Individual slide */
.swiper-slide {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    pointer-events: none; /* prevent swiper from blocking clicks */
}

/* ===========================
   BACKGROUND IMAGE
   =========================== */

.slide-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.65);
    z-index: 1;
    pointer-events: none;
}
.breadcrumb-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px ;
    background: #ffffff;
    border-radius: 0 24px 0 24px; /* top-left, top-right, bottom-right, bottom-left */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    font-family: Arial, sans-serif;
}

.breadcrumb-btn a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
}

.breadcrumb-btn a:hover {
    color: #0d6efd;
}

.breadcrumb-btn .active {
    color: #0d6efd;
    font-weight: 500;
}

.breadcrumb-btn span {
    color: #666;
}


/* ===========================
   CONTENT LAYER (CLICKABLE)
   =========================== */

.slide-inner {
    position: relative;
    z-index: 10;
    inset: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    pointer-events: auto; /* allow clicking */
}

/* Title */
.slide-inner h1 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 50px;
}
.hero-btn1 {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: var(--primary-color);
     color: var(--white);
     text-decoration: none;
     padding: 10px;
     border-radius: 50px;
     /* font-weight: 600; */
     font-size: 16px;
     transition: all 0.3s ease;
     border: 2px solid #4dabf7;
     position: relative;
     overflow: hidden;
 }

 .hero-btn1:hover {
     background: transparent;
     color: var(--secondary-color);
     border-color: var(--secondary-color);
     transform: translateY(-2px);
     box-shadow: 0 10px 20px rgba(77, 171, 247, 0.2);
 }

 .hero-btn1::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
     transition: left 0.5s ease;
 }

 .hero-btn1:hover::before {
     left: 100%;
 }

/* ===========================
   HERO BUTTON
   =========================== */

.hero-btn {
    display: inline-block;
    padding: 10px 26px;
    font-size: 14px;
    font-weight: 600;
    color: #1e293b;
    background: #e5e7eb;
    border: 1px solid #d1d5db;
    border-radius: 0 24px 0 24px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
}

.hero-btn span {
    color: #2563eb;
}

.hero-btn:hover {
    background: #dbe2f0;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */

/* Tablets */
@media (max-width: 992px) {
    .hero-slider-section {
        height: 450px;
    }

    .swiper-slide {
        height: 450px;
    }

    .slide-inner h1 {
        font-size: 28px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-slider-section {
        height: 550px;
    }

    .swiper-slide {
        height: 550px;
    }

    .slide-inner h1 {
        font-size: 20px;
        line-height: 1.3;
    }

    .hero-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}
