:root {
    --primary-color: #BF0000;
    --secondary-color: #009900;
    --dark-color: #000000;
    --text-color: #515151;
    --font-family: "Inter", sans-serif;
    --font-heading: "Barlow", serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
}

::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    font-family: var(--font-heading);
    /* letter-spacing: .5px; */
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: .4s ease;
}

@media (min-width: 992px) and (max-width: 1399.98px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1280px;
        font-size: 15px;
    }

}


/* ======================================== */



.header {
    position: fixed;
    width: 100%;
    z-index: 99;
    padding: 15px 0;
}

.navbar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    width: 17%;
    flex-shrink: 0;
    padding: 13px 15px;
    border-radius: 50px;
    box-shadow: 0px 4px 16px 0px #00000026;
    background: white;
    height: 100%;
}

.logo img {
    width: 85%;
    margin: auto;
}

li {
    list-style: none;
}

dl,
ol,
ul {
    margin: 0;
    padding: 0;
}

ul.menus-ul {
    display: flex;
    align-items: center;
}

.menu-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0px 4px 16px 0px #00000026;
    padding: 10px 15px;
    border-radius: 50px;
    background: white;
    width: 82%;
    height: 100%;
}

ul.menus-ul li a {
    display: inline-block;
    padding: 10px 15px;
    color: var(--text-color);
    transition: all 0.3s ease;
}

ul.menus-ul li a:hover,
ul.menus-ul li a.active {
    color: var(--primary-color);
}


/* Dropdown Navigation Menu */
ul.menus-ul li.menu-item-has-children {
    position: relative;
}

ul.menus-ul li.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

ul.menus-ul li.menu-item-has-children .dropdown-icon {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

ul.menus-ul li.menu-item-has-children:hover .dropdown-icon {
    transform: rotate(180deg);
}

ul.menus-ul li.menu-item-has-children .sub-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: #ffffff;
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 1px solid #eef0f3;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
    margin-top: 10px;
}

/* Dropdown arrow pointer */
ul.menus-ul li.menu-item-has-children .sub-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-top: 1px solid #eef0f3;
    border-left: 1px solid #eef0f3;
}

ul.menus-ul li.menu-item-has-children:hover .sub-menu,
ul.menus-ul li.menu-item-has-children.mobile-open .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

ul.menus-ul li.menu-item-has-children.mobile-open .dropdown-icon {
    transform: rotate(180deg);
}

ul.menus-ul li.menu-item-has-children .sub-menu li {
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
}

ul.menus-ul li.menu-item-has-children .sub-menu li a {
    display: block;
    padding: 10px 24px;
    color: var(--text-color) !important;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.25s ease;
    white-space: nowrap;
    text-align: left;
}

ul.menus-ul li.menu-item-has-children .sub-menu li a:hover {
    background-color: rgba(191, 0, 0, 0.05) !important; /* Soft primary color tint */
    color: var(--primary-color) !important;
    padding-left: 28px; /* Smooth slide-in effect */
}


.web-btn a {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    background: var(--secondary-color);
    padding: 10px 22px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 153, 0, 0.2);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.web-btn a:hover {
    background: transparent;
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(0, 153, 0, 0.3);
    transform: translateY(-2px);
}

.web-btn a i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.web-btn a:hover i.bi-arrow-up-right {
    transform: translate(2px, -2px);
}

.web-btn a:hover i.bi-telephone {
    transform: scale(1.1);
}



section {
    position: relative;
    overflow-x: clip;
}









.hero-section {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding-top: 10rem;
    padding-bottom: 2rem;
    /* clip-path: ellipse(140% 100% at 50% 0%); */
    /* overflow: hidden; */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    /* very soft light overlay */
    z-index: 1;
    pointer-events: none;
}

.hero-section>.container {
    position: relative;
    z-index: 2;
}

/* Hero Content Styles */
.hero-content {
    padding-right: 2rem;
}

.subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 5px 16px 5px 6px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--dark-color);
    margin-bottom: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.subtitle span {
    background: var(--secondary-color);
    color: white;
    padding: 3px 12px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
}

.hero-content .hero-title {
    font-size: 3.7rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.hero-content .hero-title span.highlight-span {
    color: var(--primary-color);
    display: block;
    margin-top: 0.2rem;
}

.hero-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 90%;
    line-height: 1.6;
    color: #515151;
}

/* Hero Form Styles */
.hero-form {
    background: #ffffff;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0px 4px 16px 0px #00000026;
    border: 1px solid #DADADA;
}

.hero-form .form-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 1.2rem;
}

.hero-form .form-group {
    margin-bottom: 1rem;
}

.hero-form .form-group label {
    font-size: 0.9rem;
    /* font-weight: 600; */
    color: #666666;
    margin-bottom: 6px;
    display: inline-block;
    padding-left: 5px;
}

.hero-form .form-control {
    background-color: #f5f5f7;
    border: 1px solid #eef0f3;
    border-radius: 30px;
    height: auto;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--dark-color);
    transition: all 0.3s ease;
}

.hero-form .form-control:focus {
    background-color: #ffffff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 153, 0, 0.15);
    outline: none;
}

.hero-form .form-control::placeholder {
    color: #aaaaaa;
}

/* Custom dropdown styled like screenshot */
.hero-form .form-select.custom-select-arrow {
    background-color: #f5f5f7;
    border: 1px solid #eef0f3;
    border-radius: 30px;
    height: 48px;
    padding: 0 45px 0 20px;
    font-size: 0.9rem;
    color: #555555;
    transition: all 0.3s ease;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 16'%3E%3Cline x1='14' y1='2' x2='14' y2='14' stroke='%23d0d0d5' stroke-width='1'/%3E%3Cpath fill='none' stroke='%23666666' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m22 6 4 4 4-4'/%3E%3C/svg%3E");
    background-size: 40px 16px;
    background-position: right 15px center;
}

.hero-form .form-select.custom-select-arrow:focus {
    background-color: #ffffff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 153, 0, 0.15);
    outline: none;
}

/* Field with right icon (Calendar) */
.hero-form .field-icon-right {
    padding-right: 45px;
}

.hero-form .position-relative .field-icon {
    position: absolute;
    right: 20px;
    bottom: 10px;
    font-size: 1rem;
    color: #888888;
    pointer-events: none;
}

/* Form Submit Button */
.hero-form .submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: 2px solid transparent;
    padding: 13px 20px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(191, 0, 0, 0.2);
    margin-top: 0.5rem;
}

.hero-form .submit-btn:hover {
    background-color: white;
    color: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(191, 0, 0, 0.3);
    transform: translateY(-2px);
}

.hero-form .submit-btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-form .submit-btn:hover i {
    transform: translate(2px, -2px);
}

