* {
    padding: 0%;
    margin: 0%;

}

/* Default (Desktop View) */
.contact-item {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.contact-item i {
    margin-right: 8px;
    font-size: 15px;
}

/* Phone Styling */
.contact-phone i {
    color: #3700ff;
    /* Blue icon for phone */
}

.contact-phone span {
    color: #ff381e;
    /* Red text for phone */
    font-weight: bold;
    /* Bold phone number */
}

/* Email Styling */
.contact-email i {
    color: #ff3d2f;
    /* Red icon for email */
}

.contact-email span {
    color: #004aad;
    /* Blue text for email */
    font-weight: bold;
    /* Bold email text */
}

/* Tablet View */
@media (max-width: 1024px) and (min-width: 577px) {

    .contact-phone span,
    .contact-email span {
        font-weight: bold;
        /* Keep bold on tablets */
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .contact-phone span {
        font-weight: bold;
        /* Keep bold */
        font-size: 12px;
        /* Phone a bit bigger */
    }

    .contact-email span {
        font-weight: bold;
        /* Keep bold */
        font-size: 11px;
        /* Smaller email text */
    }
}

.contact-email span {
    color: #2f00ff;
    /* Orange-red text for email */
}

/* Tablet View */
@media (max-width: 1024px) and (min-width: 577px) {
    .brand-logo {
        height: 35px;
    }

    .brand-name {
        font-size: 18px;
    }

    .contact-item {
        margin-left: 15px;
        font-size: 15px;
    }

    .contact-phone i {
        color: #00CED1;
        /* Dark turquoise icon */
    }

    .contact-phone span {
        color: #8b7a2e;
        /* Sea green text */
    }

    .contact-email i {
        color: #FF69B4;
        /* Hot pink icon */
    }

    .contact-email span {
        color: #8B0000;
        /* Dark red text */
    }
}

/* Mobile View */
@media (max-width: 576px) {
    .top-header {
        flex-direction: column;
        text-align: center;
    }

    .brand-section {
        margin-bottom: 7px;
    }

    .contact-section {
        flex-direction: column;
    }

    .contact-item {
        margin-left: 0;
        margin-bottom: 5px;
    }

    .contact-phone i {
        color: #f50808;
        /* Dark orange icon */
    }

    .contact-phone span {
        color: #f50808;
        /* Dark green text */
    }

    .contact-email i {
        color: #8A2BE2;
        /* Blue-violet icon */
    }

    .contact-email span {
        color: #1428dc;
        /* Crimson text */
    }
}


.fixed-contact-icons {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
    padding: 10px;
}

.contact-icon {
    background-color: white;
    color: white;
    padding: 12px 15px;
    border-radius: 0 5px 5px 0;
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.phone-icon {
    background-color: #ff000d;
}

.whatsapp-icon {
    background-color: #25d366;
}

.contact-icon:hover {
    background-color: #000;
}


/* Quick Enquire Button */
#quickEnquire {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: orange;
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1002;
    /* Ensure above other content */
}

/* Pulse Animation (optional) */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 5px #ff5722;
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 20px #ff784e;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 5px #ff5722;
    }
}


/* Enquiry Form Popup */
.enquire-form {
    position: fixed;
    bottom: -600px;
    right: 20px;
    width: 280px;
    /* smaller default size for desktop */
    background: white;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.3);
    border-radius: 10px 10px 0 0;
    transition: bottom 0.4s ease-in-out;
    z-index: 1001;
    padding: 12px;
    max-height: 85vh;
    overflow-y: auto;
}

/* Active (open) */
.enquire-form.active {
    bottom: 0;

}

/* Title */
.enquire-form h3,
.enquire-form h4 {
    text-align: center;
    margin: 8px 0;
    font-size: 16px;
    /* smaller heading */
    color: #ff5722;
}

/* Inputs */
.enquire-form input,
.enquire-form textarea {
    width: 100%;
    padding: 6px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 13px;
}

/* Button inside form */
.enquire-form button {
    width: 100%;
    padding: 8px;
    background-color: #ff5722;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    margin-top: 6px;
}

/* Close Button */
.close-btn {
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 18px;
    color: #555;
    cursor: pointer;
}

/* Overlay */
.form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 1000;
    transition: opacity 0.3s ease;
}

.form-overlay.active {
    display: block;
}

