:root {
    --primary: #00A878;
    --primary-light: #33C49C;
    --primary-dark: #007a59;

    --secondary: #008FA3;
    --secondary-light: #4CC9D9;
    --secondary-dark: #006B78;

    --accent: #FFD166;
    --accent-dark: #E6B850;

    --light: #F4FFFA;
    --dark: #1E2A23;

    --gray-100: #FAFAFA;
    --gray-200: #E8F0ED;
    --gray-300: #D0DDD9;
    --gray-400: #9EAFA9;
    --gray-500: #6D7A76;
    --gray-600: #45504C;
}


.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-secondary {
    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 ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .navbar-light .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar-light .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar-light .navbar-brand,
.navbar-light a.btn {
    height: 75px;
}

.navbar-light .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
}

.navbar-light.sticky-top {
    top: -100px;
    transition: .5s;
}

@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 ***/
@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
        max-height: 600px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item h5,
    .header-carousel .owl-carousel-item p {
        font-size: 14px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #FFFFFF;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: transparent;
    border: 1px solid #FFFFFF;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title h1 {
    position: relative;
    display: inline-block;
    padding: 0 60px;
}

.section-title.text-start h1 {
    padding-left: 0;
}

.section-title h1::before,
.section-title h1::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 5px;
    bottom: 0;
    background: var(--dark);
}

.section-title h1::before {
    left: 0;
}

.section-title h1::after {
    right: 0;
}

.section-title.text-start h1::before {
    display: none;
}


/*** 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);
    }
}


/*** Service ***/
.service-item img {
    transition: .5s;
}

.service-item:hover img {
    transform: scale(1.1);
}



.section-header-new {
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00A878 0%, #008563 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.section-title-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 700;
    color: #1E2A23;
}

.feature-card-new {
    background: white;
    border-radius: 20px;
    padding: 35px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    height: 100%;
    border: 1px solid rgba(0, 168, 120, 0.1);
}

.feature-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00A878, #008563);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card-new:hover::before {
    transform: scaleX(1);
}

.feature-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 168, 120, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-new:hover .feature-glow {
    opacity: 1;
}

.feature-card-new:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 50px rgba(0, 168, 120, 0.2);
    border-color: rgba(0, 168, 120, 0.3);
}

.feature-header-new {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.icon-wrapper-new {
    width: 65px;
    height: 65px;
    border-radius: 16px;
    background: linear-gradient(135deg, #00A878 0%, #008563 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 168, 120, 0.3);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.icon-wrapper-new::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, #00A878 0%, #008563 100%);
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

.feature-card-new:hover .icon-wrapper-new {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 168, 120, 0.5);
}

.icon-wrapper-new i {
    color: white;
    font-size: 26px;
    transition: transform 0.3s ease;
}

.feature-card-new:hover .icon-wrapper-new i {
    transform: scale(1.2);
}

.feature-number-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: #F4FFFA;
    line-height: 1;
    transition: all 0.4s ease;
}

.feature-card-new:hover .feature-number-new {
    color: rgba(0, 168, 120, 0.15);
}

.feature-title-new {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1E2A23;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.feature-card-new:hover .feature-title-new {
    color: #00A878;
}

.feature-desc-new {
    color: #6D7A76;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}

.feature-arrow {
    position: absolute;
    bottom: 25px;
    right: 25px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(0, 168, 120, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(10px, 10px);
    transition: all 0.3s ease;
}

.feature-arrow i {
    color: #00A878;
    font-size: 14px;
}

.feature-card-new:hover .feature-arrow {
    opacity: 1;
    transform: translate(0, 0);
}

@media (max-width: 768px) {
    .section-title-new {
        font-size: 28px;
    }
    
    .feature-card-new {
        padding: 30px 24px;
    }
    
    .icon-wrapper-new {
        width: 55px;
        height: 55px;
    }
    
    .feature-number-new {
        font-size: 48px;
    }
}
*/

/*** 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-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 0;
    height: 0;
    bottom: 0;
    left: 50%;
    background: rgba(53, 53, 53, .7);
    transition: .5s;
}

.portfolio-item:hover .portfolio-overlay {
    width: 100%;
    height: 100%;
    left: 0;
}

.portfolio-item .portfolio-overlay .btn {
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay .btn {
    opacity: 1;
}


/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 90% !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);
    }
}

/* ==========================================
   QUOTE FORM – SUBTLE PROFESSIONAL INPUTS
   ========================================== */

/* Base input appearance */
#quoteForm .form-control,
#quoteForm .form-select,
#quoteForm textarea {
    background-color: #ffffff;
    border: 1px solid #d1d9d6 !important; /* soft industrial grey */
    border-radius: 6px;
    padding-left: 14px;
    transition: border-color 0.15s ease;
}

/* Height consistency */
#quoteForm .form-control,
#quoteForm .form-select {
    min-height: 55px;
}

/* Focus state – no glow, no shadow */
#quoteForm .form-control:focus,
#quoteForm .form-select:focus,
#quoteForm textarea:focus {
    border-color: #9fbfb3 !important; /* muted green-grey */
    box-shadow: none;
    outline: none;
}

/* File upload – quiet dashed border */
#quoteForm .file-upload-wrapper {
    border: 1px dashed #cfd8d4;
    border-radius: 6px;
    background-color: #ffffff;
}