/* Responsive Media Queries */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: auto;
        padding-top: 4rem;
        padding-bottom: 5rem;
        clip-path: none;
        background-position: center;
    }

    .hero-content {
        padding-right: 0;
        text-align: center;
        margin-bottom: 3.5rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-content .hero-title {
        font-size: 2.8rem;
    }

    .hero-form {
        padding: 30px 25px;
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 575.98px) {
    .hero-content .hero-title {
        font-size: 2.2rem;
    }

    .hero-form {
        padding: 25px 15px;
    }

    .hero-form .form-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
}

/* ======================================== */
/* About Section Styles */
/* ======================================== */

.section-padding {
    padding: 4rem 0;
}


.about-section {
    background-color: #ffffff;
}

.about-section-right {
    position: relative;
    padding-left: 20px;
}

/* About Collage Grid Layout */
.about-image-collage {
    /* display: grid; */
    /* grid-template-columns: repeat(12, 1fr); */
    /* grid-template-rows: repeat(12, 1fr); */
    /* gap: 15px; */
    position: relative;
    width: 100%;
    z-index: 9;
    background: white;
    border-radius: 30px;
}

.about-image-collage::before {
    content: '';
    position: absolute;
    top: -32px;
    left: -44px;
    width: 90px;
    height: 95px;
    background-image: radial-gradient(#d0d0d5 2px, transparent 2.5px);
    background-size: 16px 16px;
    z-index: -1;
    opacity: 0.8;
}

.about-image-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.about-image-collage .img-1 {
    /* grid-column: 1 / 4; */
    /* grid-row: 1 / 7; */
    /* z-index: 2; */
    width: 90%;
    height: 590px;
    border-radius: 30px;
    overflow: hidden;
}

.about-image-collage .img-2 {
    /* grid-column: 4 / 13; */
    /* grid-row: 1 / 8; */
    width: 120px;
    position: absolute;
    height: auto;
    top: 0;
    border: 10px solid white;
    border-radius: 20px;
}

.about-image-collage .text {
    grid-column: 1 / 8;
    grid-row: 7 / 11;
    background: var(--primary-color);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 12px;
    font-size: 0.8rem;
    text-align: center;
    letter-spacing: 0.5px;
    z-index: 3;
    position: relative;
    margin-top: 15px;
    box-shadow: 0 10px 25px rgba(191, 0, 0, 0.2);
}

/* Green ribbon folded element on satisfaction guarantee */
.about-image-collage .text::before {
    content: '';
    position: absolute;
    left: 15px;
    bottom: -10px;
    width: 0;
    height: 0;
    border-top: 10px solid var(--secondary-color);
    border-right: 10px solid transparent;
}

.about-image-collage .img-3 {
    /* grid-column: 8 / 13; */
    /* grid-row: 8 / 13; */
    /* z-index: 2; */
    width: 210px;
    position: absolute;
    bottom: -15px;
    right: 0;
    border-radius: 30px;
    overflow: hidden;
}

/* About Content Left Column */
.about-section-left {
    /* padding-left: 1rem; */
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: normal;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.section-title span.highlight-span {
    color: var(--primary-color);
    /* display: block; */
    margin-top: 0.2rem;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
}

/* About Tabs Navigation */
.about-section-left .nav-tabs {
    border-bottom: none;
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
    padding: 0;
}

.about-section-left .nav-item {
    position: relative;
}

.about-section-left .nav-link {
    background: #ffffff;
    border: 1px solid #DADADA !important;
    color: #515151 !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    padding: 10px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.about-section-left .nav-link:hover {
    border-color: var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.about-section-left .nav-link.active {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    box-shadow: 0 6px 15px rgba(191, 0, 0, 0.25);
}

/* Tab active triangle fold */
.about-section-left .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -21px;
    /* positioned slightly below the active button */
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-top: 20px solid var(--secondary-color);
    z-index: 10;
}

/* Tab Content Box */
.aboutTabbox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f5f5f7;
    border-radius: 25px;
    padding: 20px 25px;
    gap: 30px;
    margin-bottom: 1rem;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.01);
}

.aboutTabbox .content {
    flex: 1;
}

.aboutTabbox .content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.aboutTabbox .content ul li {
    position: relative;
    margin-bottom: 10px;
    list-style: disc inside;
}

.aboutTabbox .content ul li::before {
    /* content: 'ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢'; */
    /* position: absolute; */
    /* left: 0; */
    /* color: var(--dark-color); */
    /* font-size: 1.3rem; */
    /* top: -2px; */
}

.aboutTabbox .content ul li:last-child {
    margin-bottom: 0;
}

.aboutTabbox .image {
    width: 42%;
    flex-shrink: 0;
}

.aboutTabbox .image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.about-section-right .text {
    padding: 7px 20px;
    background: var(--primary-color);
    color: white;
    display: inline-block;
    position: relative;
    left: 135px;
}

.about-section-right .text:before {
    content: '';
    position: absolute;
    left: -21px;
    bottom: 0;
    width: 0;
    height: 0;
    border-top: 37px solid var(--secondary-color);
    border-left: 21px solid transparent;
}

/* Responsive Styles for About Section */
@media (max-width: 991.98px) {
    .about-section-right {
        padding-left: 0;
        margin-bottom: 3.5rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-image-collage::before {
        left: -20px;
    }

    .about-section-left {
        padding-left: 0;
    }

    .about-section-left .section-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 767.98px) {
    .about-section-left .nav-tabs {
        justify-content: center;
    }

    .aboutTabbox {
        flex-direction: column;
        padding: 25px 20px;
        gap: 20px;
    }

    .aboutTabbox .image {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .about-section-left .section-title {
        font-size: 2rem;
    }

    .about-section-left .nav-link {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}

/* ======================================== */
/* Service Section Styles */
/* ======================================== */

.service-section {
    background: linear-gradient(to top, #ffffff 40%, #f5f5f7 45%);
    position: relative;
}

.service-box {
    position: relative;
    height: 350px;
    border-radius: 30px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #DADADA;
    transition: all 0.4s ease;
    width: 100%;
    margin: 0 0 10px;
}

.service-box-layout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    background: #ffffff;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-box-layout .service-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    font-family: var(--font-heading);
    margin-bottom: 12px;
    line-height: 1.25;
    width: 85%;
}

.service-box-layout p {
    /* font-size: 0.95rem; */
    /* line-height: 1.6; */
    /* color: var(--text-color); */
    /* margin-bottom: auto; */
    width: 85%;
}

.service-box-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 3;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    transform: scale(1.05);
}

.service-box-hover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.service-box-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* green translucent color overlay */
    z-index: 2;
    background: linear-gradient(360deg, rgba(0, 153, 0, 0.5) 0%, rgba(0, 153, 0, 0.375) 23.35%, rgba(0, 153, 0, 0.25) 44.16%);
}

.service-flex {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 3;
}

.service-box-hover .service-title {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.25;
    padding-right: 15px;
}

/* Service Arrows */
.service-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
    z-index: 10;
}

.service-box-layout .service-arrow {
    background-color: var(--primary-color);
    color: white;
}

.service-box-hover .service-arrow {
    background-color: white;
    color: var(--secondary-color);
}

/* Arrow hover effects */
.service-arrow:hover {
    background-color: var(--secondary-color) !important;
    color: white !important;
    transform: scale(1.15) !important;
    box-shadow: 0 4px 12px rgba(0, 153, 0, 0.3);
}

.service-box-hover .service-arrow:hover {
    background-color: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.15) rotate(-45deg) !important;
    box-shadow: 0 4px 12px rgba(191, 0, 0, 0.3);
}

