.story-hero {
    position: relative;
    background: url("/assests/out_3.jpeg") center/cover no-repeat;
    min-height: 380px;
    display: flex;
    align-items: center;
    margin-top: 2%;
}

/* Dark overlay */
.story-overlay {
    width: 100%;
    min-height: 380px;
    background: rgba(0, 0, 0, 0.45);
    padding: 80px 0;
}

/* Title */
.story-title {
    color: #fff;
    font-weight: 700;
    font-size: 42px;
    margin-bottom: 10px;
}

/* Subtitle */
.story-subtitle {
    color: #ddd;
    letter-spacing: 2px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
    .story-title {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .story-hero {
        min-height: 260px;
    }

    .story-overlay {
        padding: 60px 0;
    }

    .story-title {
        font-size: 28px;
    }

    .story-subtitle {
        font-size: 12px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 576px) {
    .story-title {
        font-size: 24px;
    }

    .story-overlay {
        padding: 50px 0;
    }
}

/* Custom Styles */
.heritage-section {
    background-color: #fff;
    overflow: hidden;
}

.content-text p {
    font-size: 1.05rem;
    line-height: 1.7;
}


.main-img-container {
    position: relative;
    padding-bottom: 50px;
   
}

.main-heritage-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 40px !important;
  
}

.overlay-img-card {
    position: absolute;
    bottom: 0;
    left: -30px;
    width: 180px;
    height: 180px;
    background: white;
    padding: 10px;
    border-radius: 25px;
    z-index: 2;
}

.overlay-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
    .overlay-img-card {
        width: 140px;
        height: 140px;
        left: 20px;
    }

    .ps-lg-5 {
        padding-left: 0 !important;
        margin-top: 40px;
    }
}

/* Styling for the section */
.values-section {
    background-color: #12100e;
    font-family: 'Playfair Display', serif;
}

.text-accent {
    color: #c98a2e;
}

/* Card Styling */
.value-card {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.value-card:hover {
    border-color: #c98a2e;
    transform: translateY(-5px);
}

/* Number Circle */
.number-circle {
    width: 45px;
    height: 45px;
    background-color: #d17a00;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.text-light-muted {
    color: #a5a5a5;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .value-card {
        padding: 40px 25px !important;
        border-radius: 30px;
    }
}