:root {
    --bs-primary: #D4AF37;
    /* Premium Gold */
    --bs-dark: #1A1C1E;
    /* Gunmetal Grey */
    --bs-body-bg: #F8F9FA;
    --bs-font-sans-serif: 'Inter', sans-serif;
    --industrial-steel: #71767C;
    --luxury-overlay: rgba(26, 28, 30, 0.85);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --premium-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: var(--bs-font-sans-serif);
    background-color: var(--bs-body-bg);
    overflow-x: hidden;
}

.nav-sticky {
    background: rgba(26, 28, 30, 0.95) !important;
    backdrop-filter: blur(15px);
    border-bottom: 2px solid var(--bs-primary);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    height: 70px !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999 !important;
    transition: all 0.3s ease;
}

.nav-sticky .navbar-brand-2 h2 {
    font-size: 1.5rem;
}

.hover-up {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hover-up:hover {
    transform: translateY(-10px);
}

.btn-hover-shine {
    position: relative;
    overflow: hidden;
}

.btn-hover-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.btn-hover-shine:hover::after {
    left: 120%;
}

.glass-morphism {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.industrial-card {
    border: none;
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--premium-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.industrial-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

.metal-gradient-text {
    background: linear-gradient(45deg, #1A1C1E, #D4AF37, #71767C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gold-glow {
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.premium-badge {
    top: 20px;
    left: 20px;
}

/*** Spinner Start ***/
#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;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-primary);
}

/*** Navbar Start ***/
.header-top .topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.header-top .topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 12px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

.header-top {
    min-height: 130px;
    position: relative;
    background: var(--bs-dark);
}

.header-top .container,
.header-top .container-fluid {
    position: relative;
    z-index: 10;
}

.nav-bar {
    position: relative;
    z-index: 10;
}

@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: var(--bs-dark);
        z-index: -1;
    }

    .navbar-brand-2 {
        display: none;
    }
}

@media (max-width: 991px) {
    .header-top {
        max-height: 80px;
        background: var(--bs-dark);
    }

    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }

    .navbar .navbar-collapse {
        margin-top: -20px;
    }

}

.nav-bar .navbar {
    height: 100%;
    background: var(--bs-white);
    position: relative;
    z-index: 9;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 20px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: var(--bs-primary);
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: column;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .header-top .navbar-brand {
        position: relative;
        padding: 40px 50px 40px 0;
        z-index: 99;
    }
}

.navbar-brand::after {
    content: "";
    position: absolute;
    width: 2px;
    height: 100%;
    top: 0;
    right: 0;
    background: var(--bs-primary);
}

/*** Navbar End ***/


/*** Carousel Hero Header Start ***/
.hero-section {
    background-image: url(../img/1herobg.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg-half-1 {
    background-image: url(../img/2herobg.webp);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-bg-half-2 {
    background-image: url(../img/1herobg.webp);
    clip-path: polygon(37% 0%, 100% 0%, 100% 100%, 0% 100%);
    filter: grayscale(10%);
    transform: scale(100% - 50%);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    width: 58%;
    height: 100%;
    right: 0;
    top: 0;
}

.hero-shape-1 {
    background-color: var(--bs-primary);
    width: 150px;
    height: 50%;
    position: absolute;
    left: 54%;
    top: 0;
    transform: translateY(-50%) skew(-26deg, 0deg);
    position: relative;
}

.hero-shape-1:before {
    background-color: var(--bs-dark);
    content: "";
    width: 50%;
    height: 80%;
    position: absolute;
    right: 0;
    top: 0;
}

.hero-shape-2 {
    background-color: var(--bs-dark);
    width: 150px;
    height: 50%;
    position: absolute;
    right: -43%;
    bottom: 0;
    transform: translateY(50%) skew(-25deg, 0deg);
    position: relative;
    z-index: 1;
}

.hero-shape-2::after {
    background-color: var(--bs-primary);
    content: "";
    width: 75px;
    height: 80%;
    position: absolute;
    right: 0;
    bottom: 0;
}

/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 850px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/grid-texture.png'), linear-gradient(to right, rgba(0, 0, 0, 0.8), transparent);
    pointer-events: none;
    z-index: 1;
}

.header-carousel .owl-nav {
    display: none !important;
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    z-index: 9;
}

@media (max-width: 991px) {
    .header-carousel .header-carousel-item .carousel-caption {
        padding-top: 45px;
    }

    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height: 700px;
    }
}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/machine1.webp);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0 100px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}