/* Hover States */
.service-box:hover {
    box-shadow: 0 20px 45px rgba(0, 153, 0, 0.15);
    transform: translateY(-8px);
    border-color: rgba(0, 153, 0, 0.2);
}

.service-box:hover .service-box-layout {
    opacity: 0;
}

.service-box:hover .service-box-hover {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.service-box:hover .service-box-hover .service-arrow {
    transform: scale(1.05) rotate(-45deg);
}

/* Swiper Container Padding to prevent shadow clipping */
.service-swiper {
    /* padding: 15px 15px 30px 15px !important; */
    /* margin: -15px -15px -30px -15px !important; */
}

/* Slider dots below services */
.service-slider-dots {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    margin-top: 2.5rem !important;
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
}

.service-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #DADADA;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.service-slider-dots .dot.active,
.service-slider-dots .dot:hover {
    background-color: var(--secondary-color);
    transform: scale(1.2);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .service-section {
        background: #f5f5f7;
    }

    .service-box {
        max-width: 380px;
        margin: 0 auto;
    }
}

/* ======================================== */
/* Industries We Serve Section Styles       */
/* ======================================== */

.industry-box {
    text-align: center;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
    width: 90%;
    margin: auto;
}

.industry-img {
    width: 100%;
    aspect-ratio: 1.55;
    /* horizontal ellipse ratio */
    border-radius: 270px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.industry-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.industry-title {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--dark-color);
    font-family: var(--font-heading);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.industry-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0 auto;
    max-width: 90%;
}

/* Hover States */
.industry-box:hover .industry-img {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.industry-box:hover .industry-img img {
    transform: scale(1.08);
}

.industry-box:hover .industry-title {
    color: var(--primary-color);
}

/* Center Bottom Button */
.industry-btn {
    display: flex;
    justify-content: center;
    /* margin-top: 3rem; */
}

/* Responsive Overrides for Industries Section */
@media (max-width: 991.98px) {
    .industry-box {
        max-width: 290px;
        margin: 0 auto 2.5rem;
    }
}

/* ======================================== */
/* Testimonial Section Styles               */
/* ======================================== */

.testimonials-section {
    background-color: #f5f5f7;
    position: relative;
    overflow: hidden;
}

.testimonial-wrapper {
    margin-top: 3.5rem;
    padding: 0 50px;
    /* space for absolute navigation arrows */
}

.testimonial-swiper {
    padding: 120px 0 30px 0 !important;
    margin-top: -120px;
    margin-bottom: -30px;
    overflow: hidden !important;
    /* hide adjacent slides horizontally */
}

.testimonials-box-flex {
    position: relative;
    width: 95%;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

/* Background Quote Mark Decoration */
.testimonials-box-flex .bi-quote {
    /* position: absolute; */
    /* left: -40px; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    font-size: 12rem;
    color: rgba(0, 153, 0, 0.08);
    /* light green transparent */
    pointer-events: none;
    z-index: 1;
    line-height: 1;
    flex-shrink: 0;
}

.testimonials-box-content {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

.content-box {
    background: #ffffff;
    border-radius: 30px;
    padding: 40px 110px 40px 40px;
    /* space for the right image overlap */
    width: 80%;
    position: relative;
    z-index: 2;
    box-shadow: 0px 4px 16px 0px #00000026;
}

.content-box p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1rem;
    /* font-style: italic; */
}

.content-box .t-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.content-box .t-desgination {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.testimonial-img {
    width: 28%;
    position: absolute;
    right: 0;
    /* top: 50%; */
    bottom: 0;
    /* transform: translateY(50%); */
    z-index: 3;
    height: 330px;
    /* taller than white box */
    border-bottom-right-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Slider navigation arrows */
.testimonial-prev,
.testimonial-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.testimonial-prev {
    left: 0;
    color: #aaaaaa;
}

.testimonial-next {
    right: 0;
    color: var(--secondary-color);
}

.testimonial-prev:hover {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.15);
}

.testimonial-next:hover {
    color: var(--primary-color);
    transform: translateY(-50%) scale(1.15);
}

/* Testimonial Section Responsive Overrides */
@media (max-width: 991.98px) {
    .testimonial-wrapper {
        padding: 0 20px;
    }

    .testimonial-swiper {
        overflow: hidden;
        /* standard crop on small screens */
    }

    .testimonials-box-content {
        flex-direction: column;
        align-items: center;
    }

    .content-box {
        width: 100%;
        padding: 40px 30px;
        margin-bottom: 25px;
        text-align: center;
    }

    .testimonials-box-flex .bi-quote {
        left: 50%;
        top: 30%;
        transform: translate(-50%, -50%);
        font-size: 10rem;
    }

    .testimonial-img {
        width: 220px;
        height: 220px;
        position: relative;
        right: auto;
        top: auto;
        transform: none;
    }

    .testimonial-prev,
    .testimonial-next {
        top: auto;
        bottom: -20px;
        transform: none;
    }

    .testimonial-prev {
        left: 35%;
    }

    .testimonial-next {
        right: 35%;
    }

    .testimonial-prev:hover,
    .testimonial-next:hover {
        transform: scale(1.15);
    }
}

/* ======================================== */
/* Technology Partners Section Styles       */
/* ======================================== */

.partner-section {
    background-color: #ffffff;
}

.partner-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap;
    gap: 15px;
}

.partner-box {
    background: #ffffff;
    border: 1px solid #DADADA;
    border-radius: 15px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    width: 18%;
    /* 5 items fit horizontally */
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01);
}

.partner-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

/* Hover effect matches mockup green outline */
.partner-box:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0, 153, 0, 0.08);
    transform: translateY(-3px);
}

