@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;700&family=Space+Grotesk:wght@300;500;700&display=swap');



/* --- Global Resets --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* --- Hero Section --- */
.hero-section {
        font-family: 'Raleway', sans-serif;
    position: relative;
    height: 450px; /* Desktop height */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0 8%; /* Left-Right padding for balance */
    color: white;
}

/* Background Image */
.hero-bg-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.5); /* Thoda aur dark kiya taaki text clear dikhe */
}

.content-wrapper {
    z-index: 1;
    width: 100%; /* Full width for text alignment */
}

/* Fluid Typography: Desktop 70px, Mobile 32px tak automatically adjust hoga */
.hero-title {
    
    font-size: 50px; 
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: 1px;
}

/* Breadcrumb Container */
.breadcrumb-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap; /* Mobile par text niche line mein aa sake */
    gap: 10px;
}

.home-icon {
    background: white;
    color: black;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    flex-shrink: 0; /* Icon chota nahi hoga */
}

.text {

    font-size: clamp(14px, 4vw, 18px); /* Responsive font size */
    font-weight: bold;
    line-height: 1.4;
}

.bullet-img {
    height: 16px;
    width: auto;
    display: block;
}

.active {
    opacity: 0.9;
}

/* --- RESPONSIVE BREAKPOINTS --- */

/* Tablet View (Max 992px) */
@media (max-width: 992px) {
    .hero-section {
        height: 380px;
        padding-left: 5%;
    }
}

/* Mobile View (Max 768px) */
@media (max-width: 768px) {
    .hero-section {
        height: 320px; /* Mobile par height thodi kam */
        padding: 0 20px; /* Mobile standard spacing */
        justify-content: flex-start;
        text-align: left; /* Left alignment maintain rakhi */
    }

    .hero-title {
        margin-bottom: 10px;
    }

    .breadcrumb-container {
        gap: 8px;
    }
}

/* Small Mobile (Max 480px) */
@media (max-width: 480px) {
    .hero-section {
        height: 280px;
    }
    
    /* Agar title bahut bada ho toh wrap behavior */
    .hero-title {
        word-wrap: break-word;
    }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 28px !important;
    line-height: 1.15 !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
    max-width: 100% !important;
  }
}
