/* ===============================
   LAYOUT UTILITIES
================================ */

/* Header + Footer spacing */
.bg-layout {
    padding-top: 75px;
    padding-bottom: 75px;
}

/* Fixed height (safe name) */
.x-h60 {
    height: 60px;
}

/* Max height (optional but useful) */
.x-mh200 {
    max-height: 200px;
}

/* Responsive max height */
.x-mh50vh {
    max-height: 50vh;
}


.cta-box{
    background: linear-gradient(135deg,#0d6efd,#4dabf7);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin: 20px 0;
}

.cta-content h2{
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content p{
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.cta-btn{
    display: inline-block;
    background: #ff7a00;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.cta-btn:hover{
    background: #e66a00;
}