/* Responsive Breakpoints */
@media (max-width: 991.98px) {
    .partner-box {
        width: 30%;
        /* 3 items in a row */
        height: 85px;
        margin-bottom: 10px;
    }

    .partner-flex {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 575.98px) {
    .partner-box {
        width: 45%;
        /* 2 items in a row */
        padding: 10px 15px;
        height: 75px;
    }

    .partner-flex {
        gap: 15px;
    }
}

/* ======================================== */
/* Blog Section Styles                      */
/* ======================================== */

.blog-section {
    background-color: #f5f5f7;
}

.blog-box {
    /* margin-bottom: 2rem; */
    transition: all 0.3s ease;
}

.blog-img {
    width: 100%;
    aspect-ratio: 1.5;
    /* 3:2 layout */
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 1.25rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    position: relative;
}

.blog-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, rgba(0, 153, 0, 0.5) 0%, rgba(0, 153, 0, 0.375) 23.35%, rgba(0, 153, 0, 0.25) 44.16%);
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.blog-content {
    padding-left: 5px;
}

.blog-content .date {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: capitalize;
    margin-bottom: 8px;
}

.blog-title {
    font-size: 1.3rem;
    font-weight: 600;
    /* changed from 700 to 600 */
    color: var(--dark-color);
    font-family: var(--font-heading);
    line-height: normal;
    transition: color 0.3s ease;
    cursor: pointer;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.blog-read-more i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.blog-read-more:hover {
    color: var(--secondary-color);
}

.blog-read-more:hover i {
    transform: translateX(4px);
}

/* Hover States */
.blog-box:hover .blog-img {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-box:hover .blog-img::before {
    opacity: 1;
    /* green overlay becomes visible */
}

.blog-box:hover .blog-img img {
    transform: scale(1.06);
}

.blog-box:hover .blog-title {
    color: var(--primary-color);
}

.blog-box:hover .blog-read-more {
    color: var(--secondary-color);
}

/* Responsive Overrides */
@media (max-width: 991.98px) {
    .blog-box {
        max-width: 380px;
        margin: 0 auto 2.5rem;
    }
}

/* ======================================== */
/* Footer Section Styles                    */
/* ======================================== */

footer {
    background-color: #ffffff;
    padding-top: 4rem;
}

.footer-top-capsule {
    border: 1px solid #DADADA;
    border-radius: 100px;
    padding: 25px 40px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.footer-top-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-top-info i {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.footer-top-info div span {
    display: block;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--dark-color);
    font-size: 1rem;
    line-height: normal;
    margin-bottom: 2px;
}

.footer-top-info div a {
    font-size: 0.95rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer-top-info div a:hover {
    color: var(--primary-color);
}

.footer-mid-section {
    padding: 4rem 0 3rem 0;
}

.footer-logo img {
    max-width: 170px;
    margin-bottom: 1.5rem;
}

.footer-info p {
    /* font-size: 0.95rem; */
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid var(--dark-color);
    color: var(--dark-color);
    transition: all 0.3s ease;
}

/* Second icon is X, styled green like mockup */
.social-icons a:nth-child(2) {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: white;
}

.social-icons a:hover {
    background-color: var(--dark-color);
    border-color: var(--dark-color);
    color: white;
    transform: translateY(-3px);
}

.social-icons a:nth-child(2):hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.footer-links .footer-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.footer-links p {
    /* font-size: 0.95rem; */
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
}

.footer-links ul li::before {
    position: absolute;
    content: "";
    width: 7px;
    height: 7px;
    background: var(--primary-color);
    border-radius: 100%;
    left: 0;
    top: 10px;
}

.footer-links ul li a {
    /* font-size: 0.95rem; */
    color: var(--text-color);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--secondary-color);
}

/* Subscribe Form Styling */
/* .footer-links form {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #DADADA;
    border-radius: 50px;
    padding: 4px 4px 4px 20px;
    background: #ffffff;
    margin-top: 1.5rem;
    transition: border-color 0.3s ease;
} */

.footer-links form:focus-within {
    border-color: var(--secondary-color);
}

.footer-links form input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.9rem;
    color: var(--dark-color);
    background: transparent;
}

.footer-links form input::placeholder {
    color: #aaaaaa;
}

.subcribe-submit {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.subcribe-submit:hover {
    background-color: var(--primary-color);
    transform: scale(1.05);
}

/* Copyright Section Styles */
.footer-copyright {
    border-top: 1px solid #DADADA;
    padding: 1.5rem 0;
    background-color: #ffffff;
}

.footer-copyright a {
    font-size: 0.9rem;
    color: var(--text-color);
    transition: color 0.3s ease;
}

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

ul.copyright-menu {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    gap: 15px;
    margin: 0;
    padding: 0;
    align-items: center;
}

ul.copyright-menu li {
    position: relative;
}

ul.copyright-menu li+li::before {
    content: '|';
    position: absolute;
    left: -10px;
    color: #DADADA;
}

/* Responsive Footer Overrides */
@media (max-width: 991.98px) {
    .footer-top-capsule {
        border-radius: 30px;
        padding: 30px 20px;
    }

    .footer-top-info {
        margin-bottom: 1.5rem;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .row>div:last-child .footer-top-info {
        margin-bottom: 0;
    }

    .footer-mid-section {
        padding: 2.5rem 0;
    }

    .footer-info {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .footer-info .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        margin-bottom: 2.5rem;
    }

    ul.copyright-menu {
        justify-content: center;
        margin-top: 1rem;
    }
}

/* ======================================== */
/* GSAP Helpers                             */
/* ======================================== */
.animate-heading {
    perspective: 1000px;
}

/* ======================================== */
/* Flatpickr Calendar Styling overrides     */
/* ======================================== */

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-family: var(--font-heading);
}

.flatpickr-calendar {
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #DADADA !important;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
    background: #f5f5f7 !important;
}

/* ======================================== */
/* Custom Dropdown Styling                  */
/* ======================================== */

.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-trigger {
    background-color: #f5f5f7;
    border: 1px solid #eef0f3;
    border-radius: 30px;
    height: 48px;
    padding: 0 20px;
    font-size: 0.9rem;
    color: #555555;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
}

.dropdown-trigger::after {
    content: '';
    position: absolute;
    right: 45px;
    top: 15px;
    height: 18px;
    width: 1px;
    background-color: #d0d0d5;
}

.dropdown-trigger i {
    font-size: 0.8rem;
    color: #666666;
    transition: transform 0.3s ease;
    margin-left: 10px;
    margin-right: 5px;
}

.custom-dropdown.open .dropdown-trigger {
    background-color: #ffffff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 153, 0, 0.15);
}

.custom-dropdown.open .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #DADADA;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.custom-dropdown.open .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-options .option {
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #555555;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.dropdown-options .option:hover {
    background-color: #f5f5f7;

    ul.copyright-menu li {
        position: relative;
    }

    ul.copyright-menu li+li::before {
        content: '|';
        position: absolute;
        left: -10px;
        color: #DADADA;
    }
}

/* Responsive Footer Overrides */
@media (max-width: 991.98px) {
    .footer-top-capsule {
        border-radius: 30px;
        padding: 30px 20px;
    }

    .footer-top-info {
        margin-bottom: 1.5rem;
        justify-content: flex-start;
        padding-left: 20px;
    }

    .row>div:last-child .footer-top-info {
        margin-bottom: 0;
    }

    .footer-mid-section {
        padding: 2.5rem 0;
    }

    .footer-info {
        text-align: center;
        margin-bottom: 2.5rem;
    }

    .footer-info .footer-logo img {
        margin-left: auto;
        margin-right: auto;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-links {
        margin-bottom: 2.5rem;
    }

    ul.copyright-menu {
        justify-content: start;
        margin-top: 1rem;
    }
}

/* ======================================== */
/* GSAP Helpers                             */
/* ======================================== */
.animate-heading {
    perspective: 1000px;
}

/* ======================================== */
/* Flatpickr Calendar Styling overrides     */
/* ======================================== */

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover,
.flatpickr-day.selected.prevMonthDay,
.flatpickr-day.startRange.prevMonthDay,
.flatpickr-day.endRange.prevMonthDay,
.flatpickr-day.selected.nextMonthDay,
.flatpickr-day.startRange.nextMonthDay,
.flatpickr-day.endRange.nextMonthDay {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
}

.flatpickr-months .flatpickr-month,
.flatpickr-current-month .flatpickr-monthDropdown-months {
    font-family: var(--font-heading);
}

.flatpickr-calendar {
    border-radius: 15px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #DADADA !important;
}

.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
    background: #f5f5f7 !important;
}

/* ======================================== */
/* Custom Dropdown Styling                  */
/* ======================================== */

.custom-dropdown {
    position: relative;
    width: 100%;
}

.dropdown-trigger {
    background-color: #f5f5f7;
    border: 1px solid #eef0f3;
    border-radius: 30px;
    height: 48px;
    padding: 0 20px;
    font-size: 0.9rem;
    color: #555555;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    position: relative;
}

.dropdown-trigger::after {
    content: '';
    position: absolute;
    right: 45px;
    top: 15px;
    height: 18px;
    width: 1px;
    background-color: #d0d0d5;
}

.dropdown-trigger i {
    font-size: 0.8rem;
    color: #666666;
    transition: transform 0.3s ease;
    margin-left: 10px;
    margin-right: 5px;
}

.custom-dropdown.open .dropdown-trigger {
    background-color: #ffffff;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 153, 0, 0.15);
}

.custom-dropdown.open .dropdown-trigger i {
    transform: rotate(180deg);
}

.dropdown-options {
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    background: #ffffff;
    border: 1px solid #DADADA;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    overflow: hidden;
}

.custom-dropdown.open .dropdown-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-options .option {
    padding: 12px 20px;
    font-size: 0.9rem;
    color: #555555;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}

.dropdown-options .option:hover {
    background-color: #f5f5f7;
    color: var(--secondary-color);
}

.dropdown-options .option.active {
    background-color: rgba(0, 153, 0, 0.08);
    color: var(--secondary-color);
    font-weight: 600;
}

/* =========================== Inner Pages Css =========================== */

.inner-banner {
    position: relative;
    padding: 170px 0 100px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--dark-color);
    overflow: hidden;
}

.inner-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(245, 247, 250, 0.95) 100%);
    z-index: 1;
    opacity: .9;
}

