/********** Template CSS **********/
:root {
    --primary: #32C36C;
    --light: #F6F7F8;
    --dark: #1A2A36;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#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 {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.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 BASE
════════════════════════════════ */
.navbar {
    position     : fixed;
    top          : 45px;
    left         : 50%;
    transform    : translateX(-50%);
    width        : calc(100% - 40px);
    z-index      : 9999;
    background   : #fff;
    border-radius: 75px;
    box-shadow   : 0 10px 30px rgba(0,0,0,0.12);
    transition: all 0.4s linear(0 0%, 0 1.8%, 0.01 3.6%, 0.03 6.35%, 0.07 9.1%, 0.13 11.4%, 0.19 13.4%, 0.27 15%, 0.34 16.1%, 0.54 18.35%, 0.66 20.6%, 0.72 22.4%, 0.77 24.6%, 0.81 27.3%, 0.85 30.4%, 0.88 35.1%, 0.92 40.6%, 0.94 47.2%, 0.96 55%, 0.98 64%, 0.99 74.4%, 1 86.4%, 1 100%);
}

/* Logo */
.navbar-logo {
    height       : 90px;
    width        : auto;
    object-fit   : contain;
    border-radius: 75px 0 0 75px;
}
.navbar .navbar-brand { 
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;

 }
.navbar a.btn         { height: 85px; margin: 2px; }

/* Nav links */
.navbar .navbar-nav .nav-link {
    margin-right  : 30px;
    padding       : 25px 0;
    color         : var(--dark);
    font-size     : 15px;
    font-weight   : 500;
    text-transform: uppercase;
    outline       : none;
    transition    : color 0.2s;
}
.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;
}
.get-quote-btn { height: 75px; border-radius: 75px; }

/* Desktop dropdown */
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display    : block;
        border     : none;
        margin-top : 0;
        top        : 150%;
        opacity    : 0;
        visibility : hidden;
        transition : .35s;
        border-radius: 18px;
        box-shadow : 0 12px 40px rgba(0,0,0,0.12);
        padding    : 10px 6px;
        min-width  : 230px;
    }
    .navbar .nav-item:hover .dropdown-menu {
        top       : 100%;
        visibility: visible;
        opacity   : 1;
    }
    .navbar .navbar-brand { 
    height: 85px;
    margin: 2px;

 }
}
.services-dropdown .dropdown-item {
    border-radius: 10px;
    padding      : 9px 16px;
    font-size    : 13.5px;
    font-weight  : 500;
    transition   : background 0.2s, color 0.2s;
    margin-bottom: 2px;
}
.services-dropdown .dropdown-item:hover { background: rgba(50,195,108,0.1); color: var(--primary); }

/* ════════════════════════════════
   SCROLL HAMBURGER BUTTON
════════════════════════════════ */
.scroll-ham {
    display        : none;   /* JS shows it on scroll */
    align-items    : center;
    justify-content: center;
    flex-direction : column;
    gap            : 5px;
    width          : 46px;
    height         : 46px;
    border-radius  : 50%;
    border         : 2px solid rgba(50,195,108,0.5);
    background     : rgba(50,195,108,0.08);
    cursor         : pointer;
    margin-left    : auto;
    flex-shrink    : 0;
    transition     : background 0.2s, transform 0.2s;
}
.scroll-ham span {
    display      : block;
    width        : 18px;
    height       : 2.5px;
    background   : var(--primary);
    border-radius: 2px;
    transition   : 0.3s;
}
.scroll-ham:hover { background: rgba(50,195,108,0.2); transform: scale(1.08); }

/* ════════════════════════════════
   SCROLLED STATE — both desktop + mobile
════════════════════════════════ */
.navbar.scrolled #navbarCollapse  { display: none !important; }
.navbar.scrolled #normalToggler   { display: none !important; }
.navbar.scrolled .navbar-brand    { display: none !important; }
.navbar.scrolled .scroll-ham      { display: flex !important; }

/* Navbar shrinks to just the hamburger pill */
.navbar.scrolled {
    width        : auto !important;
    min-width    : 0 !important;
    left         : auto !important;
    right        : 20px !important;
    transform    : none !important;
    border-radius: 50px !important;
    padding      : 6px !important;
    box-shadow   : 0 6px 24px rgba(0,0,0,0.18) !important;
    top          : 16px !important;
}

/* ════════════════════════════════
   SCROLL PANEL (right slide-in)
════════════════════════════════ */
.sp {
    position     : fixed;
    top          : 0;
    right        : -400px;
    width        : 360px;
    max-width    : 95vw;
    height       : 100vh;
    background   : #fff;
    z-index      : 99999;
    box-shadow   : -12px 0 60px rgba(0,0,0,0.15);
    border-radius: 28px 0 0 28px;
    overflow-y   : auto;
    padding      : 28px 22px 40px;
    transition   : right 0.38s cubic-bezier(.4,0,.2,1);
}
.sp.open { right: 0; }

.sp-overlay {
    position      : fixed;
    inset         : 0;
    background    : rgba(0,0,0,0.4);
    backdrop-filter: blur(3px);
    z-index       : 99998;
    opacity       : 0;
    pointer-events: none;
    transition    : opacity 0.3s;
}
.sp-overlay.open { opacity: 1; pointer-events: all; }

