.hero-title { letter-spacing: -1.5px; line-height: 1.1; }
    .hero-italic { font-style: italic; color: #0d6efd; }
    .rounded-5 { border-radius: 2.5rem !important; }
    .bg-dark-navy { background-color: #0a0e1a; }
    .feature-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); transition: 0.3s; }
    .feature-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-5px); }
    .faq-button:not(.collapsed) { background-color: #f8f9fa; color: #000; }
    .hero-padding{
        padding-top:10rem;
        padding-bottom:7rem;

    }
.rounded-4 { border-radius: 2rem !important; }
.hero-image-container {
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1.5rem;
}
/* Responsive dashed border from your specific CTA request */
.cta-dashed-border {
    border: 2px dashed #2563eb;
    border-radius: 25px;
    padding: 30px;
}

/* Media Query for Large Desktops (1200px to 1400px) */
@media (max-width: 1400px) and (min-width: 1200px) {

    /* Use a space instead of '>' to find .res-btn anywhere inside .hero-padding */
 .res-btn {
        font-size: 18px !important;
        padding-left: 2rem !important; /* Optional: adjust padding for the range */
        padding-right: 2rem !important;
    }

    .hero-title {
        font-size: 50px !important;
    }
}
/* Media Query for screens below 1000px (Tablets and Mobile) */
@media (max-width: 999px) {

    .hero-padding {
        /* Adjusted padding for smaller vertical space */
        padding-top: 6rem !important;
        padding-bottom: 3rem !important;
    }

    /* Target the second banner to remove top spacing */
    .second-banner {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    /* Utility class to force zero margins */
    .margin-zero {
        margin: 0 !important;
    }
    
    /* Optional: Ensure the responsive layout stacks correctly */
    .flex-lg-row {
        flex-direction: column !important;
        text-align: center;
    }
}

/* Media Query for Mobile Devices (under 500px) */
@media (max-width: 499px) {

    /* Stack buttons vertically on small mobile screens */
    .button-flex {
        flex-direction: column !important;
        width: 100%;
    }

    /* Ensure buttons take full width and center text */
    .res-btn {
        justify-content: center !important;
        display: flex !important;
        width: 100% !important;
        margin-bottom: 10px; /* Spacing between stacked buttons */
    }

    /* Hide icons if requested to simplify the UI */
    .icon-none {
        display: none !important;
    }
}
.hover-button:hover{
    color: #000;
}

/* Keeps navigation arrows aligned and pretty */
    .swiper-button-next, .swiper-button-prev { color: #0d6efd; transform: scale(0.7); }
    .swiper-pagination-bullet-active { background: #0d6efd; }
    .h-auto { height: auto !important; } /* Ensures cards stretch equally */