.inner-banner .container {
    position: relative;
    z-index: 2;
}

.inner-banner .section-title {
    color: var(--dark-color);
    font-size: 3.2rem;
    font-weight: 700;
}

.inner-banner .subtitle {
    color: var(--text-color);
}

.inner-banner .subtitle span {
    /* color: var(--secondary-color); */
}

/* Custom Premium Breadcrumbs */
.inner-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 1.5rem 0 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.inner-banner .breadcrumb-item {
    font-size: 0.95rem;
    font-weight: 500;
    color: #777777;
    display: flex;
    align-items: center;
}

.inner-banner .breadcrumb-item a {
    color: #777777;
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-banner .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.inner-banner .breadcrumb-item+.inner-banner .breadcrumb-item::before {
    display: none;
    /* Hide default bootstrap separator */
}

.inner-banner .breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}

.inner-banner .breadcrumb-item+.breadcrumb-item::before {
    content: '\F285';
    /* Bootstrap icon chevron right */
    font-family: "bootstrap-icons";
    font-size: 0.75rem;
    color: #cccccc;
    margin-right: 8px;
    padding-right: 0;
}

.inner-banner .breadcrumb-item.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* ======================================== */
/* Founder Story Section                    */
/* ======================================== */
.founder-img-wrapper {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.founder-img-wrapper img {
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    width: 100%;
    position: relative;
    z-index: 2;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.founder-img-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 90%;
    height: 90%;
    border-radius: 30px;
    border: 5px solid var(--secondary-color);
    z-index: 1;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.founder-img-wrapper:hover img {
    transform: scale(1.03) translate(-5px, -5px);
}

.founder-img-wrapper:hover::before {
    transform: translate(5px, 5px);
}

.founder-badge {
    position: absolute;
    left: -20px;
    bottom: 40px;
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    z-index: 3;
    border: 1px solid #eef0f3;
    max-width: 230px;
    animation: floatBadge 3s ease-in-out infinite alternate;
    text-align: center;
}

@keyframes floatBadge {
    0% { transform: translateY(0); }
    100% { transform: translateY(-8px); }
}

.founder-badge .badge-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 5px;
}

.founder-badge .badge-lbl {
    /* font-size: 0.75rem; */
    /* font-weight: 600; */
    color: var(--dark-color);
    line-height: 1.3;
}

/* ======================================== */
/* Company Milestones (Timeline)            */
/* ======================================== */
.milestones-section {
    background-color: #f5f5f7;
}

.timeline {
    position: relative;
    padding-left: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: #e1e4e8;
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid var(--secondary-color);
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(0, 153, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-item:hover .timeline-dot {
    background: var(--secondary-color);
    box-shadow: 0 0 0 6px rgba(0, 153, 0, 0.25);
    transform: scale(1.15);
}

.timeline-year {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
    line-height: 1;
}

.timeline-content {
    background: #ffffff;
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    border: 1px solid #eef0f3;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(0, 153, 0, 0.06);
}

.timeline-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* ======================================== */
/* Mission & Vision Section                 */
/* ======================================== */
.mv-card {
    background: #ffffff;
    border: 1px solid #eef0f3;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.mv-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 40px rgba(0, 153, 0, 0.06);
}

.mv-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
    transition: transform 0.4s ease, color 0.4s ease;
}

.mv-card:hover .mv-icon {
    /* transform: scale(1.2); */
    color: var(--secondary-color);
}

.mv-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.mv-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* ======================================== */
/* Core Values Section (Original values)    */
/* ======================================== */
.value-card {
    background-color: #ffffff;
    border: 1px solid #eef0f3;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    text-align: center;
    height: 100%;
}

.value-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 153, 0, 0.08);
}

