:root {
    --primary-color: #0c6e6d;
    --primary-color-2: #4d43f9;
    --secondary-color: #0b4b4b;
    --secondary-color-2: #0a1630;
    --heading-color: #063232;
    --heading-color-2: #09162f;
    --text-color: #a3b7b7;
    --text-color-2: #6b7a7a;
    --body-bg: #e0f1df;
    --dark-bg: #083c3c;
    --body-bg-2: #063232;
    --body-bg-3: #0c6d6d;
    --body-bg-4: #f4f8f9;
    --border-color: #e6eaea;
    --border-color-2: rgba(255, 255, 255, 0.2);
    --dark-bg-2: #093c3d;
    --dark-bg-3: #0a4243;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body.dark-theme {
    font-family: 'Fira Sans', sans-serif;
    overflow-x: hidden;
    background: var(--body-bg-2);
    color: #fff;
}

.text-dark {
	color: #063232 !important;
}
/*
.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}*/

/* Header Classic Styles */
.header-area.header-classic {
    background: url('../public/images/banner.jpg') center top/cover no-repeat;
    position: absolute;
    z-index: 1000;
    width: 100%;
    padding: 15px 0px 0;
    display: flex;
    align-items: center;
    top: 0;
    left: 0;
}

.header-area.header-classic.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: url('../public/images/banner.jpg') center top/cover no-repeat;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 0px 0;
    animation: headerSlideDown 0.5s ease-in-out;
}

/* Scroll Down - White Navbar */
.header-area.header-classic.is-sticky.navbar-scroll-down {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.header-area.header-classic.is-sticky.navbar-scroll-down .navbar-nav .nav-link {
    color: var(--heading-color);
}

.header-area.header-classic.is-sticky.navbar-scroll-down .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.header-area.header-classic.is-sticky.navbar-scroll-down .header-btn {
    color: var(--heading-color);
}

.header-area.header-classic.is-sticky.navbar-scroll-down .header-btn::before {
    background: var(--primary-color);
}

.header-area.header-classic.is-sticky.navbar-scroll-down .menu-bar span,
.header-area.header-classic.is-sticky.navbar-scroll-down .navbar-toggler.menu-bar span {
    background: var(--heading-color) !important;
}

.header-area.header-classic.is-sticky.navbar-scroll-down .light-btn a {
    color: var(--heading-color);
}

/* Scroll Up - Dark Navbar */
.header-area.header-classic.is-sticky.navbar-scroll-up {
    background: #0a4243;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.header-area.header-classic.is-sticky.navbar-scroll-up .navbar-nav .nav-link {
    color: #fff;
}

.header-area.header-classic.is-sticky.navbar-scroll-up .header-btn {
    color: #fff;
}

.header-area.header-classic.is-sticky.navbar-scroll-up .menu-bar span,
.header-area.header-classic.is-sticky.navbar-scroll-up .navbar-toggler.menu-bar span {
    background: #fff !important;
}

.header-area.header-classic.is-sticky.navbar-scroll-up .light-btn a {
    color: #fff;
}

@keyframes headerSlideDown {
    from {
        margin-top: -150px;
    }
    to {
        margin-top: 0;
    }
}

.header-logo-img {
    max-height: 45px;
    transition: opacity 0.3s ease;
}

.navbar-brand {
    position: relative;
    display: inline-block;
    line-height: 1;
}

.header-logo-dark,
.header-logo-light {
    display: block;
    transition: opacity 0.3s ease;
    max-height: 45px;
    width: auto;
}

.navbar-brand .d-none {
    display: none !important;
}

.header-classic .navbar-nav .nav-link {
    color: #fff;
    font-weight: 400;
    padding: 20px 18px;
    transition: all 0.3s;
    position: relative;
    font-size: 17px;
}

.header-classic .navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: 0 8px 24px rgba(149, 157, 165, 0.4);
    border-top: 3px solid var(--primary-color);
    border-radius: 4px;
    padding: 0;
}

.navbar-nav .dropdown-item {
    padding: 15px 24px;
    border-bottom: 1px solid var(--primary-color);
    text-transform: uppercase;
    font-size: 14px;
    transition: all 0.5s;
    position: relative;
}

.navbar-nav .dropdown-item:hover {
    background: var(--primary-color);
    color: #fff;
}

.header-btn {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.header-btn::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 26px;
    height: 2px;
    background: #557570;
    transition: all 0.5s;
}

.header-btn:hover::before {
    width: 100%;
}

.light-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -27px;
    transform: translateY(-50%);
    height: 80px;
    width: 1px;
    background: var(--heading-color);
    opacity: 0.1;
}