/*** Single Page Hero Header End ***/

/*** Journey Timeline (Vision) ***/
.journey-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: var(--bs-primary);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-dot {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bs-dark);
    border: 3px solid var(--bs-primary);
    position: relative;
    z-index: 2;
}

.shadow-glow {
    box-shadow: 0 0 15px var(--bs-primary);
}

@media (max-width: 991px) {
    .journey-timeline::before {
        left: 30px;
    }

    .timeline-dot {
        margin-left: 5px !important;
    }
}

/*** About Styling (Premium) ***/
.about-img-group {
    padding-right: 50px;
    padding-bottom: 50px;
}

.experience-card {
    position: absolute;
    bottom: 80px;
    left: 40px;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 20px;
    z-index: 5;
    background: #fff !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 5px solid var(--bs-primary);
}

.btn-primary-soft {
    background: rgba(212, 175, 55, 0.1);
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-soft:hover {
    background: var(--bs-primary);
}

.btn-primary-soft:hover i {
    color: #fff !important;
}

.service-img-wrapper img {
    transition: transform 0.6s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 28, 30, 0.7);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 2;
}

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

/*** Service Start ***/
.service .nav .nav-item {
    width: 75%;
    border: 1px solid var(--bs-primary);
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
}


.owl-stage-outer {
    margin-right: -1px;
}

.service .nav-item a.active {
    background: var(--bs-primary);
}

.service .nav-item a span {
    color: var(--bs-dark);
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

.service-carousel {
    position: relative;
    padding-bottom: 60px;
}

.service-carousel .owl-nav {
    display: flex !important;
    justify-content: center;
    gap: 15px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    position: relative;
    padding: 10px 25px;
    border: 1px solid var(--bs-primary);
    color: var(--bs-white);
    background: var(--bs-primary);
    transition: 0.5s;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
    border-color: var(--bs-dark);
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

@media (max-width: 991px) {
    .service .nav {
        display: flex;
        justify-content: center;
    }
}

/*** Service End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(246, 138, 10, .2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.team-img-wrapper:hover img {
    transform: scale(1.1);
}

.team-social-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(212, 175, 55, 0.9);
    padding: 15px 0;
    transition: all 0.4s ease;
    z-index: 2;
}

.team-item:hover .team-social-overlay {
    bottom: 0;
}

/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}

.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
}

.testimonial .testimonial-item .customer-text {
    border: 1px solid var(--bs-primary);
    border-top: none;
}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--bs-dark);
    background: var(--bs-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px;
    height: 100px;
    border: 2px solid var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

@media (max-width: 991px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: var(--bs-primary);
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-primary);
    transition: 0.5s;
}

/*** Testimonial End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--bs-dark);
}

/*** copyright end ***/

/*** Full Screen Utility ***/
.section-fullscreen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

/* Ensure container inside gets centered if needed */
.section-fullscreen>.container {
    width: 100%;
}

/*** Team Page Enhancement ***/
.team-item {
    transition: 0.5s;
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.team-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-10px);
}

.team-img {
    position: relative;
    aspect-ratio: 1/1;
}

.team-img img {
    transition: 0.8s;
    object-fit: cover;
    height: 100%;
}

.team-item:hover .team-img img {
    transform: scale(1.05);
}

.team-content h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-content p {
    letter-spacing: 1px;
}

/*** Modern Team Section Styles ***/
.modern-team-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

.modern-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.team-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.modern-team-card:hover .team-img-wrapper img {
    transform: scale(1.1);
}

.team-social-overlay {
    position: absolute;
    top: 50%;
    right: -60px;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 30px 0 0 30px;
    transition: all 0.5s ease;
    opacity: 0;
}

.modern-team-card:hover .team-social-overlay {
    right: 0;
    opacity: 1;
}

.team-info-box {
    padding: 25px 20px;
    text-align: center;
    background: #fff;
}

.team-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.modern-team-card:hover .team-name {
    color: var(--bs-primary);
}

.team-designation-badge {
    display: inline-block;
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 5px;
}

.team-designation-badge::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--bs-primary);
    transition: width 0.3s ease;
}