.value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(0, 153, 0, 0.08);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px auto;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* ======================================== */
/* Team Section (Swiper)                    */
/* ======================================== */
.team-section {
    background-color: #f5f5f7;
    overflow: hidden;
}

.team-card {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    margin: 1rem 0;
}

.team-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(0, 153, 0, 0.06);
    transform: translateY(-5px);
}

.team-img-wrapper {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 25px auto;
}

.team-img {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    object-position: top;
    /* border: 3px solid #ffffff; */
    box-shadow: 0 5px 15px rgb(0 0 0 / 14%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.team-logo-icon {
    display: none;
    position: absolute;
    bottom: 0;
    right: -55px;
    width: 105px;
    height: auto;
    background: white;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 2px solid #ffffff; */
    /* box-shadow: 0 3px 8px rgba(0,0,0,0.15); */
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    padding: 6px;
    display: none;
}

.team-card:hover .team-img {
    transform: scale(1.08);
}

.team-card:hover .team-logo-icon {
    /* background-color: var(--primary-color); */
    transform: scale(1.15);
}

.team-logo-icon img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* filter: brightness(0) invert(1); */
}

.team-name {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.team-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.team-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.team-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 2.5rem;
}

.team-slider-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cccccc;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-slider-dots .dot.active {
    background: var(--secondary-color);
    width: 25px;
    border-radius: 10px;
}

/* ======================================== */
/* High-Converting CTA & Transformation     */
/* ======================================== */
.cta-transformation-section {
    background-color: #ffffff;
    position: relative;
    border-top: 1px solid #eee;
}

.transformation-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--font-heading);
    margin-bottom: 1.2rem;
}

.transformation-card h3 span {
    color: var(--primary-color);
}

.badge-tag {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(0, 153, 0, 0.08);
    color: var(--secondary-color);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.lead-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-color);
}

.trust-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.trust-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: rgba(191, 0, 0, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.trust-details h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.trust-details p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

/* Guarantee Box */
.guarantee-box {
    background: #ffffff;
    border: 1px solid #eef0f3;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.guarantee-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background-color: var(--secondary-color);
}

.guarantee-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.guarantee-header i {
    font-size: 2.2rem;
    color: var(--secondary-color);
    line-height: 1;
}

.guarantee-header h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--font-heading);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.guarantee-box p {
    font-size: 1.1rem;
    font-style: italic;
    color: #444444;
    line-height: 1.7;
    margin-bottom: 25px;
}

.guarantee-author {
    display: flex;
    flex-direction: column;
}

.guarantee-author strong {
    font-size: 1rem;
    color: var(--dark-color);
}

.guarantee-author span {
    font-size: 0.85rem;
    color: #777777;
    margin-top: 2px;
}

/* Premium CTA Banner Box */
.cta-banner-box {
    background: linear-gradient(135deg, var(--dark-color) 0%, rgba(0, 45, 0, 0.95) 100%);
    border-radius: 30px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(0, 50, 0, 0.15);
    margin-top: 3rem;
}

.cta-banner-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 153, 0, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    top: -150px;
    right: -100px;
    pointer-events: none;
}

.cta-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 25px;
}

.cta-features span {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 576px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: flex-end;
        align-items: center;
    }
}

.cta-btn {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #d10000 !important;
    border-color: #d10000 !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(191, 0, 0, 0.3);
}

.cta-phone-btn {
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 50px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: transparent !important;
    text-decoration: none;
}

.cta-phone-btn:hover {
    border-color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
    color: #ffffff !important;
}/* ======================================== */
/* Services Process Steps Section           */
/* ======================================== */
.process-section {
    background-color: #f5f5f7;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.process-step {
    background: #ffffff;
    border: 1px solid #eef0f3;
    padding: 50px 30px 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    position: relative;
    height: 100%;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(0, 153, 0, 0.06);
}

.step-num {
    position: absolute;
    top: -25px;
    left: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--dark-color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    border: 4px solid #f5f5f7;
    transition: all 0.3s ease;
}

.process-step:hover .step-num {
    background-color: var(--secondary-color);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 12px;
    margin-top: 10px;
    font-family: var(--font-heading);
}

.step-desc {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

/* ======================================== */
/* FAQ Accordion Section                    */
/* ======================================== */
.faq-section {
    background-color: #ffffff;
}

.faq-accordion .accordion-item {
    border: 1px solid #eef0f3 !important;
    border-radius: 15px !important;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(0, 153, 0, 0.04);
}

.faq-accordion .accordion-button {
    padding: 20px 25px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
    background-color: #ffffff !important;
    box-shadow: none !important;
    font-family: var(--font-heading);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--secondary-color);
    border-bottom: 1px solid #eee;
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666666'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    background-size: 1.1rem;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009900'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E") !important;
    transform: rotate(-180deg);
}

.faq-accordion .accordion-body {
    padding: 22px 25px;
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fafbfc;
}

/* ======================================== */
/* Service Detail Alternate Sections        */
/* ======================================== */
.alt-section {
    padding: 4.5rem 0;
}

.alt-section:nth-of-type(even) {
    background-color: #fcfdfe;
}

.alt-img {
    position: relative;
    padding: 10px;
}

.alt-img img {
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.04);
    width: 100%;
    transition: transform 0.4s ease;
}

.alt-img:hover img {
    transform: scale(1.02);
}

.alt-content {
    padding: 15px;
}

.alt-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--font-heading);
    margin-bottom: 1.2rem;
    line-height: 1.2;
}

.alt-content h3 span {
    color: var(--primary-color);
}

.alt-content p {
    /* font-size: 1rem; */
    /* color: var(--text-color); */
    /* line-height: 1.6; */
    /* margin-bottom: 1.5rem; */
}

/* Service Detail Sidebar Widget           */
.service-sidebar {
    background: #ffffff;
    border: 1px solid #eef0f3;
    padding: 35px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    font-family: var(--font-heading);
    border-bottom: 2px solid #eef0f3;
    padding-bottom: 10px;
}

.sidebar-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.sidebar-features li {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-features li i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.sidebar-cta-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, rgba(0, 80, 0, 0.9) 100%);
    border-radius: 20px;
    padding: 25px;
    color: #ffffff;
    text-align: center;
}

