/********** Template CSS **********/
.img {
    margin-right: 130px !important;
    margin-bottom: 20px !important;
    background-color: red;
}

.product-img {
    width: 10px;
    height: 350px;
    object-fit: cover;
}

.beanut-flower {
    object-fit: cover;
}

:root {
    --primary: #0f766e;
    /* Professional Teal */
    --secondary: #f97316;
    /* Brand Orange */
    --light: #f8fafc;
    --dark: #0f172a;
    --accent: #f97316;
    --footer-bg: #f9f9f9;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.company-name-bold {
    color: #000000 !important;
    font-weight: 700;
}

.bg-gradient-primary {
    background: var(--gradient) !important;
    color: #fff !important;
}

.navbar-brand img {
    max-height: 60px;
    width: auto;
}

/* Responsive Font Sizes */
@media (max-width: 768px) {
    .display-1 {
        font-size: 3rem;
    }

    .display-2 {
        font-size: 2.5rem;
    }

    .display-3 {
        font-size: 2rem;
    }

    .display-4 {
        font-size: 1.75rem;
    }

    .display-5 {
        font-size: 1.5rem;
    }

    .display-6 {
        font-size: 1.25rem;
    }

    .carousel-caption h1 {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }

    .carousel-caption p {
        font-size: 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .carousel-caption .btn {
        padding: 12px 25px !important;
        font-size: 0.85rem !important;
        margin-bottom: 10px;
        min-width: 160px;
    }

    .carousel-caption .d-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .carousel-caption h1.display-4 {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    .carousel-caption p.text-primary {
        font-size: 0.95rem !important;
    }

    .section-title h2 {
        font-size: 1.75rem !important;
    }
}

.full-width-section {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}


.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

.fw-medium {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.fw-black {
    font-weight: 900;
}


p {
    font-size: 1.05rem !important;
    line-height: 1.6 !important;
    text-align: justify !important;
}

/*** Modern Mosaic Gallery ***/
.modern-img-card {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    cursor: pointer;
}

.modern-img-card:hover {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 30px 60px rgba(15, 118, 110, 0.25) !important;
    z-index: 20;
}

.img-overlay-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(15, 118, 110, 0.1), transparent);
    pointer-events: none;
}

.mosaic-gallery {
    padding: 20px 0;
}

/* Allow text-center to override global p justification */
.text-center p {
    text-align: center !important;
}

.section-divider {
    height: 3px;
    width: 60px;
    background: var(--primary);
    margin-bottom: 30px;
}

.section-divider.center {
    margin-left: auto;
    margin-right: auto;
}

/*** Enquiry Tab Animation ***/
@keyframes tabPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(249, 115, 22, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(249, 115, 22, 0);
    }
}

.blink-tab {
    animation: tabPulse 2s infinite;
}

/*** Spinner ***/
.text-primary {
    color: #f97316 !important;
}

a {
    color: var(--primary);
    text-decoration: none;
}

a:hover {
    color: var(--secondary);
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-secondary,
.btn-outline-secondary:hover {
    color: var(--dark);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.sticky-top {
    top: -150px;
    transition: .5s;
}

/* .navbar .navbar-brand {
    position: absolute;
    padding: 0;
    width: 170px;
    height: 135px;
    top: 0;
    left: 0;
} */

.navbar .navbar-nav .nav-link {
    margin-right: 25px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand {
        width: auto;
        height: auto;
        max-width: 150px;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 75px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(228, 230, 226, 0.7), rgba(123, 124, 121, 0.7));
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 3.5rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
}

#header-carousel .carousel-item {
    height: 650px;
    position: relative;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        height: 550px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-caption .container {
        padding: 0 20px;
    }
}

.page-header {
    background: linear-gradient(rgba(228, 230, 226, 0.7), rgba(248, 198, 123, 0.7)), url(../img/com-banner.png) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.section-title::before {
    position: absolute;
    content: "";
    width: 50%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary);
}

.section-title::after {
    position: absolute;
    content: "";
    width: 28px;
    height: 28px;
    bottom: -13px;
    left: calc(25% - 13px);
    background: var(--dark);
    border: 10px solid #FFFFFF;
    border-radius: 28px;
}

.section-title.text-center::before {
    left: 25%;
}

.section-title.text-center::after {
    left: calc(50% - 13px);
}


/*** Products ***/
.product {
    background: linear-gradient(rgba(136, 180, 78, .1), rgba(238, 173, 54, 0.1)), url(../img/product-bg.png) left bottom no-repeat;
    background-size: auto;
}

.product-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.product-carousel .owl-nav .owl-prev,
.product-carousel .owl-nav .owl-next {
    margin: 0 10px;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 55px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .15);
    font-size: 25px;
    transition: .5s;
}