.modern-team-card:hover .team-designation-badge::after {
    width: 60px;
}

.team-bio {
    line-height: 1.6;
    border-top: 1px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 15px;
    font-style: italic;
}




/*** Testimonial Section Refinement ***/
.testimonial-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 24px !important;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-inner img {
    border: 3px solid var(--bs-primary);
}

.testimonial-quote {
    color: var(--bs-primary);
    opacity: 0.3;
}

/*** Why Choose Us Styling ***/
.why-choose-img {
    padding-right: 30px;
    padding-bottom: 30px;
}

.why-choose-badge {
    bottom: -10px;
    right: -10px;
    width: 200px;
    text-align: center;
    border-radius: 15px;
    background: #fff !important;
    border: 3px solid var(--bs-primary);
    z-index: 5;
}

@media (max-width: 991px) {
    .why-choose-img {
        padding-right: 0;
        padding-bottom: 40px;
    }

    .why-choose-badge {
        right: 20px;
        bottom: 20px;
    }
}

/* ==========================================================================
   MOBILE SPECIFIC OVERRIDES (Mobile-only fixes while protecting Desktop)
   ========================================================================== */

@media (max-width: 767px) {

    /* Prevent Horizontal Scroll */
    body,
    html {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    /* Spacing Refinement */
    .container,
    .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .py-5 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    /* Typography Adjustments */
    .display-1 {
        font-size: 3.2rem !important;
    }

    .display-2 {
        font-size: 2.8rem !important;
    }

    .display-3 {
        font-size: 2.4rem !important;
    }

    .display-4 {
        font-size: 2rem !important;
    }

    h1 {
        font-size: 2.2rem !important;
    }

    h2 {
        font-size: 1.8rem !important;
    }

    /* Hero Section Fixes */
    .header-carousel .header-carousel-item {
        height: auto !important;
        min-height: 100vh !important;
        padding: 120px 0 !important;
    }

    .carousel-caption {
        padding: 0 !important;
    }

    .header-carousel-item h1 {
        line-height: 1.1 !important;
        margin-bottom: 25px !important;
    }

    /* Targeted Button Stacking */
    .header-carousel-item .btn,
    .about .btn-primary.rounded-pill {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
    }

    .btn.me-3,
    .btn.me-4 {
        margin-right: 0 !important;
    }

    /* About Section Fixes */
    .about-img-group img {
        height: 350px !important;
        margin-bottom: 0 !important;
        border-radius: 15px !important;
    }

    .about-img-group {
        padding: 0 !important;
        margin-bottom: 60px !important;
        /* Space for the floating card */
    }

    .experience-card {
        position: absolute !important;
        bottom: -30px !important;
        right: 10px !important;
        left: auto !important;
        top: auto !important;
        margin: 0 !important;
        width: 160px !important;
        height: 160px !important;
        padding: 15px !important;
        transform: none !important;
        border-radius: 15px !important;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
    }

    .experience-card h1 {
        font-size: 2rem !important;
    }

    .experience-card p {
        font-size: 0.7rem !important;
        line-height: 1.2 !important;
    }
}


/* ==========================================================================
   SITE-WIDE MOBILE POLISH (Mobile-only fixes while protecting Desktop)
   ========================================================================== */

@media (max-width: 991px) {

    /* Navbar Toggle Alignment */
    .navbar .container-fluid {
        padding: 0 20px !important;
    }

    .navbar-collapse {
        margin-left: 0 !important;
        /* Fix for that 50px margin I saw earlier */
        padding-top: 15px;
    }

    .dropdown-menu {
        border: none !important;
        background: rgba(255, 255, 255, 0.05) !important;
        margin-top: 10px !important;
    }
}

@media (max-width: 767px) {

    /* Universal Spacing */
    .container,
    .container-fluid {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .py-5 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    /* Targeted Button Layout for Main CTAs */
    .header-carousel-item .btn,
    .about .btn-primary.rounded-pill {
        width: 100% !important;
        margin-bottom: 12px !important;
        padding: 14px 25px !important;
        display: block !important;
        text-align: center !important;
    }

    /* Protected Small Buttons (Socials, etc) */
    .btn-sm-square,
    .btn-lg-square {
        width: auto !important;
        display: inline-flex !important;
    }

    /* Footer Layout Polishing */
    .footer .footer-item {
        text-align: center !important;
        margin-bottom: 35px !important;
    }

    .footer .footer-item h4 {
        margin-bottom: 1.5rem !important;
    }

    .footer .footer-item a {
        display: block !important;
        margin-bottom: 10px !important;
    }

    .footer .footer-item .d-flex {
        justify-content: center !important;
    }

    .footer .footer-item i.me-2 {
        margin-right: 8px !important;
        /* Proper icon gap */
    }

    .footer .d-flex {
        justify-content: center !important;
        flex-wrap: wrap !important;
    }

    .footer .btn-sm-square {
        margin: 5px !important;
        width: 35px !important;
        height: 35px !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
    }
}


/*** Action Buttons & Sticky Contact Bar ***/
.action-buttons .btn {
    font-weight: 600;
    transition: 0.3s;
    border: none;
}

.action-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.action-buttons .btn-success {
    background-color: #25D366;
}

.action-buttons .btn-info {
    background-color: #17a2b8;
}

/* Sticky Contact Bar for Mobile */
.sticky-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 65px;
    display: flex;
    align-items: center;
    background: #ffffff;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.sticky-contact-bar .contact-item {
    flex: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.2s;
    position: relative;
}

.sticky-contact-bar .contact-item i {
    font-size: 1.4rem;
    margin-bottom: 2px;
}

.sticky-contact-bar .contact-item span {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-contact-bar .contact-item.call {
    color: var(--bs-primary);
}

.sticky-contact-bar .contact-item.whatsapp {
    color: #25D366;
}

.sticky-contact-bar .contact-item.mail {
    color: #17a2b8;
}

/* Add vertical dividers */
.sticky-contact-bar .contact-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(0, 0, 0, 0.08);
}

.sticky-contact-bar .contact-item:active {
    background: #f0f0f0;
    transform: scale(0.95);
}

/* Back to Top adjustment for Mobile */
@media (max-width: 991px) {
    .back-to-top {
        bottom: 80px !important;
        right: 20px !important;
        width: 50px !important;
        /* Fixed width for round shape */
        height: 50px !important;
        /* Fixed height for round shape */
        border-radius: 50% !important;
        /* Round shape */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 !important;
        margin: 0 !important;
        z-index: 99999 !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
    }
}

/* ==========================================================================
   PREMIUM MOBILE OVERRIDES (Mobile-First Optimization)
   ========================================================================== */

@media (max-width: 991px) {

    /* Header & Nav Premium Polish */
    .header-top {
        height: auto !important;
        padding: 5px 0 !important;
    }

    .mobile-logo-brand a {
        min-height: 80px !important;
    }

    .navbar.navbar-light {
        background: #fff !important;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .navbar-toggler {
        border: 1px solid var(--bs-primary) !important;
        padding: 8px 12px !important;
        border-radius: 8px !important;
    }

    .mobile-logo-brand img {
        height: 50px !important;
    }

    .header-logo-text {
        font-size: 1.8rem !important;
        letter-spacing: -0.5px !important;
    }

    .logo-tagline {
        font-size: 0.65rem !important;
        letter-spacing: 1px !important;
    }

    /* Fluid Typography for Headlines */
    h1.display-1,
    .display-1 {
        font-size: 2.8rem !important;
    }

    h1.display-4,
    .display-4 {
        font-size: 1.8rem !important;
    }

    /* Hero Carousel Adjustments for Phones */
    .header-carousel .header-carousel-item {
        height: 500px !important;
    }

    .header-carousel-item .carousel-caption h1 {
        font-size: 1.8rem !important;
        line-height: 1.2;
    }

    /* Padding Optimizations for flow */
    .py-5 {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    /* Sticky Contact Bar - Premium Design */
    .sticky-contact-bar {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
        border-top: 2px solid var(--bs-primary);
        height: 65px;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        display: flex;
        z-index: 1000;
        padding-bottom: env(safe-area-inset-bottom);
    }

    .sticky-contact-bar .contact-item {
        flex: 1;
        text-align: center;
        text-decoration: none;
        color: #333;
        font-size: 0.7rem;
        font-weight: 700;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        border-right: 1px solid rgba(0, 0, 0, 0.05);
        transition: background 0.3s;
    }

    .sticky-contact-bar .contact-item:last-child {
        border-right: none;
    }

    .sticky-contact-bar .contact-item i {
        font-size: 1.3rem;
        margin-bottom: 3px;
        color: var(--bs-primary);
    }

    .sticky-contact-bar .contact-item.whatsapp i {
        color: #25D366;
    }

    /* Cards & Layout Stacking */
    .industrial-card {
        margin-bottom: 20px;
    }

    /* Back to top adjustment to avoid sticky bar */
    .back-to-top {
        right: 15px;
        bottom: 80px;
        width: 45px;
        height: 45px;
    }

    /* About Section Layout Fixes - Downscaled for premium fit */
    .about .d-flex.flex-column.flex-sm-row {
        gap: 12px !important;
    }

    .about .btn-primary.rounded-pill {
        padding: 12px 30px !important;
        /* Smaller padding */
        font-size: 0.9rem !important;
    }

    .about .btn-lg-square {
        width: 40px !important;
        height: 40px !important;
    }

    .about h6 {
        font-size: 0.95rem !important;
    }

    .about small.text-muted {
        font-size: 0.75rem !important;
    }

    /* Testimonial ULTRA-COMPACT (Half Size) */
    .testimonial {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
    }

    .testimonial .py-5 {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .testimonial-item {
        padding: 15px !important;
        margin-top: 10px !important;
        background: #fff !important;
        border-radius: 15px !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05) !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .testimonial-item img {
        width: 45px !important;
        height: 45px !important;
    }

    .testimonial-item h5 {
        font-size: 0.95rem !important;
        margin-bottom: 2px !important;
    }

    .testimonial-item small.text-primary {
        font-size: 0.65rem !important;
    }

    .testimonial-item p {
        font-size: 0.8rem !important;
        line-height: 1.4 !important;
        margin-top: 5px !important;
        margin-bottom: 5px !important;
        font-style: italic !important;
    }

    .testimonial-item .d-flex.mb-4 {
        margin-bottom: 5px !important;
    }

    .testimonial-item i.fa-quote-left {
        display: block !important;
        font-size: 0.8rem !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    /* Fix disproportionate Feedback Button */
    .testimonial .btn.btn-primary {
        padding: 10px 25px !important;
        font-size: 0.9rem !important;
        width: auto !important;
        display: inline-block !important;
        margin-bottom: 20px !important;
    }

    /* Testimonial ULTRA-COMPACT (Pagination Dots) */
    .testimonial-carousel .owl-dots {
        margin-top: 10px !important;
        margin-bottom: 0 !important;
    }

    .testimonial-carousel .owl-dots .owl-dot,
    .testimonial-carousel .owl-dots .owl-dot.active {
        width: 10px !important;
        /* Extremely small container */
        height: 10px !important;
        margin: 0 4px !important;
        background: transparent !important;
        /* Hide the big square background */
    }

    .testimonial-carousel .owl-dots .owl-dot span::after {
        width: 6px !important;
        /* Tiny dot */
        height: 6px !important;
        border-radius: 50% !important;
        /* Make it round */
        left: 2px !important;
        /* Center it */
    }

    /* Team Compacting (2 per row for better fit) */
    .modern-team-card {
        border-radius: 12px !important;
    }

    .team-info-box {
        padding: 10px 5px !important;
    }

    .team-name {
        font-size: 0.9rem !important;
        margin-bottom: 2px !important;
    }

    .team-designation-badge {
        font-size: 0.55rem !important;
        letter-spacing: 0.5px !important;
    }

}

/* Compact Service Cards for Mobile */
@media (max-width: 767px) {
    .service-item .service-img-wrapper img {
        height: 200px !important;
    }

    .service-item .p-4 {
        padding: 1.2rem !important;
    }

    .service-item h4 {
        font-size: 1.1rem !important;
    }

    .service-item .btn-primary-soft {
        padding: 0.8rem !important;
        margin-right: 0.8rem !important;
        background: transparent !important;
        width: auto !important;
        height: auto !important;
    }

    /* Compact Showroom Images for Mobile */
    .product-item img {
        height: 250px !important;
    }

    .product-item .p-4 {
        padding: 1.2rem !important;
    }

    .product-item h4 {
        font-size: 1.1rem !important;
    }

    .service-item .btn-primary-soft i {
        font-size: 1.3rem !important;
        color: var(--bs-primary) !important;
    }

    /* Reduce spacing below header */
    .service-item .d-flex.align-items-center.mb-3 {
        margin-bottom: 0.5rem !important;
    }
}

/* Final override for mobile spacing */
@media (max-width: 767px) {
    .py-5 {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}

/*** Brand Ecosystem Hub Styling (Spider/Network Layout) ***/
.ecosystem-hub-section {
    background: #ffffff;
    padding: 100px 0;
    overflow: hidden;
}

.ecosystem-container {
    height: 700px;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Hub */
.hub-center {
    width: 140px;
    height: 140px;
    min-width: 140px;
    min-height: 140px;
    background: var(--bs-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 0 40px rgba(var(--bs-primary-rgb), 0.4);
    position: relative;
    animation: pulse-hub 3s infinite ease-in-out;
}

.inner-hub {
    width: 120px;
    height: 120px;
    background: #212529;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 3px solid #fff;
}

.hub-text {
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Brand Nodes */
.brand-node {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    z-index: 5;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(0, 0, 0, 0.03);
    overflow: hidden;
    --node-scale: 1;
}

.node-logo {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.3s ease;
}

.brand-node:hover {
    --node-scale: 1.15;
    z-index: 20;
    border-color: var(--bs-primary);
    box-shadow: 0 15px 35px rgba(var(--bs-primary-rgb), 0.2);
}

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

/* Positions for nodes (Desktop - Geometric Circular) */
/* radius_desktop = 320px */
.node-1 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0deg) translateX(320px) rotate(0deg) scale(var(--node-scale));
    animation: float 4s infinite ease-in-out;
}

.node-2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg) translateX(320px) rotate(-45deg) scale(var(--node-scale));
    animation: float 4.5s infinite ease-in-out 0.5s;
}

.node-3 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg) translateX(320px) rotate(-90deg) scale(var(--node-scale));
    animation: float 5s infinite ease-in-out 1s;
}

.node-4 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg) translateX(320px) rotate(-135deg) scale(var(--node-scale));
    animation: float 4.2s infinite ease-in-out 1.5s;
}