/* File label tone */
#quoteForm .file-upload-label {
    font-weight: 500;
    color: #556b63;
}

/* Placeholder text – softer */
#quoteForm ::placeholder {
    color: #9aa7a2;
    opacity: 1;
}

/* Mobile consistency */
@media (max-width: 768px) {
    #quoteForm .form-control,
    #quoteForm .form-select,
    #quoteForm textarea {
        border-radius: 5px;
    }
}



/*** Team ***/
.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 38px;
    top: 50%;
    left: -38px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    background
    : #FFFFFF;
    transition: .5s;
}

.team-item .team-social .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}

.team-item:hover .team-social {
    left: 0;
}


/*** 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-item .testimonial-text {
    border: 5px solid var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    transform: scale(1);
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 10px;
    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);
}


/*** 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);
    }
}

/* Make the main title feel heavy and industrial */
h2 {
    font-family: 'Inter', sans-serif; /* Or your theme font */
    color: #0e2e50; /* Deep Industrial Blue */
    position: relative;
}

/* The Eyebrow text (CONTACT US) */
h6 {
    color: #0d6efd; /* Your Brand Primary Color */
    font-size: 0.85rem;
}

/* The Engineering Divider Line */
.divider {
    height: 4px;
    width: 80px;
    background: #00A878;
    border-radius: 2px;
    position: relative;
    overflow: visible;
}

/* Optional: Adds a small dot in the center of the line for detail */
.divider::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border: 3px solid #00A878;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Improve the readability of the description */
p.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #000000;
}

/* FAQ Item Styling */
.faq-item {
    background: #fff;
    border: 1px solid #e5e5e5; /* Very subtle grey border */
    border-left: 4px solid transparent; /* Hidden left accent initially */
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Adds a shadow and the blue left accent */
.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* Soft shadow */
    border-color: #e5e5e5;
    border-left-color: #00A878; /* Reveals the brand color on hover */
    transform: translateY(-3px); /* Subtle lift */
}

/* Typography Tweaks */
.faq-item h5 {
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.faq-item p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Icon Box Styling */
.icon-box {
    margin-top: 2px; /* Aligns icon with the first line of text */
    opacity: 0.7;
    transition: 0.3s;
}

.faq-item:hover .icon-box {
    opacity: 1; /* Icon becomes fully visible on hover */
    transform: scale(1.1);
}    


/*** Footer ***/
.footer {
    background: linear-gradient(rgba(53, 53, 53, .7), rgba(53, 53, 53, .7)), url(../img/footer.jpg) center center no-repeat;
    background-size: cover;
    background-repeat: no-repeat !important;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid #FFFFFF;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #FFFFFF;
    font-size: 15px;
    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: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}

/* THEME OVERRIDES ONLY — SAFE, CLEAN, FAST */
:root {
    --primary: #00A878;        /* Green */
    --primary-dark: #008563;
    --light: #F4FFFA;          /* Mint white */
    --dark: #1E2A23;           /* Deep dark green */
}

/* FONTS */
body, p, span, li {
    font-family: "Poppins", sans-serif;
}
h1, h2, h3, h4, h5 {
    font-family: "Montserrat", sans-serif;
}

/* PRIMARY COLOR OVERRIDES */
.text-primary { color: var(--primary) !important; }
.bg-primary { background: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }

.btn-primary {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}
.btn-primary:hover {
    background: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
}

/* NAVBAR */
.navbar { background: var(--dark) !important; }
.navbar-nav .nav-link { color: var(--light) !important; }
.navbar-nav .nav-link:hover { color: var(--primary) !important; }

/* FOOTER */
.footer { background: var(--dark) !important; }
.footer a { color: var(--primary) !important; }

/* LIGHT SECTIONS */
.bg-light, .section-bg {
    background: var(--light) !important;
}
footer, .footer {
    width: 100% !important;
    margin: 0 !important;
    padding: 0;
}
.container-fluid.footer {
    padding: 0 !important;
}

/* Navbar Dropdown Styles */
.navbar .dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0 );
    padding: 0.5rem 0;
    margin-top: 0;
}

