.sarmila-hero-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
    
    /* Background configuration: linear-gradient handles the dark blue overlay tint */
    /* background: linear-gradient(rgba(15, 32, 67, 0.85), rgba(15, 32, 67, 0.85)), 
                url("conta.jpg") no-repeat center center; */
    background-size: cover;
    background-attachment: fixed; /* Parallax effect (optional, remove if unwanted) */
    padding: 20px;
    text-align: center;
   
     background:
    linear-gradient(
        rgba(0,40,38,.85),
        rgba(0,40,38,.85)
    ),
    url("\assets\images\order-new\conta.jpg") no-repeat center center;
}

/* Container to strictly control text boundaries */
.sarmila-hero-content-style {
    max-width: 950px;
    width: 100%;
    z-index: 2;
}

/* ==========================================
   3. Typography Rules
   ========================================== */
.sarmila-hero-subtitle {
    color: #e2e8f0;
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.sarmila-hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

/* ==========================================
   4. Interactive Component (Buttons)
   ========================================== */
.sarmila-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Prevents buttons from clipping on extremely narrow panels */
    /* border: 1px solid red; */
}

/* Universal Button Baseline */
.sarmila-btn {
    display: inline-block;
    padding: 14px 34px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.25s ease-in-out;
    text-align: center;
}

/* Red Button Styling */
.sarmila-btn-primary {
    background-color: #b91c1c; /* Crimson color similar to image */
    color: #ffffff;
    border: 2px solid #b91c1c;
}

.sarmila-btn-primary:hover {
    background-color: #991b1b;
    border-color: #991b1b;
    transform: translateY(-2px);
}

/* White Button Styling */
.sarmila-btn-secondary {
    background-color: #ffffff;
    color: #0f172a;
    border: 2px solid #ffffff;
}

.sarmila-btn-secondary:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Helper rule for perfect structural formatting */
.sarmila-desktop-only {
    display: inline;
}

/* ==========================================
   5. Fluid Responsive System
   ========================================== */

/* Tablets (landscape and portrait) */
@media (max-width: 992px) {
    .sarmila-hero-title {
        font-size: 2.75rem;
    }
    .sarmila-desktop-only {
        display: none; /* Allows natural text wrapping on tablets */
    }
}

/* Mobile Devices */
@media (max-width: 576px) {
    .sarmila-hero-section {
        padding: 40px 16px;
    }

    .sarmila-subtitle {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .sarmila-hero-title {
        font-size: 2rem;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .sarmila-buttons {
        flex-direction: column; /* Stacks links vertically on small mobile displays */
        width: 100%;
        gap: 12px;
    }

    .btn {
        width: 100%; /* Makes buttons full-width on mobile for better touch targets */
        padding: 12px 24px;
    }
}