.product-carousel .owl-nav .owl-prev:hover,
.product-carousel .owl-nav .owl-next:hover {
    background: #FFFFFF;
    color: var(--primary);
}


/*** About ***/
.video {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/video-bg.jpg) center center no-repeat;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 65px;
    height: 75px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 28px 30px 30px 38px;
    background: #FFFFFF;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 120px;
    height: 120px;
    background: #FFFFFF;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: 13px;
    border-left: 40px solid var(--primary);
    border-top: 28px solid transparent;
    border-bottom: 28px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #FFFFFF;
    background: #000000;
    opacity: 1;
}


/*** Store ***/
.store-item .store-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(138, 180, 78, .3);
    opacity: 0;
    transition: .5s;
}

.store-item:hover .store-overlay {
    opacity: 1;
}


/*** Contact ***/
.contact .btn-square {
    width: 100px;
    height: 100px;
    border: 20px solid var(--light);
    background: var(--primary);
    border-radius: 50px;
}


/*** Testimonial ***/
.testimonial {
    background: linear-gradient(rgba(136, 180, 78, .85), rgba(136, 180, 78, .85)), url(../img/testimonial-bg.jpg) center center no-repeat;
    background-size: cover;
}

.testimonial-item {
    margin: 0 auto;
    max-width: 600px;
    text-align: center;
    background: #FFFFFF;
    border: 30px solid var(--primary);
}

.testimonial-item img {
    width: 60px !important;
    height: 60px !important;
    border-radius: 60px;
}

.testimonial-carousel .owl-dots {
    margin-top: 35px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 15px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--dark);
}