.node-5 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(180deg) translateX(320px) rotate(-180deg) scale(var(--node-scale));
    animation: float 4.8s infinite ease-in-out 0.2s;
}

.node-6 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(225deg) translateX(320px) rotate(-225deg) scale(var(--node-scale));
    animation: float 5.2s infinite ease-in-out 0.8s;
}

.node-7 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(270deg) translateX(320px) rotate(-270deg) scale(var(--node-scale));
    animation: float 4.6s infinite ease-in-out 0.3s;
}

.node-8 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(315deg) translateX(320px) rotate(-315deg) scale(var(--node-scale));
    animation: float 4.4s infinite ease-in-out 0.6s;
}

/* Connection Lines */
.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.line {
    position: absolute;
    height: 3px;
    background: var(--bs-primary);
    transform-origin: left center;
    opacity: 0.6;
    z-index: 1;
}

/* Arrow head on lines */
.line::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 10px solid var(--bs-primary);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Individual lines reaching the nodes */
/* Offset 70px as half of 140px hub. Width 250px reaches nodes at 320px radius precisely. */
.l1 {
    top: 50%;
    left: 50%;
    width: 250px;
    transform: rotate(0deg) translateX(70px);
}

.l2 {
    top: 50%;
    left: 50%;
    width: 250px;
    transform: rotate(45deg) translateX(70px);
}