.sidebar-cta-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    color: white;
}

.sidebar-cta-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 15px;
    line-height: 1.4;
}

.sidebar-phone {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    color: var(--secondary-color);
    font-weight: 700;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.sidebar-phone:hover {
    background: var(--dark-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* ======================================== */
/* Industry Detailed Cards Styles           */
/* ======================================== */
.industry-page-section {
    background-color: #ffffff;
}

.industry-detail-card {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.industry-detail-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(0, 153, 0, 0.06);
}

.ind-card-img {
    height: 100%;
    min-height: 220px;
    overflow: hidden;
    position: relative;
}

.ind-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.industry-detail-card:hover .ind-card-img img {
    transform: scale(1.05);
}

.ind-card-body {
    padding: 30px;
}

.ind-card-body h4 {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.ind-card-body p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 25px;
}

.ind-contact-btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 8px 20px;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.ind-contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(191, 0, 0, 0.1);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

/* ======================================== */
/* Interactive Before-After Slider          */
/* ======================================== */
.ba-card-wrapper {
    /* background: #ffffff; */
    /* border: 1px solid #eef0f3; */
    /* padding: 15px; */
    border-radius: 25px;
    box-shadow: 0 10px 30px rgb(0 0 0 / 12%);
    transition: all 0.3s ease;
}

.ba-card-wrapper:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
}

.ba-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 18px;
    overflow: hidden;
}

.ba-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transition: none;
}

.ba-before-img {
    z-index: 1;
}

.ba-after-img {
    z-index: 2;
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.ba-range-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    outline: none;
    margin: 0;
    z-index: 5;
    cursor: ew-resize;
    -webkit-appearance: none;
    appearance: none;
}

/* Make range tracks take up 100% height to ensure full card drag area */
.ba-range-slider::-webkit-slider-runnable-track {
    height: 100%;
    background: transparent;
}

.ba-range-slider::-moz-range-track {
    height: 100%;
    background: transparent;
}

/* Chrome/Safari range track/thumb */
.ba-range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    height: 100%;
    background: transparent;
    cursor: ew-resize;
}

/* Firefox range track/thumb */
.ba-range-slider::-moz-range-thumb {
    width: 40px;
    height: 100%;
    background: transparent;
    cursor: ew-resize;
    border: none;
}

.ba-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: #ffffff;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.ba-handle::after {
    content: '\F22C'; /* bi-arrow-left-right */
    font-family: 'bootstrap-icons';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 36px;
    height: 36px;
    background: white;
    color: #585858;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 3px 8px rgba(0,0,0,0.25);
    border: 2px solid #ffffff;
}

.ba-badge {
    position: absolute;
    bottom: 15px;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    border-radius: 6px;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    backdrop-filter: brightness(0.5);
}

.before-lbl {
    right: 15px;
    /* background-color: var(--primary-color); */
}

.after-lbl {
    left: 15px;
    /* background-color: var(--secondary-color); */
}

/* ======================================== */
/* Testimonials Hover Improvements          */
/* ======================================== */
.content-box {
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.testimonials-box-flex:hover .content-box {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 153, 0, 0.08) !important;
}

.testimonial-img {
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.testimonials-box-flex:hover .testimonial-img {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15) !important;
}

/* ======================================== */
/* Alternating (Odd/Even) Testimonial Grid  */
/* ======================================== */
.testimonials-page-section .testimonials-box-flex {
    margin-bottom: 5.5rem !important; /* spacious spacing between cards */
}

.testimonials-page-section .testimonials-box-flex:last-child {
    margin-bottom: 0 !important;
}

.testimonials-page-section .testimonials-box-flex:nth-child(even) {
    flex-direction: row-reverse;
}

.testimonials-page-section .testimonials-box-flex:nth-child(even) i {
    transform: scaleX(-1);
}

/* Mirrored layout for even index items on desktop */
@media (min-width: 992px) {
    .testimonials-page-section .testimonials-box-flex:nth-of-type(even) .content-box {
        margin-left: auto;
        margin-right: 0;
        padding: 40px 40px 40px 110px; /* shift padding spacing to the left */
    }

    .testimonials-page-section .testimonials-box-flex:nth-of-type(even) .testimonial-img {
        left: 0;
        right: auto;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 30px;
    }

    .testimonials-page-section .testimonials-box-flex:nth-of-type(even) .bi-quote {
        /* right: -40px; */
        /* left: auto; */
    }
}
/* ======================================== */
/* Blog Detail Typography & Layout          */
/* ======================================== */
.blog-post-img {
    border-radius: 25px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.blog-post-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 25px;
    font-size: 0.9rem;
    color: #666666;
    border-bottom: 1px solid #eef0f3;
    padding-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    color: var(--primary-color);
}

.blog-body h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.blog-body h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 1.8rem;
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
}

.blog-body p {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.blog-body ul, .blog-body ol {
    margin-bottom: 1.5rem;
    padding-left: 20px;
}

.blog-body li {
    font-size: 1rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 8px;
    list-style: inherit;
}

.blog-body blockquote {
    border-left: 5px solid var(--secondary-color);
    padding: 15px 25px;
    margin: 30px 0;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--dark-color);
    background-color: #fafbfc;
    border-radius: 0 15px 15px 0;
}

/* Sidebar Recent Posts Widget */
.sidebar-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-posts-list li {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eef0f3;
}

.sidebar-posts-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-posts-list a {
    color: var(--dark-color);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    display: block;
    transition: color 0.3s ease;
    font-family: var(--font-heading);
    margin-bottom: 5px;
}

.sidebar-posts-list a:hover {
    color: var(--primary-color);
}

.sidebar-post-date {
    font-size: 0.8rem;
    color: #888888;
}

/* ======================================== */
/* Contact Page Styles                      */
/* ======================================== */
.contact-info-wrapper {
    padding-right: 20px;
}

.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: rgba(0, 153, 0, 0.08);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-info-list li:hover .contact-info-icon {
    background-color: var(--secondary-color);
    color: #ffffff;
    transform: scale(1.08);
}

.contact-info-text h5 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.contact-info-text p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.contact-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fafbfc;
    border: 1px solid #eef0f3;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-socials a:hover {
    background-color: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

/* Contact Form Card */
.contact-form-card {
    background: #ffffff;
    border: 1px solid #eef0f3;
    padding: 50px 40px;
    border-radius: 30px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
}

/* Map Wrapper */
.map-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef0f3;
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}
/* ======================================== */
/* Career Page Styles                       */
/* ======================================== */
.job-opening-card {
    background: #ffffff;
    border: 1px solid #eef0f3;
    padding: 35px;
    border-radius: 25px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.job-opening-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 15px 35px rgba(0, 153, 0, 0.05);
}

