.navbar-brand img {
    width: 90px;

}

.hero-section {
    padding: 120px 0;
}

.hero-content {
    color: #fff;
    /* Keep text readable on image */
}

.hero-form {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-form h4 {
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-form .form-control,
.hero-form .form-select {
    margin-bottom: 15px;
}


.hero-content {
    color: #fff;
}

.hero-sub-title {
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #ffd24d;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-title span {
    background: linear-gradient(90deg, #ffcc00, #ff8c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text {
    font-size: 17px;
    max-width: 90%;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* FORM BEAUTIFICATION */
.hero-form {
    background: #ffffff;
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    position: relative;
    top: 10px;
}

.hero-form::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, #ffcc00, #ff8c00);
    z-index: -1;
    border-radius: 20px;
}

.hero-form h4 {
    font-weight: 700;
    margin-bottom: 25px;
    text-align: center;
}

.hero-form .form-control,
.hero-form .form-select {
    height: 48px;
    border-radius: 8px;
}

.hero-form .form-control:focus,
.hero-form .form-select:focus {
    border-color: #ff8c00;
    box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.2);
}

/* BUTTON ENHANCEMENT */
.theme-btn {
    border-radius: 30px;
    padding: 12px 28px;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    transform: translateY(-3px);
}

.py-120 {
    padding: 35px 0;
}


.about-experience {
    position: absolute;
    top: 2px;
    left: -39px;
    text-align: center;
    background: var(--theme-color);
    padding: 11px 8px 15px 10px;
    border-radius: 20px;
    color: var(--color-white);
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 10%);
}

/* This hides the element on screens smaller than 768px */
@media (max-width: 767px) {
    .about-experience {
        display: none !important;
    }

    .site-title {
        font-weight: 800;
        text-transform: capitalize;
        font-size: 34px;
        color: var(--color-dark);
        margin-top: 5px;
        margin-bottom: 0;
        position: relative;
    }
}

/* Glass Effect Hero Content */
.glass-content {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-radius: 18px;
    padding: 10px 10px 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);

    /* small card width */
}


/* Text Colors */
.glass-content .hero-sub-title {
    color: #ffd24d;
    font-weight: 600;
    letter-spacing: 1px;
}

.glass-content .hero-title {
    color: #ffffff;
    font-weight: 800;
}

.glass-content .hero-title span {
    color: #ffd24d;
}

.glass-content .hero-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-top: 15px;
}

/* Buttons */
.glass-content .theme-btn {
    background: #ffd24d;
    color: #111;
    border-radius: 50px;
    padding: 14px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.glass-content .theme-btn:hover {
    background: #ffffff;
    color: #000;
}

.glass-content .theme-btn2 {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.glass-content .theme-btn2:hover {
    background: #ffffff;
    color: #000;
}


/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

/* Popup Box */
.popup-box {
    background: #ffffff;
    padding: 35px;
    width: 380px;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

/* Close */
.popup-close {
    position: absolute;
    top: 12px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
}

/* Button */
.brochure-btn {
    background: #d21a26;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 50px;
    cursor: pointer;
    margin-top: 15px;
}

.brochure-btn i {
    margin-right: 8px;
}

/* Form */
.popup-box input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 6px;
    border: 1px solid #ccc;
}


/* Small devices: Mobile */
@media (max-width: 991px) {
    .glass-content {
        padding: 25px 20px;
        /* reduce padding */
        border-radius: 12px;
        /* smaller corners */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .glass-content .hero-title {
        font-size: 28px;
        /* smaller headline */
    }

    .glass-content .hero-sub-title {
        font-size: 14px;
        /* smaller subtitle */
    }

    .glass-content .hero-text {
        font-size: 14px;
        /* smaller paragraph */
    }

    .glass-content .theme-btn,
    .glass-content .theme-btn2 {
        padding: 10px 20px;
        /* smaller buttons */
        font-size: 14px;
    }
}

/* Extra small devices: Mobile portrait */
@media (max-width: 575px) {
    .glass-content {
        padding: 10px 10px;
        border-radius: 10px;
    }

    .glass-content .hero-title {
        font-size: 22px;
    }

    .glass-content .hero-sub-title {
        font-size: 13px;
    }

    .glass-content .hero-text {
        font-size: 13px;
    }

    .glass-content .theme-btn,
    .glass-content .theme-btn2 {
        padding: 8px 18px;
        font-size: 13px;
    }
}



.sticky-actions {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sticky-btn {
    width: 32px;
    height: 34px;
    background: #0c3aab;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.sticky-btn:hover {
    transform: scale(1.1);
    color: #fff;
}




/* Mobile only */


.pb-70 {
    padding-bottom: 16px;
}

.pt-100 {
    padding-top: 33px;
}

.footer-logo img {
    width: 107px;
    margin-bottom: 15px;
  
}

.pb-70 {
    padding-bottom: 1px;
}


@media (max-width: 767px) {
    .scroll-container {
        -webkit-overflow-scrolling: touch;
        padding-left: 15px;
        padding-right: 15px;
    }

    .scroll-container::-webkit-scrollbar {
        display: none;
        /* Hides scrollbar for a cleaner look */
    }

    .scroll-container .col-10 {
        flex: 0 0 auto;
        width: 85%;
        /* This ensures the 2nd card "peeks" in from the side */
    }
}

.card {
    transition: transform 0.3s ease;
    border-radius: 15px;
}

.card:hover {
    transform: translateY(-5px);
    background-color: #f8f9fa;
}

.p-4 {
    padding: 0.5rem !important;
}