/* Default Desktop - Slide in from Right */
.enquire-form select {
    width: 100%;
    padding: 6px;
    margin: 5px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 13px;
    /* desktop smaller size */
}

/* Tablet View - Slide in from Right */
@media (max-width: 1024px) {
    .enquire-form {
        font-size: 12px;
        /* smaller for tablet */
        padding: 5px;
    }
}


/* Mobile View - Slide in from Right */
@media (max-width: 668px) {
    .enquire-form {
        position: fixed;
        top: 5;
        right: -60%;
        /* hidden */
        bottom: 5;
        width: 55%;
        /* smaller width on mobile */
        height: 70%;
        /* full height */
        border-radius: 0;
        max-height: 100vh;
        padding: 10px;
        transition: right 0.4s ease-in-out;
    }

    .enquire-form.active {
        right: 0;
    }

    .enquire-form h3,
    .enquire-form h4 {
        font-size: 14px;
    }

    .enquire-form input,
    .enquire-form textarea {
        font-size: 10px;
        padding: 5px;
    }

    .enquire-form button {
        font-size: 12px;
        padding: 6px;
    }
}

/* Quick Enquire Button (smaller size) */
#quickEnquire {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #ff5722;
    color: #fff;
    padding: 8px 10px;
    /* reduced size */
    font-size: 8px;
    /* smaller text */
    border-radius: 6px;
    cursor: pointer;
    z-index: 1002;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

#quickEnquire:hover {
    background: #e64a19;
}


/* Navbar Custom Styling */
.custom-navbar {
    background-color: white !important;
    /* White background for all views */
    font-weight: normal;
    font-size: 12px;
}

.custom-navbar .navbar-brand img {
    max-height: 50px;
}

.custom-navbar .nav-link {
    color: rgb(97, 9, 36) !important;
    padding: 10px 15px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    font-weight: normal;
    /* Removed bold */

}

.custom-navbar .nav-link:hover {
    color: #ffd700 !important;
    /* Gold hover effect */
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 6px;

}

.custom-navbar .dropdown-menu {
    background-color: #004aad;
    border: none;
}

.custom-navbar .dropdown-item {
    color: white !important;
    font-weight: semi-normal;
    /* Changed to semi-bold */
}

.custom-navbar .dropdown-item:hover {
    background-color: #003580;
    padding: 2px;
}

/* Desktop View (≥892px) */
@media (min-width: 892px) {
    .custom-navbar {
        background-color: white !important;
        font-weight: normal;
        /* No bold for desktop */
    }

    .custom-navbar .nav-link {
        font-size: 13px;
        font-weight: 600;
        /* Strong bold for desktop */
    }
}

/* Tablet View (768px – 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .custom-navbar {
        background-color: white !important;
    }

    .custom-navbar .nav-link {
        font-size: 10px;
    }
}

@media (max-width: 767px) {

    .carousel-item img,
    .slider img {
        object-fit: contain !important;
        height: auto !important;
    }

    .slider-image {
        background-size: contain !important;
    }
}


.custom-navbar .dropdown-item {
    padding: 6px 10px;
    /* Reduce space per item */
    font-size: 14px;
    /* Smaller text */

}

.custom-navbar .dropdown-menu li {
    line-height: 1.4;
    /* Compact line spacing */
}

.custom-navbar .nav-link {
    padding: 4px;

}






/* Header Bar */
header {
    background: #1e90ff;
    color: white;
    text-align: center;
    padding: 15px;
}

/* Responsive Title */
header h1 {
    margin: 0;
    font-size: clamp(20px, 4vw, 40px);
}


/* Scrolling Text Container */
.scrolling-text {
    background: white;
    color: #ac2c0c;
    font-style: Bold;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    height: 26px;
    display: flex;
    align-items: center;
    /* Vertically center text */
}

/* Text Style + Animation */
.scrolling-text p {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 30s linear infinite;
    font-size: clamp(14px, 2vw, 18px);
    font-weight: bold;
    font-style: italic;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Make sure it looks good on mobile */
@media (max-width: 600px) {
    .scrolling-text {
        height: 30px;
    }
}


/* Ensure carousel takes full width */


.carousel {
    width: 100%;
}


/* Common styling for images */
.carousel-item img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;

}

/* Desktop view (larger screens) */
@media (min-width: 992px) {
    .carousel-item img {
        height: 1000px;
        /* Adjust based on your preference */
    }
}

/* Tablet view */
@media (min-width: 768px) and (max-width: 991.98px) {
    .carousel-item img {
        height: 450px;
    }
}