.menu-bar {
    background: none;
    border: none;
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    visibility: visible !important;
    opacity: 1 !important;
}

.menu-bar span,
.navbar-toggler.menu-bar span {
    display: block !important;
    height: 2px;
    background: #fff;
    width: 22px;
    border-radius: 30px;
    transition: all 0.5s;
    visibility: visible !important;
    opacity: 1 !important;
}

.menu-bar span:nth-child(2),
.navbar-toggler.menu-bar span:nth-child(2) {
    width: 16px;
}

.menu-bar span:nth-child(3),
.navbar-toggler.menu-bar span:nth-child(3) {
    width: 20px;
}

.menu-bar:hover span,
.navbar-toggler.menu-bar:hover span {
    background: var(--primary-color);
}

.navbar-toggler.menu-bar {
    border: none;
    outline: none;
    box-shadow: none;
    padding: 8px;
}

.navbar-toggler.menu-bar:focus {
    box-shadow: none;
    outline: none;
}

/* Hide navbar-toggler on desktop/laptop (≥992px) */
@media (min-width: 992px) {
    .navbar-expand-lg .navbar-toggler,
    .navbar-expand-lg .navbar-toggler.menu-bar {
        display: none !important;
    }
}

/* Show navbar-toggler on mobile/tablet (<992px) */
@media (max-width: 991px) {
    .navbar-expand-lg .navbar-toggler.menu-bar {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
}

/* Offcanvas Styles */
.offcanvas {
    background-color: #053131;
    color: #fff;
    width: 300px !important;
    max-width: 85vw;
}

.offcanvas-header {
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas-logo {
    max-height: 40px;
}

.offcanvas-body {
    padding: 20px;
    overflow-y: auto;
}

.offcanvas .nav-link {
    color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    transition: all 0.3s;
    display: block;
}

.offcanvas .nav-link:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.offcanvas-contact-info h5 {
    font-size: 24px;
    margin-bottom: 30px;
    color: #fff;
}

.offcanvas-contact-info ul {
    list-style: none;
}

.offcanvas-contact-info ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.offcanvas-contact-info ul li i {
    color: var(--primary-color);
}

.offcanvas-contact-info ul li a {
    color: #fff;
    text-decoration: none;
}

.offcanvas-contact-info ul li a:hover {
    color: var(--primary-color);
}

.navbar-collapse {
    flex-grow: 0 !important;
}

/* Banner Dark Section */
.banner-section-dark {
    background: url('../public/images/banner.jpg') center/cover no-repeat;
    height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

@media (min-width: 576px) {
    .banner-section-dark {
        height: 700px;
    }
}

@media (min-width: 768px) {
    .banner-section-dark {
        height: 1240px;
    }
}

@media (min-width: 992px) {
    .banner-section-dark {
        height: 600px;
    }
}

@media (min-width: 1200px) {
    .banner-section-dark {
        height: 548px;
    }
}

@media (min-width: 1400px) {
    .banner-section-dark {
		padding-top:10px;
        height: 720px;
    }
}

.banner-title {
    font-size: 30px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 22px;
    margin-top: 20px;
}

@media (min-width: 576px) {
    .banner-title {
        font-size: 46px;
       
    }
}

@media (min-width: 768px) {
    .banner-title {
        font-size: 68px;
    }
}

@media (min-width: 992px) {
    .banner-title {
        font-size: 50px;
    }
}

@media (min-width: 1200px) {
    .banner-title {
        font-size: 54px;
    }
}

@media (min-width: 1400px) {
    .banner-title {
        font-size: 56px;
    }
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 0;
    border: solid 6px #faa428;
    border-color: #faa428 #fff0 #fff0 #fff0;
    border-radius: 90% / 60px 0 0 0;
    z-index: -1;
}

.banner-desc {
    color: var(--text-color);
    padding-top: 20px;
    margin-bottom: 38px;
    font-size: 18px;
}

.banner-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
    position: relative;
}

.banner-dark-img {
    margin-bottom: -125px;
    width: 100%;
    height: auto;
    max-width: none;
    object-fit: contain;
    position: relative;
    display: block;
}

@media (min-width: 768px) {
    .banner-dark-img {
        margin-bottom: -96px;
        width: 91.666667%;
    }
}

@media (min-width: 992px) {
    .banner-dark-img {
        margin-bottom: -96px;
        width: 91.666667%;
    }
}

@media (min-width: 1200px) {
    .banner-dark-img {
        margin-bottom: -150px;
        left: 124px;
        width: inherit;
        max-width: inherit;
        position: relative;
    }
}

@media (min-width: 1400px) {
    .banner-dark-img {
        max-width: inherit;
    }
}

@media (max-width: 767px) {
    .banner-section-dark .row {
        margin-top: 20px !important;
    }
    
    .banner-image-wrapper {
        justify-content: center;
        margin-top: 30px;
    }
    
    .banner-dark-img {
        margin-bottom: 0;
        width: 100%;
        max-width: 100%;
    }
}

.banner-shape {
    position: absolute;
    top: 96px;
    left: 75%;
    transform: translateX(-50%);
    animation: rotational 10s linear infinite;
    z-index: -1;
}

@media (min-width: 768px) {
    .banner-shape {
        left: 75%;
    }
}

@media (min-width: 992px) {
    .banner-shape {
        left: 45%;
    }
}

@media (min-width: 1400px) {
    .banner-shape {
        top: 154px;
    }
}

@keyframes rotational {
    from {
        transform: translateX(-50%) rotate(0deg);
    }
    to {
        transform: translateX(-50%) rotate(360deg);
    }
}

/* Primary Button */
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 40px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.5s;
    z-index: 1;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: -5px;
    width: 0;
    height: 100%;
    background: var(--heading-color);
    transform: skewX(-25deg);
    transition: all 0.5s;
    z-index: -1;
}

.primary-btn::after {
    content: '';
    position: absolute;
    bottom: 17px;
    left: 40px;
    width: 26px;
    height: 2px;
    background: #86b6b6;
    z-index: 10;
}

.primary-btn:hover {
    color: #fff;
}

.primary-btn:hover::before {
    width: 125%;
    left: -5px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.section-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 0;
}

@media (min-width: 576px) {
    .section-title {
        font-size: 25px;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 30px;
    }
    .service-section-dark {
        padding: 25px 0;
    }
}

@media (min-width: 992px) {
    .section-title {
        font-size: 38px;
    }
}

@media (min-width: 1200px) {
    .section-title {
        font-size: 42px;
    }
}

.feature-box-dark {
    background: var(--dark-bg-3);
    padding: 40px 30px;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s;
    height: 100%;
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-box-dark h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.feature-box-dark p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.feature-box-dark .service-sublist {
    margin-top: 15px;
    margin-bottom: 0;
}

.feature-box-dark .service-sublist li {
    padding: 6px 0;
    font-size: 15px;
}

.feature-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.feature-link:hover {
    gap: 12px;
}

/* Feature Dark Section */
.feature-section-dark {
    background: var(--dark-bg-2);
    padding: 120px 0;
}

/* Service Dark Section */
.service-section-dark {
    background: var(--heading-color);
}

.service-section-dark .section-subtitle {
    justify-content: center;
}

.service-card-dark {
    background: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: all 0.5s;
    margin: 10px;
}

.service-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: all 0.5s;
    z-index: -1;
}

.service-card-dark:hover::before {
    height: 100%;
}

.service-image {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.service-image img {
    width: 100%;
    transition: transform 0.5s;
}

.service-card-dark:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    background: var(--body-bg-2);
    padding: 40px;
    position: relative;
}

.service-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--secondary-color);
    transition: all 0.5s;
    z-index: -1;
}