/*** Footer ***/
.footer {
    background: #0f766e !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

.footer h2 {
    font-size: 1.8rem !important;
}

@media (max-width: 768px) {
    .footer, 
    .footer .container, 
    .footer .row,
    .footer .row > div,
    .footer h2,
    .footer h4, 
    .footer p, 
    .footer span, 
    .footer i,
    .footer form,
    .footer .d-flex,
    .footer .navbar-brand {
        text-align: left !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        display: block !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        float: none !important;
    }
    
    .footer .d-flex {
        display: flex !important;
        flex-direction: row !important;
        width: 100% !important;
    }

    .footer .d-flex i {
        flex-shrink: 0 !important;
        margin-right: 10px !important;
        display: inline-block !important;
    }

    .footer .d-flex span,
    .footer .d-flex p {
        display: inline-block !important;
        text-align: left !important;
    }
}

.footer .text-primary {
    color: #f97316 !important;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #f97316;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #fff;
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: #fff !important;
    background: #0b5e58 !important;
    /* Slightly darker shift for the very bottom */
    padding: 2.5rem 0;
}

.copyright a {
    color: #f97316 !important;
}

.copyright a:hover {
    color: #FFFFFF !important;
}

/*  */
.fab-whatsapp {
    position: fixed;
    bottom: 100px;
    right: 35px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-whatsapp img {
    width: 45px;
    height: 45px;
}

.fab-whatsapp:hover {
    background-color: #2dab9c;

    transform: scale(1.28);
}

/*  */
.fab-call {
    position: fixed;
    bottom: 170px;
    right: 35px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fab-call img {
    width: 45px;
    height: 45px;
}

.fab-call:hover {
    background-color: #2dab9c;

    transform: scale(1.28);


}

/*  */
.floating-box {
    position: fixed;
    right: 25px;
    bottom: 120px;
    width: 70px;
    padding: 12px 0;
    /* background: rgba(255, 255, 255, 0.35); */
    /* backdrop-filter: blur(8px); */
    border-radius: 40px;
    /* box-shadow: 0 6px 15px rgba(0,0,0,0.2); */
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    z-index: 9999;
}

/* Buttons */
.fab-btn {
    width: 50px;
    height: 50px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.fab-btn img {
    width: 48px;
    height: 48px;
}

/* Hover */
.fab-btn:hover {
    transform: scale(1.15);
    background: #1ebe5b;
}


.fab-btn.call:hover {
    background: #094fb4;
}

/* WhatsApp Button */
.fab-btn.whatsapp {
    animation: pulse 1.8s infinite;
}

/* Call Button */
.fab-btn.call {
    animation: pulseCall 1.8s infinite;
}

/* WhatsApp Icon Animation */
.fab-btn.whatsapp img {
    animation: iconBounce 1.8s infinite;
}

/* Call Icon Animation */
.fab-btn.call img {
    animation: iconShake 1.8s infinite;
}

/* ===================== */
/* Pulse Effect (WhatsApp) */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Pulse Effect (Call - Blue) */
@keyframes pulseCall {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(9, 79, 180, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 12px rgba(9, 79, 180, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(9, 79, 180, 0);
    }
}

/* WhatsApp Icon Bounce */
@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Call Icon Shake */
@keyframes iconShake {
    0% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(10deg);
    }

    50% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(6deg);
    }

    100% {
        transform: rotate(0);
    }
}

/* =============================================
   GLOBAL MOBILE FIXES - Prevent horizontal overflow
   ============================================= */
html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* Topbar: hide on mobile to remove extra top space/line */
@media (max-width: 991px) {
    .container-fluid.bg-dark.text-white.py-2 {
        display: none !important;
    }
}

/* Navbar: Ensure logo and toggle are on same row */
@media (max-width: 991px) {
    .navbar {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .navbar-brand {
        margin-right: 0 !important;
        padding: 0 !important;
    }

    .navbar-toggler {
        margin-left: auto !important;
    }
}

/* =============================================
   HOME PAGE - About Card (Welcome Section)
   Fix: flex container overflows on mobile
   ============================================= */
@media (max-width: 991px) {
    .about-card-wrapper {
        flex-direction: column !important;
        min-height: auto !important;
    }

    .about-card-col {
        flex: 0 0 100% !important;
        width: 100% !important;
        padding: 25px !important;
    }
}

/* =============================================
   HOME PAGE - Stats Section
   ============================================= */
@media (max-width: 767px) {
    .stats-full-width {
        margin-top: -20px;
        border-radius: 12px;
    }

    .stats-row {
        flex-direction: column;
    }

    .stats-left,
    .stats-right {
        flex: 1 1 100%;
        border-right: none !important;
    }

    .stats-grid-row {
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 0 0 50%;
        text-align: center;
        padding: 15px;
    }
}

/* =============================================
   HOME PAGE - MODERN FACILITIES
   ============================================= */
@media (max-width: 576px) {
    .col-6 .modern-img-card img[style*="aspect-ratio"] {
        aspect-ratio: 4/3 !important;
    }

    .col-12 .modern-img-card img[style*="aspect-ratio: 21/9"] {
        aspect-ratio: 16/9 !important;
    }
}

/* =============================================
   GLOBAL - Container & Section padding on mobile
   ============================================= */
@media (max-width: 768px) {

    .container,
    .container-fluid {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .container-xxl .container.px-md-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    /* Prevent wide inline-padded sections from overflowing */
    [style*="padding: 50px"] {
        padding: 25px !important;
    }
}

/* =============================================
   SERVICES PAGE - alternating-content padding
   ============================================= */
@media (max-width: 768px) {
    .alternating-content {
        padding: 0 15px !important;
    }

    .alternating-content h3 {
        font-size: 1.6rem !important;
    }

    .alternating-img img {
        height: 250px !important;
    }

    .feature-list {
        grid-template-columns: 1fr !important;
    }
}

/* =============================================
   CONTACT PAGE - Tab buttons
   ============================================= */
@media (max-width: 576px) {
    .nav-pills .nav-link {
        font-size: 0.8rem;
        padding: 10px 12px;
    }
}

/* =============================================
   FOOTER - Fix column stacking and spacing
   ============================================= */
@media (max-width: 768px) {
    .footer .row.g-5>div {
        padding-left: 15px !important;
    }

    .footer .col-lg-4.ps-lg-5 {
        padding-left: 15px !important;
    }
}

/* =============================================
   NAVBAR - Prevent logo overflow
   ============================================= */
@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 45px !important;
    }

    .navbar {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

/* =============================================
   PAGE HEADERS (inner pages)
   ============================================= */
@media (max-width: 768px) {
    .page-header {
        padding: 3rem 0 2rem !important;
    }

    .page-header h1 {
        font-size: 1.8rem !important;
    }
}

/* =============================================
   USER SPECIFIC MOBILE FIXES
   ============================================= */
@media (max-width: 768px) {
    /* Navbar menu fixed to show (sticky) */
    .sticky-top {
        position: fixed !important;
        top: 0 !important;
        width: 100%;
        z-index: 1030;
    }

    /* Compensate for fixed navbar */
    body {
        padding-top: 70px !important;
    }

    /* Banner section: remove extra whitespace on sides */

    .container-fluid.px-0, 
    #header-carousel {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Hide navigation buttons <> in mobile view */
    .carousel-control-prev,
    .carousel-control-next {
        display: none !important;
    }

    /* Adjust banner height and image fitting for mobile to avoid bottom whitespace */
    #header-carousel .carousel-item {
        height: 450px !important; /* Slightly shorter for better fit on small screens */
    }
    
    #header-carousel .carousel-item img {
        height: 100% !important;
        object-fit: cover !important;
    }

    /* Reduce vertical whitespace between sections on mobile */
    .py-5 {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
    
    .container-xxl.py-5 {
        padding-top: 2rem !important;
    }
}

/* Footer Mobile Responsiveness */
@media (max-width: 768px) {
    .footer {
        text-align: left;
        padding-top: 3rem !important;
        padding-bottom: 2rem !important;
    }

    .footer .container {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
    
    .footer .navbar-brand {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 25px;
    }

    .footer .navbar-brand h2 {
        font-size: 1.5rem !important;
    }

    .footer p, 
    .footer span, 
    .footer a,
    .footer .btn-link {
        font-size: 0.85rem !important;
        text-align: left !important;
    }

    .footer .d-flex {
        justify-content: flex-start !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .footer form {
        text-align: left !important;
        width: 100% !important;
    }

    .footer p:has(> i.fa),
    .footer .d-flex.small {
        display: flex !important;
        align-items: flex-start !important;
        gap: 10px !important;
    }

    .footer p:has(> i.fa) i,
    .footer .d-flex.small i {
        display: inline-flex !important;
        flex: 0 0 16px !important;
        justify-content: center !important;
        margin-right: 0 !important;
        margin-top: 0.2rem !important;
    }

    .footer p:has(> i.fa) {
        margin-bottom: 0.75rem !important;
    }

    .footer .d-flex.small span {
        flex: 1 1 auto !important;
    }

    .floating-box {
        right: 12px !important;
        bottom: 18px !important;
        width: 46px !important;
        padding: 0 !important;
        gap: 10px !important;
    }

    .fab-btn {
        width: 42px !important;
        height: 42px !important;
    }

    .fab-btn img {
        width: 40px !important;
        height: 40px !important;
    }

    .footer h4 {
        font-size: 1.1rem !important;
        margin-top: 20px;
    }

    .footer .me-3 {
        margin-right: 10px !important;
    }

    .copyright p {
        font-size: 0.8rem !important;
    }
}