/* Mobile view */
@media (max-width: 767.98px) {
    .carousel-item img {
        height: 380px;
    }
}

.carousel-item img {
    max-height: 150vh;
}

/* Base image style */

/* Desktop view - Large screens */
@media (min-width: 992px) {
    .carousel-img {
        height: 20px;
    }
}

/* Tablet view */
@media (min-width: 768px) and (max-width: 991.98px) {
    .carousel-img {
        height: 400px;
    }
}

/* Mobile view - Small screens */
@media (max-width: 767.98px) {
    .carousel-img {
        height: 340px;
    }
}



.about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 50px 40px;
    background: linear-gradient(90deg, #fffdfd, #fef3f3);
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    animation: fadeIn 1.2s ease-in-out;
    gap: 90px;
}

/* Text Styling */
.about-text {
    flex: 1;
    font-family: 'Segoe UI', Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    color: #333;
    animation: slideInLeft 1.2s ease-in-out;
    line-height: 1.7;
    text-align: left;
    order: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    background: linear-gradient(to right, #ff005c, #ff8a00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    margin-bottom: 16px;
}

/* Highlighted sections */
.about-text strong {
    color: #e63946;
    font-weight: 600;
}

/* Logo Styling */
.about-logo {
    flex: 0 0 320px;
    /* Large and balanced */
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1.2s ease-in-out;
    order: 2;
}

.about-logo img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

/* Tablet View */
@media (max-width: 1024px) {
    .about-section {
        padding: 40px 20px;
    }

    .about-logo {
        flex: 0 0 260px;
    }

    .about-text h2 {
        font-size: 28px;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
        gap: 0;
        /* remove extra spacing between elements */
        padding-bottom: 20px;
    }

    .about-text {
        order: 1;
        text-align: center;
        margin-bottom: 0;
        /* remove bottom margin of text block */
        padding-bottom: 0;
    }

    .about-logo {
        order: 2;
        margin-top: 25px;
        flex: 0 0 auto;
        width: 100%;

    }

    .about-logo img {
        width: 100%;
        max-width: 600px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 15px;
    }
}




/* Heading Style */
.section-heading {
    text-align: center;
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Stats Section Box */
.stats-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 30px 20px;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-card {
    flex: 1 1 calc(25% - 20px);
    /* 4 per row on desktop */
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    min-width: 220px;
}

.stat-card:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.stat-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
}

.counter {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
    color: #222;
}

.stat-card p {
    font-size: 18px;
    font-weight: bold;
    color: #555;
}

/* Colored Borders */
.stat1 {
    border-top: 5px solid #ff6b6b;
}

.stat2 {
    border-top: 5px solid #ffa502;
}

.stat3 {
    border-top: 5px solid #1dd1a1;
}

.stat4 {
    border-top: 5px solid #54a0ff;
}

/* Tablet view */
@media (max-width: 1024px) {
    .stat-card {
        flex: 1 1 calc(50% - 20px);
        /* 2 per row */
    }
}

/* Mobile view */
@media (max-width: 768px) {
    .stat-card {
        flex: 1 1 100%;
        /* Full width */
    }

    .counter {
        font-size: 30px;
    }
}


.review-section {
    max-width: 1200px;
    margin: auto;
    padding: 50px 20px;
    text-align: center;
}

/* Heading with gradient color and bold style */
.review-section h2 {
    font-size: 32px;
    font-weight: bold;
    background: linear-gradient(90deg, #ff6b6b, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.review-section p.subtitle {
    font-size: 16px;
    color: #444;
    margin-bottom: 40px;
}

.review-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.review-card {
    flex: 1 1 calc(25% - 20px);
    /* 4 per row on desktop */
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease-in-out;
    min-width: 250px;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.review-header img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    border: 3px solid #4facfe;
}

/* Student Name Styling */
.review-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #ff6b6b;
}

.review-header span {
    font-size: 14px;
    color: #777;
}

.review-text {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Tablet view */
@media (max-width: 1024px) {
    .review-card {
        flex: 1 1 calc(50% - 20px);
    }
}

/* Mobile view */
@media (max-width: 768px) {
    .review-card {
        flex: 1 1 100%;
    }
}


.countries-section h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    font-weight: bold;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.country-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.country-card img {
    width: 80%;
    height: 200px;
    object-fit: center;
    transition: transform 0.4s ease;
}

.country-card p {
    margin: 10px 0;
    font-weight: bold;
}

.country-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.country-card:hover img {
    transform: scale(1.1);
}

/* Tablet */
@media (max-width: 1024px) {
    .country-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Mobile */
@media (max-width: 1000px) {
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile */
@media (max-width: 50px) {
    .country-grid {
        grid-template-columns: 1fr;
    }
}


/* Ensure nothing overflows */
body,
html {
    overflow-x: hidden;
    max-width: 100%;
}

.form-container {
    position: relative;
    z-index: 0;
    background: white;
    padding: 35px;
    border-radius: 15px;
    max-width: 900px;
    width: 100%;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
    border-top: 6px solid #ff6600;
}



h2 {
    text-align: center;
    font-weight: bold;
    color: #187986;
    margin-bottom: 30px;
    font-size: 34px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

label {
    font-weight: bold;
    color: #222;
    margin-bottom: 1px;
    font-size: 14px;
}

input,
select {
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    background: #fafafa;
    transition: all 0.3s ease;
}

input:focus,
select:focus {
    border-color: #ff6600;
    background: #fff;
    box-shadow: 0 0 6px rgba(255, 102, 0, 0.4);
    outline: none;
}

.full-width {
    grid-column: span 1;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #444;
    margin-bottom: 18px;
}

.checkbox-label input {
    margin-top: 3px;
}

button {
    width: 100%;
    padding: 10px;
    background: #ff6600;
    color: white;
    font-size: 15px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}


/* Responsive */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 22px;
    }

    input,
    select,
    button {
        font-size: 14px;
    }
}

footer {
    background-color: #1a1a1a;
    color: white;
    padding: 30px 0 10px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-column {
    flex: 1 1 250px;
    margin-bottom: 20px;
}

.footer-column h3 {
    font-weight: bold;
    color: #ff9800;
    margin-bottom: 10px;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #ccc;
    text-decoration: none;
}

.footer-column a:hover {
    color: #ff9800;
}

.social-icons a {
    color: white;
    font-size: 22px;
    margin-right: 10px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #ff9800;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 10px;
    font-size: 13px;
    color: #ccc;
}

.footer-bottom a {
    color: #ff9800;
    text-decoration: none;
    margin: 0 5px;
}


.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Left Section */
.footer-left {
    flex: 1;
    min-width: 250px;
}

.footer-left h3 {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-links a {
    display: inline-block;
    color: #ff9800;
    text-decoration: none;
    margin: 3px 5px;
    font-size: 14px;
}

.footer-links a:hover {
    text-decoration: underline;
}

/* Right Section */
.footer-right {
    flex: 1;
    min-width: 280px;
    text-align: right;
}

.footer-right h3 {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 16px;
}

.footer-social {
    margin-bottom: 12px;
}

.footer-social a {
    color: white;
    font-size: 20px;
    margin-left: 8px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #ff9800;
}

.footer-contact {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    white-space: nowrap;
}

.footer-item i {
    margin-right: 8px;
    color: #ff9800;
    font-size: 16px;
}

/* Responsive View */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        text-align: center;
    }

    .footer-contact {
        justify-content: center;
    }
}

/* Bottom Line */
.footer-bottom {
    text-align: center;
    font-size: 12px;
    margin-top: 10px;
    color: #bbb;
}

.blog-page {
    padding: 20px;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.top-image img {
    width: 100%;
    aspect-ratio: 4/4;
    /* Keeps a perfect square */
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.blog-page h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    font-weight: bold;
    color: #004aad;
}

.blog-text {
    font-size: 0.9rem;
    /* Small text */
    font-weight: bold;
    /* Bold style */
    color: #333;
    text-align: left;
    margin-bottom: 15px;
}

/* Tablet View */
@media (max-width: 1024px) {
    .blog-page h2 {
        font-size: 1.6rem;
    }

    .blog-text {
        font-size: 0.85rem;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    .blog-page h2 {
        font-size: 1.4rem;
    }

    .blog-text {
        font-size: 0.8rem;
    }
}

/* Force footer full width */
footer,
.footer {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    overflow-x: hidden;
}

/* Prevent body horizontal scroll */
html,
body {
    overflow-x: hidden;
}

/* Fix floating button pushing layout */
.quick-enquire {
    right: 0;
    /* stick to right edge */
    left: auto;
    /* ensure it doesn’t push layout */
}