.service-card-dark:hover .service-content::before {
    height: 100%;
    top: 0;
}

.service-content h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    transition: color 0.5s;
}

.service-content p {
    color: var(--text-color);
    margin-bottom: 20px;
    transition: color 0.5s;
}

.service-link-dark {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.service-link-dark span {
    margin-left: -84px;
    transition: all 0.5s;
}

.service-card-dark:hover .service-link-dark span {
    margin-left: 0;
}

/* Service Sublist Styles */
.service-sublist {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.service-sublist li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.service-sublist li i {
    color: var(--primary-color);
    font-size: 12px;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Content Slider Dark */
.content-slider-section-dark {
    padding: 60px 0;
    background: var(--body-bg-2);
    overflow: hidden;
}

.content-slider {
    display: flex;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

.content-slider-content,
.content-slider-content2 {
    display: inline-block;
    padding: 0 40px;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.content-slider-content {
    color: #fff;
}

.content-slider-content2 {
    color: var(--primary-color);
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.content-slider-section-dark > .content-slider:first-child {
    margin-bottom: 20px;
}

/* Outsourcing Dark Section */
.outsourcing-section-dark {
    background: #005858;
    padding: 40px 0;
}

.outsourcing-section-light{
	background: #e2efe2;
	padding: 40px 0;
}

.outsourcing-image-wrapper {
    margin-top: 10px;
}

.outsourcing-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* About Dark Section */
.about-section-dark {
    background: var(--dark-bg-2);
    padding: 60px 0;
}

.about-section-light {
    background: #e0f1df;
    padding: 30px 0;
}

.about-image-wrapper {
    position: relative;
}

.about-badge {
    position: absolute;
    top: 24px;
    right: 0;
    width: 142px;
    height: 142px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotational 10s linear infinite;
}

@media (min-width: 1400px) {
    .about-badge {
        right: 36px;
    }
.about-title {
    font-size: 28px;
}


}
.about-list-dark {
    list-style: none;
    margin: 20px 0;
}
.about-title {
    font-weight: 500;
    color: #fff;
    margin-bottom: 20px;
}
.about-list-dark li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
    font-weight: 500;
	color:#063232;
   /* color: var(--text-color);*/
    margin-bottom: 12px;
}

.about-list-dark li i {
    color: var(--primary-color);
    font-size: 22px;
}

/* Counter Dark Section */
.counter-section-dark {
    background: var(--body-bg-2);
    padding: 74px 0 54px;
}

.counter-box {
    text-align: center;
}

.counter-number {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.counter-box p {
    color: var(--text-color);
    margin: 0;
}

/* Work Dark Section */
.work-section-dark {
    background: var(--body-bg-2);
    padding: 60px 0;
}

.work-card-dark {
    background: var(--dark-bg-3);
    padding: 40px 40px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

.work-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.work-icon {
    margin: 30px 0 20px;
}

.work-card-dark h4 {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 15px;
}

.work-card-dark p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.work-link {
    color: var(--primary-color);
    font-size: 24px;
    text-decoration: none;
}

/* Pricing Dark Section */
.pricing-section-dark {
    background: var(--body-bg-2);
    padding-bottom: 120px;
}

.pricing-section-dark .section-subtitle {
    justify-content: flex-start;
}

.pricing-arrow-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    text-decoration: none;
    transform: rotate(-45deg);
    transition: all 0.5s;
    margin-top: 30px;
}

.pricing-arrow-btn:hover {
    background: #fff;
    color: var(--primary-color);
    transform: rotate(0deg);
}

.pricing-box-dark {
    background: var(--dark-bg-3);
    padding: 40px;
    border-radius: 10px;
    position: relative;
    transition: all 0.5s;
    height: 100%;
}

.pricing-box-dark::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 0;
    background: var(--primary-color);
    transition: all 0.5s;
    z-index: -1;
}

.pricing-box-dark.active::before,
.pricing-box-dark:hover::before {
    height: 100%;
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.pricing-icon {
    width: 76px;
    height: 76px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.pricing-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #119695;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.5s;
    z-index: -1;
}

.pricing-box-dark.active .pricing-icon::before,
.pricing-box-dark:hover .pricing-icon::before {
    transform: scale(1);
}

.pricing-icon-img {
    filter: brightness(0) invert(1);
}

.pricing-header h6 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.pricing-header p {
    color: var(--text-color);
    margin: 0;
}

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

.pricing-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-color);
    padding-bottom: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
    margin-bottom: 12px;
}

.pricing-check-icon {
    filter: brightness(0) invert(1);
}

.pricing-price {
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    gap: 4px;
}

.pricing-price span:last-child {
    font-size: 18px;
    color: var(--text-color);
}

.pricing-btn-dark {
    width: 100%;
    padding: 10px 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: var(--text-color);
    background: transparent;
    transition: all 0.5s;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.pricing-btn-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50px;
    transform: scale(0);
    transition: all 0.5s;
    z-index: -1;
}

.pricing-box-dark.active .pricing-btn-dark,
.pricing-box-dark:hover .pricing-btn-dark {
    color: #fff;
}

.pricing-box-dark.active .pricing-btn-dark::before,
.pricing-box-dark:hover .pricing-btn-dark::before {
    transform: scale(1);
}

/* Latest Work Dark Section */
.latest-work-section-dark {
    padding: 120px 0;
    background: var(--body-bg-2);
}

.latest-work-swiper-wrapper {
    margin-top: 58px;
    padding: 0 20px;
}

@media (min-width: 1200px) {
    .latest-work-swiper-wrapper {
        padding: 0 40px;
    }
}

@media (min-width: 1400px) {
    .latest-work-swiper-wrapper {
        padding: 0 80px;
    }
}

.latest-work-card-dark {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    padding: 20px;
    background: var(--dark-bg-3);
    transition: all 0.5s;
}

.latest-work-card-dark:hover {
    padding: 0;
}

.latest-work-card-dark img {
    width: 100%;
    transition: all 0.5s;
    filter: saturate(1);
}

.latest-work-card-dark:hover img {
    filter: saturate(0);
}

.latest-work-content {
    position: absolute;
    left: 20px;
    bottom: 20px;
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.5s;
}

.latest-work-card-dark:hover .latest-work-content {
    transform: translateY(0);
}

.latest-work-content span {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.latest-work-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.latest-work-content a {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: all 0.5s;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.latest-work-card-dark:hover .latest-work-content a {
    opacity: 1;
    bottom: -25px;
}

/* Team Dark Section */
.team-section-dark {
    padding: 50px 0;
    background: #fff;
}

/* Leadership Banner Wrapper */
.leadership-banner-wrapper {
    position: relative;
    z-index: 10;
    padding: 120px 0 0;
    margin: 0;
}

@media (max-width: 991px) {
    .leadership-banner-wrapper {
        padding: 100px 0 0;
    }
}

.leadership-banner-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: var(--body-bg-4);
    z-index: -1;
}

.leadership-banner-container {
    margin: 0 12px;
}

@media (min-width: 576px) {
    .leadership-banner-container {
        margin: 0 40px;
    }
}

@media (min-width: 992px) {
    .leadership-banner-container {
        margin: 0 66px;
    }
}

/* Leadership Banner Section */
.leadership-banner-section {
    background: url('../public/images/about_banner.png') center/cover no-repeat;
    position: relative;
    padding: 120px 0;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    overflow: hidden;
}

@media (min-width: 768px) {
    .leadership-banner-section {
        min-height: 500px;
        border-radius: 30px;
    }
}

.leadership-banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

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

.leadership-breadcrumb {
    margin-bottom: 40px;
}

.leadership-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.leadership-breadcrumb .breadcrumb-item {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.leadership-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.leadership-breadcrumb .breadcrumb-item a:hover {
    color: #fff;
}

.leadership-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.leadership-breadcrumb .breadcrumb-item i {
    font-size: 12px;
    opacity: 0.6;
}

.leadership-banner-content {
    position: relative;
    z-index: 10;
}

.leadership-banner-title {
    font-size: 36px;
    font-weight: 600;
    color: #fff;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
}

.leadership-banner-title .highlight-text {
    position: relative;
    display: inline-block;
}

.leadership-banner-title .highlight-text::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 0;
    border: solid 6px #faa428;
    border-color: #faa428 #fff0 #fff0 #fff0;
    border-radius: 90% / 60px 0 0 0;
    z-index: -1;
}

@media (min-width: 768px) {
    .leadership-banner-title {
        font-size: 48px;
    }
}

@media (max-width: 767px) {
    .leadership-banner-wrapper {
        padding: 100px 0 0;
    }
    
    .leadership-banner-section {
        padding: 80px 0;
        min-height: 350px;
    }
    
    .leadership-banner-title {
        font-size: 32px;
    }
    
    .leadership-breadcrumb {
        margin-bottom: 30px;
    }
    
    .footer-title-dark {
        padding-top: 20px;
    }
}

/* Leadership Cards */
.leadership-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.leadership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.leadership-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 100%;
    background: #f5f5f5;
}

.leadership-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.leadership-card:hover .leadership-image {
    transform: scale(1.1);
}

.leadership-content {
    padding: 30px 20px;
    text-align: center;
    background: #fff;
    position: relative;
}

.leadership-name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.leadership-designation {
    font-size: 16px;
    color: var(--primary-color);
    margin: 0 0 15px 0;
    font-weight: 500;
}

.leadership-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(12, 110, 109, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 10px;
}

.leadership-linkedin:hover {
    background: var(--primary-color);
    color: #fff;
    transform: scale(1.1);
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.team-card img {
    width: 100%;
    transition: transform 0.5s;
}

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

.team-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(12, 110, 109, 0.9);
    padding: 20px;
    color: #fff;
    text-align: center;
}

.team-content h4 {
    margin: 0;
    font-size: 20px;
}

.team-content p {
    margin: 5px 0 0;
    font-size: 14px;
}

.team-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    justify-content: center;
}

.team-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}

.team-social a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

/* Testimonial Dark Section */
.testimonial-section-dark {
    background: var(--body-bg-2);
    padding: 60px 0 98px;
    position: relative;
    z-index: 10;
    overflow: hidden;
}

.testimonial-section-dark .section-subtitle {
    justify-content: flex-start;
}

.testimonial-rating-box {
    max-width: 100%;
}

.testimonial-stars {
    list-style: none;
    padding: 0;
    margin: 0;
}

.testimonial-stars li {
    list-style: none;
}

.testimonial-stars-inline {
    list-style: none;
    padding: 0;
    margin: 0;
}

.testimonial-stars-inline li {
    list-style: none;
}

/* Testimonial Card Home6 Style */
.testimonial-card-home6 {
    background: var(--primary-color);
    border-radius: 15px;
    overflow: hidden;
    padding: 24px;
    position: relative;
    z-index: 10;
    transition: all 0.3s;
}

.testimonial-author-img {
    width: auto;
    height: auto;
    max-width: 200px;
    object-fit: contain;
}

.testimonial-content-home6 {
    padding-left: 20px;
    padding-bottom: 20px;
    padding-right: 32px;
}

.testimonial-quote-icon {
    width: auto;
    height: auto;
}

.testimonial-content-home6 h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

.testimonial-content-home6 p {
    font-size: 16px;
    line-height: 1.6;
}

/* Testimonial Navigation */
.testimonial-navigation-home6 {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column-reverse;
    gap: 16px;
    align-items: flex-end;
    justify-content: flex-end;
}

.testimonial-nav-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    background: var(--secondary-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
    font-size: 20px;
    z-index: 10;
}

.testimonial-nav-btn.testimonial-nav-prev {
    transform: rotate(-45deg);
}

.testimonial-nav-btn.testimonial-nav-next {
    transform: rotate(45deg);
    background: var(--primary-color);
    border-color: var(--body-bg-2);
}

.testimonial-nav-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.5s;
    z-index: -1;
}

.testimonial-nav-btn.testimonial-nav-next::after {
    background: var(--secondary-color);
}

.testimonial-nav-btn:hover {
    border-color: var(--body-bg-2);
    color: #fff;
}

.testimonial-nav-btn.testimonial-nav-next:hover {
    border-color: var(--primary-color);
}

.testimonial-nav-btn:hover::after {
    transform: scale(1);
}

.testimonial-nav-btn i {
    display: inline-block !important;
    color: #ffffff !important;
    z-index: 2;
    position: relative;
    font-size: 20px !important;
    opacity: 1 !important;
    visibility: visible !important;
    line-height: 1;
}

@media (max-width: 991px) {
    .testimonial-navigation-home6 {
        position: relative;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
    
    .testimonial-content-home6 {
        padding-left: 0;
        padding-right: 0;
        margin-top: 0;
    }
    
    .testimonial-card-home6 {
        padding: 20px;
    }
    
}

@media (max-width: 767px) {
    .testimonial-card-home6 .row {
        flex-direction: column;
    }
    
    .testimonial-content-home6 {
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        margin-top: 0;
        text-align: center;
    }
    
    .testimonial-author-img {
        display: none !important;
    }
}

/* Blog Dark Section */
.blog-section-dark {
    padding: 120px 0;
    background: var(--body-bg-2);
}

.blog-card-dark {
    background: var(--dark-bg-3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.blog-card-dark:hover {
    transform: translateY(-10px);
}

.blog-card-dark img {
    width: 100%;
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-color);
}

.blog-meta span:first-child i {
    font-size: 6px;
    margin-right: 5px;
}

.blog-content h4 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Footer Dark */
.footer-section-dark {
    background: var(--body-bg-2);
    padding-top: 0;
}

.footer-top-bar {
    background: var(--primary-color);
    padding: 36px 0;
}

.footer-top-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--border-color-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
}

.footer-top-item h6 {
    font-size: 15px;
    color: #fff;
    margin: 0;
}

.footer-top-item a {
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
}

.footer-logo-top {
    max-height: 60px;
}

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

.social-icon-circle {
    width: 48px;
    height: 48px;
    background: var(--border-color-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.5s;
    position: relative;
    overflow: hidden;
}

.social-icon-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.5s;
    z-index: -1;
}

.social-icon-circle:hover {
    color: var(--primary-color);
}

.social-icon-circle:hover::before {
    transform: scale(1);
}

.footer-main-dark {
   /* background: url('../public/images/footer_bg.jpg') center/cover no-repeat;*/
    padding: 20px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-shape {
    position: absolute;
    z-index: -1;
}

.footer-shape-1 {
    left: 80px;
    bottom: 112px;
    animation: rotational 10s linear infinite;
}

.footer-shape-2 {
    top: 80px;
    right: 80px;
    animation: dance2 3s alternate infinite;
}

@keyframes dance2 {
    0% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(25px, -25px, 0);
    }
    100% {
        transform: translate3d(0, -25px, 25px);
    }
}

.footer-title-dark {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 30px;
}

.footer-section-dark p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.footer-form-dark {
    position: relative;
    max-width: 66.66%;
}

.footer-form-dark input {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(6, 50, 50, 0.3);
    color: var(--heading-color);
    outline: none;
}

.footer-form-dark input::placeholder {
    color: var(--heading-color);
}

.footer-form-dark button {
    position: absolute;
    top: 3px;
    right: 0;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: #fff;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.5s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-form-dark button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--heading-color);
    border-radius: 50%;
    transform: scale(0);
    transition: all 0.5s;
    z-index: -1;
}

.footer-form-dark button:hover::before {
    transform: scale(1);
}

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

.footer-links-dark li {
    margin-bottom: 12px;
}

.footer-links-dark a {
    color: var(--heading-color);
    text-decoration: none;
    transition: all 0.5s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links-dark a:hover {
    color: var(--primary-color);
    margin-left: 0;
}

.footer-links-dark a i {
    color: var(--primary-color);
    font-size: 12px;
}

.footer-blog-item-dark {
    margin-bottom: 28px;
}

.footer-blog-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.footer-blog-title-dark {
    font-size: 16px;
    color: var(--heading-color);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    transition: color 0.5s;
}

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

.footer-blog-date-dark {
    font-size: 14px;
    color: var(--text-color-2);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-blog-date-dark i {
    font-size: 8px;
    color: var(--primary-color);
}

.footer-bottom-dark {
    border-top: 1px solid rgba(6, 50, 50, 0.2);
    padding-top: 24px;
    margin-top: 120px;
}

.footer-bottom-dark p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.footer-bottom-dark p a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-social-dark {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-social-dark a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.5s;
}

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

/* Contact Form Styles */
.contact-form-dark .form-control-dark {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px 18px;
    border-radius: 5px;
    transition: all 0.3s;
}

.contact-form-dark .form-control-dark::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form-dark .form-control-dark:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: #fff;
    outline: none;
    box-shadow: 0 0 0 0.2rem rgba(12, 110, 109, 0.25);
}

.contact-info-dark .contact-item-dark {
    margin-bottom: 25px;
}

.contact-icon-dark {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
}

.contact-info-dark h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-info-dark a {
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info-dark a:hover {
    color: var(--primary-color) !important;
}

/* Contact Social Icons */
.contact-social-icons {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-social-icons h6 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.contact-social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.contact-social-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* CAPTCHA Styles */
.captcha-container {
    margin-bottom: 15px;
}

.captcha-display-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 20px;
    min-height: 70px;
    justify-content: center;
    position: relative;
    height: 100%;
}

.captcha-display {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 5px;
    flex: 1;
    min-height: 50px;
}

.captcha-char {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 28px;
    font-weight: bold;
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s;
    user-select: none;
    letter-spacing: 2px;
}

.captcha-char:hover {
    transform: scale(1.1) !important;
}

.btn-refresh-captcha {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
    flex-shrink: 0;
}

.btn-refresh-captcha:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: rotate(180deg);
}

.captcha-container small {
    display: block;
    margin-top: 5px;
    font-size: 12px;
}

@media (min-width: 768px) {
    .captcha-container .row {
        align-items: center;
    }
    
    .captcha-container .col-md-6:first-child {
        padding-right: 10px;
    }
    
    .captcha-container .col-md-6:last-child {
        padding-left: 10px;
    }
   
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s;
}

.back-to-top:hover {
    background: var(--heading-color);
    transform: translateY(-5px);
}

.back-to-top.show {
    display: flex;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 70px;
    right: 25px;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse 2s infinite;
}

.whatsapp-button:hover {
    background: #20BA5A;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.6);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

@media (max-width: 767px) {
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 28px;
        right: 15px;
    }
}

@media (max-width: 575px) {
    .whatsapp-button {
        width: 50px;
        height: 50px;
        font-size: 24px;
        right: 30px;
    }
}

/* Swiper Custom Styles */
.swiper {
    padding-bottom: 50px;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #b5d3d3;
    opacity: 1;
}

.swiper-pagination-bullet-active {
    width: 12px;
    height: 12px;
    background: var(--primary-color);
}

.testimonial-section-dark .swiper-pagination-bullet {
    background: var(--primary-color);
    opacity: 0.5;
}

.testimonial-section-dark .swiper-pagination-bullet-active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1199px) {
    .header-classic .navbar-nav .nav-link {
        padding: 20px 20px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    .header-area.header-classic {
        background: url('../public/images/banner.jpg') center top/cover no-repeat;
        position: absolute;
    }
    
    .header-area.header-classic.is-sticky {
        background: url('../public/images/banner.jpg') center top/cover no-repeat;
        position: fixed;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    .header-area.header-classic.is-sticky.navbar-scroll-down {
        background: #fff;
    }
    
    .header-area.header-classic.is-sticky.navbar-scroll-down .navbar-nav .nav-link {
        color: var(--heading-color);
    }
    
    .header-area.header-classic.is-sticky.navbar-scroll-down .menu-bar span {
        background: var(--heading-color);
    }
    
    .header-area.header-classic.is-sticky.navbar-scroll-up {
        background: #0a4243;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }
    
    .navbar-nav .nav-link {
        padding: 12px 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .banner-section-dark {
        padding: 120px 0 80px;
    }
    
    .feature-section-dark,
    .service-section-dark,
    .about-section-dark,
    .outsourcing-section-dark,
    .counter-section-dark,
    .work-section-dark,
    .pricing-section-dark,
    .latest-work-section-dark,
    .testimonial-section-dark,
    .blog-section-dark {
        padding: 60px 0;
    }
    
    .team-section-dark {
        padding: 50px 0;
    }
    
    .pricing-box-dark {
        margin-bottom: 30px;
    }
    
    .service-card-dark {
        margin-bottom: 30px;
    }
    
    .team-member-card {
        margin-bottom: 30px;
    }
    
    .blog-card-dark {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .header-logo-img {
        max-height: 45px;
    }
    
    .header-area.header-classic {
        padding: 12px 0;
    }
    
    .header-area.header-classic.is-sticky {
        padding: 8px 0;
    }
    
    .banner-section-dark {
        min-height: 700px;
        padding: 100px 0 60px;
    }
    
    .team-section-dark {
        padding-bottom: 30px;
    }
    
    .banner-title {
        font-size: 28px;
        line-height: 1.3;
        margin-top: 80px;
        padding-top: 80px;
    }
    
    .banner-subtitle {
        font-size: 16px;
    }
    
    .about-title {
        padding-top: 20px;
		font-size:18px !important;
    }
    
    .section-title {
        font-size: 29px;
        margin-bottom: 15px;
        padding-top: 20px;
    }
    
    .section-subtitle {
        font-size: 14px;
        padding-top: 20px;
    }
    
    .service-card-dark {
        margin: 0 0 25px 0;
        padding: 25px 20px;
    }
    
    .feature-box-dark {
        margin-bottom: 25px;
        padding: 25px 20px;
    }
    
    .pricing-box-dark {
        margin-bottom: 25px;
        padding: 30px 20px;
    }
    
    .counter-item {
        margin-bottom: 25px;
    }
    
    .work-item-dark {
        margin-bottom: 25px;
    }
    
    .team-member-card {
        margin-bottom: 25px;
    }
    
    .blog-card-dark {
        margin-bottom: 25px;
    }
    
    .footer-shape-2 {
        display: none;
    }
    
    .footer-main-dark {
        padding: 0px 0 0px;
    }
    
    .footer-title-dark {
        padding-top: 20px;
    }
    
    .footer-bottom-dark {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin: 60px 0;
    }
    
    .footer-social-dark {
        flex-direction: column;
        gap: 10px;
    }
    
    .header-btn {
        font-size: 14px;
        padding: 8px 15px;
    }
    
    .contact-social-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .captcha-display-wrapper {
        margin-bottom: 0;
    }
    .feature-section-dark,
    .service-section-dark,
    .about-section-light,    
    .outsourcing-section-dark,
    .counter-section-dark,
    .work-section-dark,
    .pricing-section-dark,
    .latest-work-section-dark,
    .team-section-dark {
        padding: 50px 0 30px;
    }
    
    .testimonial-section-dark,
    .blog-section-dark {
        padding: 20px 0;
    }
}

@media (max-width: 575px) {
    .banner-title {
        font-size: 24px;
        margin-top: 40px;
        padding-top: 80px;
    }
    
    .section-title {
        font-size: 29px;
		padding-top:0px;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .header-area.header-classic .container {
        padding: 0 15px;
    }
    
    .service-card-dark,
    .feature-box-dark,
    .pricing-box-dark {
        padding: 20px 15px;
    }
    
    .swiper-slide {
        padding: 0 10px;
    }
    
    .leadership-card {
        margin-bottom: 30px;
    }
    
    .leadership-content {
        padding: 25px 15px;
    }
    
    .leadership-name {
        font-size: 20px;
    }
    
    .leadership-designation {
        font-size: 14px;
    }
	 .about-title {
        padding-top: 20px;
		font-size:18px !important;
    }
	.service-section-dark{
		 padding-top: 25px;
	}
	.about-section-light {
    background: #e0f1df;
    padding: 25px 0;
}
}