.l3 {
    top: 50%;
    left: 50%;
    width: 250px;
    transform: rotate(90deg) translateX(70px);
}

.l4 {
    top: 50%;
    left: 50%;
    width: 250px;
    transform: rotate(135deg) translateX(70px);
}

.l5 {
    top: 50%;
    left: 50%;
    width: 250px;
    transform: rotate(180deg) translateX(70px);
}

.l6 {
    top: 50%;
    left: 50%;
    width: 250px;
    transform: rotate(225deg) translateX(70px);
}

.l7 {
    top: 50%;
    left: 50%;
    width: 250px;
    transform: rotate(270deg) translateX(70px);
}

.l8 {
    top: 50%;
    left: 50%;
    width: 250px;
    transform: rotate(315deg) translateX(70px);
}

/* Animations */
@keyframes pulse-hub {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(var(--bs-primary-rgb), 0.3);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(var(--bs-primary-rgb), 0.5);
    }
}

@keyframes float {

    0%,
    100% {
        margin-top: 0;
    }

    50% {
        margin-top: -15px;
    }
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .ecosystem-container {
        height: 500px;
    }

    .brand-node {
        width: 80px;
        height: 80px;
    }

    .hub-center {
        width: 110px;
        height: 110px;
    }

    .inner-hub {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 767px) {
    .ecosystem-hub-section {
        padding: 50px 0;
    }

    .ecosystem-container {
        height: 500px;
        /* Square base for circular symmetry */
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hub-center {
        width: 100px;
        height: 100px;
        min-width: 100px;
        min-height: 100px;
        z-index: 10;
        position: relative;
    }

    .inner-hub {
        width: 85px;
        height: 85px;
    }

    .hub-text {
        font-size: 0.7rem;
        line-height: 1.1;
        letter-spacing: 0;
    }

    .brand-node {
        position: absolute;
        width: 65px;
        height: 65px;
        min-width: 65px;
        min-height: 65px;
        padding: 10px;
        z-index: 5;
    }

    /* Precision circular mapping (Mobile Radius ~ 150px) */
    .node-1 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(0deg) translateX(150px) rotate(0deg) scale(var(--node-scale));
    }

    .node-2 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg) translateX(150px) rotate(-45deg) scale(var(--node-scale));
    }

    .node-3 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(90deg) translateX(150px) rotate(-90deg) scale(var(--node-scale));
    }

    .node-4 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(135deg) translateX(150px) rotate(-135deg) scale(var(--node-scale));
    }

    .node-5 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(180deg) translateX(150px) rotate(-180deg) scale(var(--node-scale));
    }

    .node-6 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(225deg) translateX(150px) rotate(-225deg) scale(var(--node-scale));
    }

    .node-7 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(270deg) translateX(150px) rotate(-270deg) scale(var(--node-scale));
    }

    .node-8 {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(315deg) translateX(150px) rotate(-315deg) scale(var(--node-scale));
    }

    .connection-lines {
        display: block;
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
    }

    .line {
        height: 2px;
    }

    /* Mobile line reach corresponding to above nodes (Offset 50px as half of 100px hub) */
    .l1 {
        top: 50%;
        left: 50%;
        width: 100px;
        transform: rotate(0deg) translateX(50px);
    }

    .l2 {
        top: 50%;
        left: 50%;
        width: 100px;
        transform: rotate(45deg) translateX(50px);
    }

    .l3 {
        top: 50%;
        left: 50%;
        width: 100px;
        transform: rotate(90deg) translateX(50px);
    }

    .l4 {
        top: 50%;
        left: 50%;
        width: 100px;
        transform: rotate(135deg) translateX(50px);
    }

    .l5 {
        top: 50%;
        left: 50%;
        width: 100px;
        transform: rotate(180deg) translateX(50px);
    }

    .l6 {
        top: 50%;
        left: 50%;
        width: 100px;
        transform: rotate(225deg) translateX(50px);
    }

    .l7 {
        top: 50%;
        left: 50%;
        width: 100px;
        transform: rotate(270deg) translateX(50px);
    }

    .l8 {
        top: 50%;
        left: 50%;
        width: 100px;
        transform: rotate(315deg) translateX(50px);
    }

    .node-logo {
        max-width: 90%;
        max-height: 90%;
    }
}