/* Panel head — logo + close */
.sp-head {
    display        : flex;
    align-items    : center;
    justify-content: space-between;
    margin-bottom  : 26px;
    padding-bottom : 18px;
    border-bottom  : 1px solid #f0f0f0;
}
.sp-logo-link { text-decoration: none; }
.sp-logo-img  { height: 100px; width: auto; object-fit: contain; }
.sp-x {
    width          : 36px;
    height         : 36px;
    border-radius  : 50%;
    border         : none;
    background     : #f3f4f6;
    font-size      : 20px;
    color          : #666;
    cursor         : pointer;
    display        : flex;
    align-items    : center;
    justify-content: center;
    transition     : background 0.2s, color 0.2s;
}
.sp-x:hover { background: #fee2e2; color: #dc2626; }

/* Section labels */
.sp-label {
    font-size     : 10.5px;
    font-weight   : 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color         : #aaa;
    margin-bottom : 12px;
    margin-top    : 0;
}

/* ─ Service highlighted grid ─ */
.sp-grid {
    display              : grid;
    grid-template-columns: 1fr 1fr;
    gap                  : 10px;
    margin-bottom        : 12px;
}
.sp-card {
    display        : flex;
    flex-direction : column;
    align-items    : center;
    gap            : 10px;
    padding        : 18px 8px;
    border-radius  : 16px;
    background     : linear-gradient(135deg, rgba(50,195,108,0.07), rgba(50,195,108,0.02));
    border         : 1.5px solid rgba(50,195,108,0.18);
    text-decoration: none;
    transition     : all 0.25s;
}
.sp-card:hover {
    background : linear-gradient(135deg, rgba(50,195,108,0.18), rgba(50,195,108,0.07));
    border-color: var(--primary);
    transform  : translateY(-2px);
    box-shadow : 0 8px 24px rgba(50,195,108,0.2);
}
.sp-icon {
    width          : 46px;
    height         : 46px;
    border-radius  : 14px;
    background     : linear-gradient(135deg, var(--primary), #27a85a);
    color          : #fff;
    font-size      : 18px;
    display        : flex;
    align-items    : center;
    justify-content: center;
    box-shadow     : 0 4px 14px rgba(50,195,108,0.35);
    flex-shrink    : 0;
}
.sp-card span {
    font-size  : 11.5px;
    font-weight: 700;
    color      : var(--dark);
    text-align : center;
    line-height: 1.3;
}
.sp-card:hover span { color: var(--primary); }

/* All services link */
.sp-all {
    display        : block;
    text-align     : center;
    font-size      : 12.5px;
    font-weight    : 700;
    color          : var(--primary);
    text-decoration: none;
    padding        : 9px;
    border-radius  : 10px;
    border         : 1.5px dashed rgba(50,195,108,0.4);
    margin-bottom  : 22px;
    transition     : background 0.2s;
}
.sp-all:hover { background: rgba(50,195,108,0.06); color: var(--primary); }

/* Divider */
.sp-line { height: 1px; background: #f0f0f0; margin-bottom: 20px; }

/* Nav links in panel */
.sp-links { display: flex; flex-direction: column; gap: 4px; margin-bottom: 22px; }
.sp-links a {
    display        : block;
    padding        : 11px 14px;
    border-radius  : 12px;
    font-size      : 14px;
    font-weight    : 600;
    color          : var(--dark);
    text-decoration: none;
    transition     : background 0.2s, color 0.2s;
}
.sp-links a:hover { background: rgba(50,195,108,0.08); color: var(--primary); }

/* Quote button */
.sp-quote {
    display        : block;
    text-align     : center;
    background     : linear-gradient(135deg, var(--primary), #27a85a);
    color          : #fff;
    font-size      : 14px;
    font-weight    : 700;
    padding        : 14px;
    border-radius  : 25px;
    text-decoration: none;
    box-shadow     : 0 6px 20px rgba(50,195,108,0.35);
    transition     : opacity 0.2s, transform 0.2s;
}
.sp-quote:hover { color:#fff; opacity: 0.92; transform: translateY(-1px); }

/* ════════════════════════════════
   MOBILE (max 991px)
   — original glass navbar,
     scroll ham same behaviour
════════════════════════════════ */
@media (max-width: 991.98px) {
    .navbar {
        top          : 10px;
        width        : calc(100% - 20px);
        border-radius: 20px;
        background   : rgba(255,255,255,0.15) !important;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow   : 0 8px 25px rgba(0,0,0,0.15);
        border       : 1px solid rgba(255,255,255,0.25);
    }
    .navbar .navbar-nav .nav-link { margin-right: 0; padding: 10px 0; }
    .navbar .navbar-nav { border-top: 1px solid #eee; }
    .navbar-collapse {
        background             : rgba(255,255,255,0.2);
        backdrop-filter        : blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-radius          : 20px;
        padding                : 15px;
        margin-top             : 10px;
    }
    .dropdown-menu {
        background             : rgba(255,255,255,0.25) !important;
        backdrop-filter        : blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-radius          : 15px;
        border                 : 1px solid rgba(255,255,255,0.3);
    }
    .navbar-logo { border-radius: 10px !important; height: 56px; }
    /* mobile scrolled — same pill as desktop */
    .navbar.scrolled {
        width        : auto !important;
        left         : auto !important;
        right        : 10px !important;
        transform    : none !important;
        border-radius: 50px !important;
        padding      : 6px !important;
        top          : 16px !important;
        border       : none !important;
    }
    .sp { width: 300px; }
}

@media (max-width: 480px) {
    .sp { width: 88vw; }
}

/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .1);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 735px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: #FFFFFF;
    box-shadow: 0 0 30px rgba(255, 255, 255, .9);
    border-radius: 45px;
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    border-radius: 45px;
    transition: .5s;
}
/* Carousel image dark overlay */
.owl-carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(0, 0, 0, 0.75),
        rgba(0, 0, 0, 0.35),
        rgba(0, 0, 0, 0.1)
    );
    z-index: 1;
}

/* Ensure content stays above overlay */
.owl-carousel-inner {
    z-index: 2;
}

/* Hero heading shadow */
.owl-carousel-inner h1 {
    text-shadow: 
        0 4px 12px rgba(0, 0, 0, 0.11),
        0 2px 4px rgba(0, 0, 0, 0.5);
}


/* Hero paragraph shadow */
.owl-carousel-inner p {
    text-shadow: 
        0 2px 6px rgba(0, 0, 0, 0.7);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1)), url(../img/background_header/4.png) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/
@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    padding: 28px 0;
}