.navbar .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-size: 15px;
    color: #666;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.navbar .dropdown-item:hover {
    background: #f8f9fa;
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 1.75rem;
}

.navbar .dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
}

/* Active state for dropdown parent */
.navbar .dropdown .nav-link.active {
    color: var(--primary) !important;
}

/* Smooth dropdown animation */
.navbar .dropdown-menu.fade-up {
    animation: fadeInUp 0.3s ease;
}

/* =========================================================
   CLEAN MOBILE HAMBURGER (NO OVERLAP – FINAL FIX)
   ========================================================= */

.navbar-toggler {
    border: none;
    background: transparent;
    padding: 6px;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

/* Hamburger container ONLY (no line here) */
.navbar-toggler-icon {
    background: none !important;
    width: 24px;
    height: 18px;
    position: relative;
}

/* Draw all 3 lines using pseudo elements */
.navbar-toggler-icon::before,
.navbar-toggler-icon::after,
.navbar-toggler-icon span {
    content: "";
    position: absolute;
    left: 0;
    width: 24px;
    height: 2px;
    background-color: var(--primary);
}

/* Top line */
.navbar-toggler-icon::before {
    top: 0;
}

/* Middle line */
.navbar-toggler-icon span {
    top: 8px;
}

/* Bottom line */
.navbar-toggler-icon::after {
    bottom: 0;
}

/* Dark navbar support */
.navbar-dark .navbar-toggler-icon::before,
.navbar-dark .navbar-toggler-icon::after,
.navbar-dark .navbar-toggler-icon span {
    background-color: #ffffff;
}

/* =========================================================
   REMOVE THICK BORDER / FOCUS RING ON NAVBAR TOGGLER
   ========================================================= */

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsive */
@media (max-width: 991px) {
    .navbar .dropdown-menu {
        border-left: 4px solid var(--primary);
        margin-left: 1rem;
        box-shadow: none;
    }
    
    .navbar .dropdown-item {
        padding: 0.5rem 1rem;
    }
}



/* Catalog Card Styles */
.catalog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.catalog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.catalog-preview {
    position: relative;
    width: 100%;
    height: 350px;
    background: #E8F0ED;
    overflow: hidden;
}

.catalog-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.catalog-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.catalog-card:hover .catalog-overlay {
    background: rgba(0, 168, 120, 0.9);
}

.download-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.catalog-card:hover .download-button {
    opacity: 1;
    transform: scale(1);
}

.download-button i {
    font-size: 2.5rem;
}

.download-button span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.catalog-body {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.catalog-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.catalog-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00A878 0%, #008FA3 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.catalog-header h5 {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1E2A23;
}

.catalog-info {
    margin: 0;
    font-size: 0.85rem;
    color: #6D7A76;
    font-weight: 500;
}

.catalog-body p {
    color: #45504C;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.catalog-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F4FFFA;
    color: #00A878;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 2px solid #00A878;
}

.catalog-badge i {
    font-size: 1rem;
}

.catalog-size {
    color: #6D7A76;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
    .catalog-preview {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .catalog-preview {
        height: 280px;
    }
    
    .catalog-body {
        padding: 20px;
    }
    
    .catalog-header h5 {
        font-size: 1.1rem;
    }
};
/* Catalog Card Styles ENDS */


/* Equal height service cards */
.service-item {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Content area grows evenly */
.service-item .p-4 {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

/* Push Read More to bottom */
.service-item a {
  margin-top: auto;
}



/* ==========================================
   WHATSAPP BUTTON WITH TOOLTIP
   ========================================== */

.whatsapp-float-tooltip {
    position: fixed;
    bottom: 110px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float-tooltip:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    transform: translateY(-3px) scale(1.1);
    animation: none;
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background: #1E2A23;
    color: #fff;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid #1E2A23;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}

.whatsapp-float-tooltip:hover .whatsapp-tooltip {
    opacity: 1;
    right: 80px;
}

/* Pulse Animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
                    0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
                    0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4),
                    0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float-tooltip {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }

    .whatsapp-tooltip {
        right: 70px;
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .whatsapp-tooltip {
        display: none; /* Hide tooltip on very small screens */
    }
}




/* ==========================================
   MOBILE VIEW FIXES
   ========================================== */

/* 1. FIX HORIZONTAL OVERFLOW/GAP */
html, body {
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    position: relative;
}

/* Ensure all containers don't overflow */
.container-fluid,
.container-xxl,
.container {
    overflow-x: hidden;
    max-width: 100%;
}

/* Fix row overflow */
.row {
    margin-left: 0;
    margin-right: 0;
}

/* 2. FIX NAVBAR MOBILE OVERLAP */
@media (max-width: 991px) {
    /* Navbar brand container - single line */
  
     .navbar-brand {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 15px !important;
        max-width: 100%;
    }

       .navbar-brand h2 {
        font-family: "Montserrat", sans-serif !important;
        font-weight: 700;
        font-size: 1rem !important;
        white-space: normal;      /* allow wrapping */
        overflow: visible;        /* do NOT hide */
        text-overflow: unset;     /* remove ellipsis */
        margin: 0;
        line-height: 1.2;
    }

    /* Logo size on mobile */
    .navbar-brand img {
        height: 45px !important; /* Smaller logo */
        width: auto;
        margin-right: 8px !important;
    }


    /* Hamburger positioning */
    .navbar-toggler {
        padding: 8px !important;
        margin-right: 10px !important;
        position: relative;
        z-index: 1000;
    }

    /* Navbar itself */
    .navbar {
        padding: 8px 0 !important;
    }

    /* Full width navbar collapse */
    .navbar-collapse {
        width: 100%;
        background: var(--dark);
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    /* Nav items spacing */
    .navbar-nav {
        padding: 15px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 20px !important;
        margin: 0 !important;
    }

    /* Hide desktop quote button */
    .btn-primary.d-none.d-lg-block {
        display: none !important;
    }
}

/* 3. EXTRA SMALL MOBILE (VERY SMALL SCREENS) */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 40px !important;
    }

    .navbar-brand h2 {
        font-size: 0.85rem !important;
    }
}

/* 4. FIX CAROUSEL OVERFLOW */
@media (max-width: 768px) {
    .header-carousel {
        overflow: hidden;
    }

    .owl-carousel-item {
        width: 100vw;
        max-width: 100%;
    }

    .owl-carousel-item img {
        width: 100%;
        height: auto;
        max-width: 100%;
    }
}

/* 5. FIX FOOTER OVERFLOW */
@media (max-width: 768px) {
    .footer {
        overflow-x: hidden;
    }

    .footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .footer .row {
        margin-left: 0;
        margin-right: 0;
    }

    .footer .col-lg-3,
    .footer .col-md-6 {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* 6. FIX SECTION PADDING ON MOBILE */
@media (max-width: 768px) {
    .container-xxl {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section-title h1 {
        font-size: 1.8rem;
    }

    /* Service cards */
    .service-item {
        margin-bottom: 20px;
    }

    /* Feature cards */
    .feature-card-new {
        margin-bottom: 20px;
    }
}

/* 7. FIX QUOTE FORM OVERFLOW */
@media (max-width: 768px) {
    .quote-text {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    #quoteForm .row {
        margin-left: 0;
        margin-right: 0;
    }

    #quoteForm [class*="col-"] {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/* 8. FIX WHATSAPP BUTTON ON MOBILE */
@media (max-width: 768px) {
    .whatsapp-float-tooltip {
        bottom: 80px; /* Move up to avoid footer overlap */
        right: 15px;
        width: 55px;
        height: 55px;
    }

    .back-to-top {
        bottom: 20px;
        right: 15px;
    }
}

/* 9. FIX CATALOG CARDS OVERFLOW */
@media (max-width: 768px) {
    .catalog-card {
        margin-bottom: 20px;
    }

    .catalog-preview {
        height: 250px;
    }
}

/* 10. FIX IMAGES OVERFLOW */
img {
    max-width: 100%;
    height: auto;
}

/* 11. PREVENT TEXT OVERFLOW */
* {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* 12. FIX SPECIFIC OVERFLOWING ELEMENTS */
@media (max-width: 768px) {
    /* Buttons */
    .btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    /* Tables */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* Modal on mobile */
    .modal-dialog {
        margin: 10px;
    }
}

/* ==========================================
   CAROUSEL FIXES - HEIGHT & RESPONSIVENESS
   ========================================== */

/* Carousel Container */
.header-carousel {
    position: relative;
    overflow: hidden;
}

/* Carousel Items - Fixed Height */
.header-carousel .owl-carousel-item {
    position: relative;
     height: auto;
    min-height: 500px;
    overflow: hidden;
}

.header-carousel .owl-carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Dark Overlay - Improved */
.header-carousel .owl-carousel-item .position-absolute {
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.7) 100%
    ) !important;
}

/* Content Positioning */
.header-carousel .container {
    height: 100%;
    display: flex;
    align-items: center;
}

/* ==========================================
   NAVIGATION ARROWS - REDESIGNED
   ========================================== */

/* Remove old nav styles and add new ones */
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
    z-index: 10;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 55px;
    height: 55px;
    background: rgba(0, 168, 120, 0.9) !important;
    color: #ffffff !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary-dark) !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(0, 168, 120, 0.5);
}

/* Position arrows outside content area */
.header-carousel .owl-nav .owl-prev {
    margin-left: 0;
}

.header-carousel .owl-nav .owl-next {
    margin-right: 0;
}

/* ==========================================
   NAVIGATION DOTS - IMPROVED
   ========================================== */

.header-carousel .owl-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.header-carousel .owl-dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.4) !important;
    border: 2px solid rgba(255, 255, 255, 0.6) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.header-carousel .owl-dot:hover,
.header-carousel .owl-dot.active {
    background: var(--primary) !important;
    border-color: white !important;
    transform: scale(1.3);
}

/* Remove old dot styles */
.header-carousel .owl-dot::after {
    display: none;
}

/* ==========================================
   MOBILE RESPONSIVE
   ========================================== */

@media (max-width: 991px) {
    .header-carousel .owl-carousel-item {
        height: 70vh;
        min-height: 500px;
        max-height: 600px;
    }

    /* Smaller text on tablets */
    .header-carousel h1,
    .header-carousel h2 {
        font-size: 2.5rem !important;
    }

    .header-carousel h5 {
        font-size: 1rem !important;
    }

    .header-carousel p {
        font-size: 1rem !important;
    }

    /* Smaller buttons */
    .header-carousel .btn {
        padding: 12px 24px !important;
        font-size: 0.9rem !important;
    }

    /* Nav arrows smaller */
    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 45px;
        height: 45px;   
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        height: 60vh;
        min-height: 450px;
        max-height: 500px;
    }

    /* Much smaller text on mobile */
    .header-carousel h1,
    .header-carousel h2 {
        font-size: 1.8rem !important;
        line-height: 1.3;
    }

    .header-carousel h5 {
        font-size: 0.85rem !important;
        margin-bottom: 8px !important;
    }

    .header-carousel p {
        font-size: 0.85rem !important;
        line-height: 1.4;
        margin-bottom: 20px !important;
    }

    /* Stack buttons on mobile */
    .header-carousel .btn {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
        margin: 5px !important;
        display: block;
        width: fit-content;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    /* Nav arrows - move to bottom sides */
    .header-carousel .owl-nav {
        top: auto;
        bottom: 80px;
        transform: none;
    }

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    /* Dots higher up */
    .header-carousel .owl-dots {
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .header-carousel .owl-carousel-item {
        height: 55vh;
        min-height: 400px;
    }

    .header-carousel h1,
    .header-carousel h2 {
        font-size: 1.5rem !important;
    }

    .header-carousel h5 {
        font-size: 0.75rem !important;
    }

    .header-carousel p {
        font-size: 0.8rem !important;
    }

    /* Hide nav arrows on very small screens */
    .header-carousel .owl-nav {
        display: none;
    }

    /* Rely only on dots */
    .header-carousel .owl-dots {
        bottom: 15px;
    }
}

/* ==========================================
   LOADING OPTIMIZATION
   ========================================== */

/* Lazy load indicator */
.header-carousel .owl-carousel-item img[loading="lazy"] {
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
}

/* Fade in animation for images */
.header-carousel .owl-carousel-item img {
    animation: none !important;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



/* Responsive Typography */
@media (max-width: 768px) {
    .carousel h2, .carousel h1 {
        font-size: 1.75rem !important;
        line-height: 1.3;
    }
    
    .carousel h5 {
        font-size: 0.9rem !important;
    }
    
    .carousel p {
        font-size: 0.85rem !important;
    }
    
    .carousel .btn {
        padding: 10px 20px !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 576px) {
    .carousel h2, .carousel h1 {
        font-size: 1.4rem !important;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }
}

/* Better spacing for feature cards on mobile */
@media (max-width: 991px) {
    .feature-card-new { 
        margin-bottom: 1rem;
    }
    
    .col-lg-3 {
        margin-bottom: 1rem;
    }
}

/* Service cards responsive */
@media (max-width: 768px) {
    .service-item h4 {
        font-size: 1.1rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
    }
}

/* Form improvements */
@media (max-width: 576px) {
    .form-control, .form-select {
        font-size: 0.9rem !important;
    }
    
    .btn-primary {
        font-size: 0.95rem !important;
    }
}

/* Section titles responsive */
@media (max-width: 768px) {
    .display-5 {
        font-size: 1.8rem !important;
    }
    
    .section-title-new {
        font-size: 1.5rem !important;
    }
}

/* About section image fix */
@media (max-width: 991px) {
    .about .col-lg-6[style*="min-height"] {
        min-height: 300px !important;
    }
}

/* Catalog cards */
@media (max-width: 768px) {
    .catalog-card h5 {
        font-size: 1rem;
    }
    
    .catalog-card p {
        font-size: 0.85rem;
    }
}

/* Container padding adjustments */
@media (max-width: 576px) {
    .container-xxl {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Prevent content from being too wide on large screens */
@media (min-width: 1400px) {
    .container-xxl {
        max-width: 1320px;
    }
}

/* Better breathing room */
.container {
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 576px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Service Cards Responsive Styles */
@media (max-width: 768px) {
    .service-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem !important;
    }
    
    .service-item p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .service-item .p-4 {
        padding: 1rem !important;
    }
    
    .service-item img {
        max-height: 200px;
        object-fit: cover;
    }
}

@media (max-width: 576px) {
    .service-item h4 {
        font-size: 1rem;
    }
    
    .service-item p {
        font-size: 0.85rem;
    }
    
    .service-item img {
        max-height: 180px;
    }
}

/* Improve card hover effect */
.service-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12) !important;
}

/* Better spacing between cards */
.row.g-3 {
    row-gap: 1.5rem;
}

@media (min-width: 768px) {
    .row.g-md-4 {
        row-gap: 2rem;
    }
}


/* CLS FIX: reserve space for core strengths */
.core-strengths-section {
  min-height: 520px;
}

@media (max-width: 768px) {
  .core-strengths-section {
    min-height: 780px;
  }
}


.fa, .fas, .fab, .bi {
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}


/* Ensure first carousel slide is visible immediately */
.owl-carousel .owl-item:first-child {
  opacity: 1 !important;
  visibility: visible !important;
}
.owl-carousel-item {
  background-image: none !important;
}

/* LCP FIX: allow hero image to paint before Owl initializes */
.owl-carousel {
  display: block !important;
}

.owl-carousel .owl-item {
  display: block;
}

.owl-carousel .owl-stage {
  display: flex;
}
/* =========================================
   FEATURE ICONS – MOBILE FIX
   ========================================= */

/* Desktop stays the same */
.feature-item {
    align-items: center;
}

/* Mobile adjustments */
@media (max-width: 768px) {

    /* Stack items more cleanly */
    .feature-item {
        align-items: flex-start;
    }

    /* Icon box smaller on mobile */
    .feature-item > div:first-child {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px;
        border-radius: 10px;
    }

    /* Icon size */
    .feature-item i {
        font-size: 1.2rem !important;
        line-height: 1;
    }

    /* Reduce text spacing */
    .feature-item .ms-4 {
        margin-left: 10px !important;
    }

    /* Text tightening */
    .feature-item p {
        font-size: 0.8rem;
        margin-bottom: 2px;
        line-height: 1.2;
    }

    .feature-item h5 {
        font-size: 0.95rem;
        line-height: 1.25;
        margin: 0;
    }
}

/* Extra small phones */
@media (max-width: 480px) {

    /* Switch to full width rows */
    .feature-text .row > div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