@media (max-width: 767px) {
    .ecosystem-container {
        height: 420px;
        transform: scale(0.9);
    }

    /* Footer Mobile Polish */
    .footer .footer-description {
        text-align: justify;
        line-height: 1.6;
        font-size: 0.9rem;
        margin-bottom: 25px !important;
    }

    .footer .footer-item h4 {
        font-size: 1.2rem;
        margin-bottom: 15px !important;
    }

    .footer .footer-item a {
        font-size: 0.85rem;
        margin-bottom: 8px !important;
    }
}

/* Mobile Copyright Optimization */
@media (max-width: 767px) {
    .copyright {
        padding: 20px 0 80px 0 !important;
        /* Added extra bottom padding for sticky bar */
    }

    .copyright .text-body,
    .copyright a {
        font-size: 0.75rem !important;
        /* Slightly smaller for better fit */
        letter-spacing: 0.1px;
    }

    .copyright .footer-author {
        display: block;
        /* Force new line on mobile for clarity */
        margin-top: 5px;
    }

    .back-to-top {
        bottom: 90px !important;
        /* Move higher to stay above sticky bar */
        right: 20px !important;
    }
}

/*** Commercial Showcase Layout ***/
.commercial-img-wrapper {
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    padding: 20px;
}

.commercial-img-wrapper img {
    max-height: 130%;
    max-width: 130%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.project-card {
    border-radius: 12px;
    background: #fff;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.project-card:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.project-card:hover .commercial-img-wrapper img {
    transform: scale(1.05);
}

/*** Mobile Responsive Improvements ***/
@media (max-width: 768px) {
    .commercial-img-wrapper {
        height: 280px;
        padding: 5px;
    }

    .commercial-img-wrapper img {
        max-height: 115%;
        max-width: 115%;
    }

    .project-card {
        margin-bottom: 25px;
    }
}

/*** Showcase Sections End ***/