.job-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.job-tags span {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    background-color: #f5f5f7;
    color: #555555;
}

.job-tags span.job-type {
    background-color: rgba(0, 153, 0, 0.08);
    color: var(--secondary-color);
}

.job-requirements {
    list-style: none;
    padding: 0;
    margin: 15px 0 25px 0;
}

.job-requirements li {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.job-requirements li i {
    color: var(--primary-color);
}

.job-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    font-family: var(--font-heading);
    margin-bottom: 10px;
}

/* File Upload Field Styling */
.file-upload-input {
    background-color: #fafbfc !important;
    border: 1px dashed #eef0f3 !important;
    border-radius: 12px !important;
    padding: 15px !important;
    font-size: 0.9rem !important;
    color: var(--text-color) !important;
    height: auto !important;
}

.btn-primary {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}







.navbar-flex{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
    position:relative;
}

.logo img{
    max-width:180px;
    width:100%;
}

.menu-main{
    display:flex;
    align-items:center;
    gap:40px;
}

.menus-ul{
    display:flex;
    align-items:center;
    gap:30px;
    list-style:none;
    margin:0;
    padding:0;
}

.menus-ul li{
    list-style:none;
}

.menus-ul li a{
    text-decoration:none;
    color:#222;
    font-weight:500;
}

.web-btn a{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:12px 24px;
    background:#000;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
}

.menu-toggle{
    display:none;
    width:45px;
    height:45px;
    border:none;
    background:none;
    cursor:pointer;
    padding:0;
}

.menu-toggle span{
    display:block;
    width:28px;
    height:3px;
    background:#000;
    margin:6px auto;
    transition:.35s;
}

.menu-toggle.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

/* Tablet */
@media (max-width: 991px) {
    h1 {
        font-size: 46px !important;
    }

    h2 {
        font-size: 38px !important;
    }

    h3 {
        font-size: 32px !important;
    }

    h4 {
        font-size: 28px !important;
    }

    h5 {
        font-size: 22px !important;
    }

    h6 {
        font-size: 18px !important;
    }

    p {
        font-size: 15px !important;
    }
}


/* Mobile */
@media (max-width: 767px) {
    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 30px !important;
    }

    h3 {
        font-size: 26px !important;
    }

    h4 {
        font-size: 22px !important;
    }

    h5 {
        font-size: 20px !important;
    }

    h6 {
        font-size: 18px !important;
    }

    p {
        font-size: 15px !important;
        line-height: 1.6;
    }
	
	.section-padding {
    	padding: 2rem 0;
	}
	
	.about-section-right .text {
		padding: 12px 20px;
		left: 35px;
	}
	
	.alt-img img{
    	padding: inherit;
	}
	
	.alt-content {
        padding: revert-rule;
    }
}

@media (max-width:1120px){
	
	.menus-ul {
		gap: 5px;
	}
}


.alt-img img {
    max-height: 450px;
    object-fit: cover;
}

.alt-section .alt-content ul li{
	list-style: disc;
}

.alt-section .alt-content ul{
	padding-left: 1.2rem;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner.w-100.btn{
	    padding: 12px 25px;
    border-radius: 50px;
    background: var(--secondary-color);
    color: white;
    border: none;
    font-weight: 600;
}

.footer-links form p{
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #DADADA;
    border-radius: 50px;
    padding: 4px 4px 4px 20px;
    background: #ffffff;
    margin-top: 1.5rem;
    transition: border-color 0.3s ease;
}

@media (max-width:991px){
	
	
.header{
    position: relative;
    z-index: 999;
    background:#fff;
}
	
	.inner-banner .section-title,
	.section-title{
		font-size: 2.2rem;
	}

    .menu-toggle{
        display:block;
    }

    .menu-main{
        display:none;
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#fff;
        padding:20px;
        z-index:999;
        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .menu-main.active{
        display:block;
    }

    .menus-ul{
        display:flex;
        flex-direction:column;
        gap:15px;
        padding:0;
        margin:0;
    }

    .menus-ul li{
        list-style:none;
    }

    .web-btn{
        margin-top:20px;
    }
	
	.logo {
    	width: auto;
	}
	
	ul.menus-ul {
		background: white;
	}
	
	.menu-main {
        background: none;
        padding: 0;
        box-shadow: none;
    }
	
	.menu-main .web-btn {
        margin-top: 0;
        background: white;
        text-align: center;
    }
	
	.testimonials-box-flex {
		position: relative;
		width: 100%;
		margin: 0 auto;
		display: block;
		align-items: center;
	}
	
	.inner-banner {
    	position: relative;
		padding: 60px 0;
	}
	
	.row.g-0.align-items-center.h-100 {
    	height: auto !important;
	}
	
}

@media(max-width:575px){

    .logo img{
        max-width:150px;
    }

    .navbar-flex{
        min-height:70px;
    }
	
	.section-padding {
    	padding: 2rem 0;
	}

}

.menus-ul > li{
    position:relative;
}

.menus-ul .menu-item-has-children > ul{
    position:absolute;
    top:120%;
    left: -50px;
    min-width:280px;
    background:#fff;
    padding:10px 0;
    margin:0;
    list-style:none;
    border-radius:10px;
    box-shadow:0 15px 35px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;
    transform:translateY(15px);
    transition:.35s;
    z-index:999;
}

.menus-ul .menu-item-has-children:hover > ul{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
    top:100%;
}

.menus-ul .menu-item-has-children ul li a{
    display:block;
    padding:12px 20px;
    color:#222;
    text-decoration:none;
}

.menus-ul .menu-item-has-children ul li a:hover{
    background:#f5f5f5;
}

@media (max-width: 991.98px) {
    .industry-box {
        max-width: 500px;
        margin: 0 auto 2.5rem;
    }
}

@media(max-width:991px){

.menu-item-has-children{
    position:relative;
}
	
	.menus-ul .menu-item-has-children:hover > ul {
    overflow-x: hidden;
}
	
	.menus-ul .menu-item-has-children > ul{
		max-height: 250px;
		overflow-y: auto;
		overflow-x: hidden;
	}

/* Arrow */
.menu-item-has-children>.dropdown-toggle{
    position:absolute;
    right: -30px;
    top:0;
    width:45px;
    height:45px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:18px;
}

/* Hide submenu */
.menu-item-has-children>ul{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    box-shadow:none;
    background:none;
    min-width:100%;
    padding-left:15px;
}

/* Open */
.menu-item-has-children.active>ul{
    display:block;
}

.menu-item-has-children.active>.dropdown-toggle{
    transform:rotate(180deg);
}
}


@media(min-width:992px){

.dropdown-toggle{
    display:none;
}

.menu-item-has-children>ul{
    display:block !important;
}

}