.marquee-content {
    display: flex;
    gap: 60px;
    width: max-content;
    will-change: transform;
}

.logo-item {
    flex-shrink: 0;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 14px;
}

.logo-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.85;
    transition: 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .logo-item {
        width: 120px;
        height: 60px;
    }
    .marquee-content {
        gap: 36px;
    }
}


/*** Service Section – Enhanced ***/
.service-item {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border-radius: 16px;
    overflow: hidden;

    /* Base shadow */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);

    transition: all 0.4s ease;
}

/* Hover lift + glow */
.service-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 18px 45px rgba(0, 0, 0, 0.25),
        0 0 25px rgba(13, 110, 253, 0.25);
}

/* Border glow (subtle) */
.service-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(13, 110, 253, 0.35);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-item:hover::after {
    opacity: 1;
}

/* Image hover zoom */
.service-item img {
    transition: transform 0.6s ease;
}

.service-item:hover img {
    transform: scale(1.08);
}

/* Keep content height equal */
.service-item .position-relative {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-item p {
    flex-grow: 1;
}

/*** Service Icon ***/
.service-icon {
    position: relative;
    margin: -50px auto 25px;
    width: 100px;
    height: 100px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary);
    background: rgba(255, 255, 255, 0.9);
    border-radius: 100px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.18);

    transition: all 0.4s ease;
}

/* Icon hover effect */
.service-item:hover .service-icon {
    color: #FFFFFF;
    background: var(--primary);
    transform: scale(1.12);
    box-shadow: 0 0 22px rgba(13, 110, 253, 0.6);
}



/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-img {
    position: relative;
}

.portfolio-img::before,
.portfolio-img::after {
    position: absolute;
    content: "";
    width: 0;
    height: 100%;
    top: 0;
    background: var(--dark);
    transition: .5s;
}

.portfolio-img::before {
    left: 50%;
}

.portfolio-img::after {
    right: 50%;
}

.portfolio-item:hover .portfolio-img::before {
    width: 51%;
    left: 0;
}

.portfolio-item:hover .portfolio-img::after {
    width: 51%;
    right: 0;
}

.portfolio-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    z-index: 1;
    transition: .5s;
}

.portfolio-item:hover .portfolio-btn {
    opacity: 1;
    transition-delay: .3s;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    border-radius: 8px 60px 0 0;
}

.team-item .team-social {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: #FFFFFF;
    transition: .5s;
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.testimonial-carousel .testimonial-img img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .testimonial-img .btn-square {
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-carousel .owl-item .testimonial-text {
    margin-bottom: 30px;
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
.footer .btn.btn-social {
    margin-right: 5px;
    color: #9B9B9B;
    border: 1px solid #9B9B9B;
    border-radius: 38px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
    border-color: var(--light);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #9B9B9B;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: #FFFFFF;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* footer logo */
/* Footer Brand / Logo Block */
.footer .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

/* Footer Logo Rounded Corners */
.footer .footer-brand img {
    max-width: 160px;
    width: 100%;
    height: auto;

    object-fit: contain;

    border-radius: 30px;   /* 👈 corners round */
    overflow: hidden;

    display: block;
}
.footer-logo{
    max-width: 180px;
    width: 100%;
    height: auto;
    border-radius: 6px;
}

/* Footer Slogan / Text */
.footer .footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Mobile adjustment */
@media (max-width: 576px) {
    .footer .footer-brand img {
        max-width: 140px;
    }

    .footer .footer-brand p {
        font-size: 13px;
    }
}
