/*******************************/
/********* General CSS *********/
/*******************************/
body {
    color: #797979;
    background: #ffffff;
    font-family: 'Lato', sans-serif;
    margin: 0;
    padding: 0;
}

/* Global icon color - apply to all Font Awesome icons */
i.fa,
i.fas,
i.far,
i.fal,
i.fab,
[class^="fa-"],
[class*=" fa-"] {
    color: #f4a03c !important;
}

/* Override inline styles for icons - use universal selector to catch all icons */
i.fa,
i.fas,
i.far,
i.fal,
i.fab,
i[class*="fa-"] {
    color: #f4a03c !important;
}

/* Exceptions for icons on dark backgrounds - use white or orange for visibility */
.top-bar .text i,
.top-bar i {
    color: #ffffff !important; /* White icons on dark teal top-bar background */
}

.top-bar .social a i,
.top-bar .social a {
    color: #f4a03c !important; /* Orange icons on dark teal top-bar background for better visibility */
}

.carousel .carousel-text .btn i,
.carousel .carousel-text i {
    color: #ffffff !important; /* White icons on dark carousel background */
}

.footer .footer-social a i {
    color: #f4a03c !important; /* Orange icons on dark footer background for better visibility */
}

.footer .footer-link a::before {
    color: #ffffff !important; /* White arrow icons on dark footer background */
}

/* Override inline styles for headings */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #146e70 !important;
}

/* Exceptions for headings on dark backgrounds - use white/light colors */
.top-bar .text h2,
.top-bar h2 {
    color: #ffffff !important; /* White on dark teal background */
}

.carousel .carousel-text h1,
.carousel .carousel-text h2,
.carousel .carousel-text h3 {
    color: #ffffff !important; /* White on dark carousel background */
}

.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
.footer h6,
.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    color: #ffffff !important; /* White on dark footer background */
}

body.page {
    margin: 0;
    padding: 0;
}

/* Ensure form doesn't add spacing */
form {
    margin: 0;
    padding: 0;
}

/* Ensure main content area doesn't have unwanted padding */
main {
    margin: 0;
    padding: 0;
}

h1,
h2, 
h3, 
h4,
h5, 
h6 {
    color: #146e70;
    font-family: 'Oswald', sans-serif;
}

a {
    color: #454545;
    transition: .3s;
}

a:hover,
a:active,
a:focus {
    color: #092a49;
    outline: none;
    text-decoration: none;
}

.btn:focus,
.form-control:focus {
    box-shadow: none;
}

.container-fluid {
    max-width: 1366px;
}

/* Slightly increase site-wide content width (affects all Bootstrap containers) */
.container,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: 1366px !important; /* wider than default 1140px, but not full edge */
    padding-left: 40px !important;
    padding-right: 40px !important;
}

/* Ensure full-width sections break out of any container */
.carousel,
.fact,
.footer {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

/* Ensure carousel container-fluid is truly full width */
.carousel .container-fluid {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #146e70;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 9;
}

.back-to-top i {
    color: #092a49;
    padding-top: 10px;
}

.back-to-top:hover {
    background: #092a49;
}

.back-to-top:hover i {
    color: #146e70;
}

@media (min-width: 992px) {
    .mt-125 {
        margin-top: 125px;
    }
}


/**********************************/
/********** Top Bar CSS ***********/
/**********************************/
.top-bar {
    position: relative;
    height: 35px;
    background-image: linear-gradient(to right, #146e70, #092a49);
}

.top-bar .top-bar-left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.top-bar .top-bar-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.top-bar .text {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    height: 35px;
    padding: 0 10px;
    text-align: center;
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text:last-child {
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .text i {
    font-size: 14px;
    color: #ffffff !important; /* White icons on dark teal background */
    margin-right: 5px;
}

.top-bar .text h2 {
    color: #ffffff !important; /* White text on dark teal background */
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0;
}

.top-bar .text p {
    color: #eeeeee;
    font-size: 14px;
    font-weight: 400;
    margin: 0 0 0 5px;
}

.top-bar .social {
    display: flex;
    height: 35px;
    font-size: 0;
    justify-content: flex-end;
}

.top-bar .social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 100%;
    font-size: 16px;
    color: #f4a03c !important; /* Orange icons on dark teal background for better visibility */
    border-right: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:first-child {
    border-left: 1px solid rgba(255, 255, 255, .15);
}

.top-bar .social a:hover {
    color: #092a49;
    background: #ffffff;
}

@media (min-width: 992px) {
    .top-bar {
        padding: 0 60px;
    }
}


/**********************************/
/*********** Nav Bar CSS **********/
/**********************************/
.navbar {
    position: relative;
    transition: .5s;
    z-index: 999;
}

.navbar.nav-sticky {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .3);
    transition: .5s;
}

.navbar .navbar-brand {
    margin: 0;
    color: #ffffff;
    font-size: 45px;
    line-height: 0px;
    font-weight: 200;
    text-transform: uppercase;
}

.navbar .navbar-brand img {
    max-width: 100%;
    max-height: 64px;
}

/* Footer spacing adjustments */
.footer .footer-contact img {
    margin-bottom: 16px;
}
.footer .footer-contact p {
    margin-bottom: 10px;
}

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-nav .nav-link:focus,
.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    padding: 10px 10px 8px 10px;
    color: #092a49;
    font-weight: 500;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: #146e70;
    transition: none;
}

.navbar .dropdown-menu {
    margin-top: 0;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar .dropdown-menu .dropdown-item {
    color: #092a49;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.navbar .dropdown-menu .dropdown-item:hover {
    background: #f8f9fa;
    color: #146e70;
}

@media (min-width: 992px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 35px;
        padding: 10px 40px;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        z-index: 9;
    }
    
    .navbar.nav-sticky {
        padding: 8px 40px;
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    }
    
    .page .navbar {
        background: #ffffff !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .navbar a.nav-link {
        padding: 6px 12px;
        font-size: 14px;
        letter-spacing: 1px;
        text-transform: uppercase;
    }
}

@media (max-width: 991.98px) {   
    .navbar {
        padding: 15px;
        background: #ffffff !important;
    }
    
    .navbar a.nav-link {
        padding: 5px;
        color: #092a49 !important;
    }
    
    .navbar .dropdown-menu {
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        background: #ffffff;
    }
}


/*******************************/
/********** Hero CSS ***********/
/*******************************/
.carousel {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    min-height: 400px;
    background: #092a49;
    margin-bottom: 45px;
}

.carousel .container-fluid {
    padding: 0 !important;
    max-width: 100% !important; /* ensure full-bleed slider, no side gaps */
    margin: 0 !important;
    width: 100% !important;
}

.carousel .carousel-item {
    position: relative;
    width: 100%;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .carousel-img {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: right;
    overflow: hidden;
}

.carousel .carousel-img::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(9, 42, 73, .7);
    z-index: 1;
}

.carousel .carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .carousel-text {
    position: absolute;
    max-width: 700px;
    height: calc(100vh - 35px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    z-index: 2;
}

.carousel .carousel-text h1 {
    text-align: center;
    color: #ffffff !important; /* White heading on dark carousel background */
    font-size: 60px;
    font-weight: 200;
    margin-bottom: 20px;
}

.carousel .carousel-text p {
    color: #ffffff;
    text-align: center;
    font-size: 20px;
    margin-bottom: 25px;
}

.carousel .carousel-text .btn {
    padding: 15px 30px;
    font-size: 16px;
    letter-spacing: 1px;
    color: #ffffff;
    background: none;
    border: 2px solid #ffffff;
    border-radius: 0;
    transition: .3s;
}

.carousel .carousel-text .btn i {
    margin-right: 5px;
}

.carousel .carousel-text .btn:hover {
    color: #146e70;
    background: #ffffff;
}

.carousel .carousel-btn .btn:first-child {
    margin-right: 15px;
}

.carousel .owl-nav {
    position: absolute;
    width: 122px;
    right: 2px;
    bottom: 2px;
    display: flex;
    z-index: 9;
}

.carousel .owl-nav .owl-prev,
.carousel .owl-nav .owl-next {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #146e70;
    background: #092a49;
    font-size: 22px;
    transition: .3s;
}

.carousel .owl-nav .owl-prev:hover,
.carousel .owl-nav .owl-next:hover {
    color: #ffffff;
    background: #146e70;
}

.carousel .owl-nav .owl-prev {
    margin-right: 2px;
}

.carousel .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 105px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 35px;
    }
    
    .carousel .carousel-text p {
        font-size: 16px;
    }
    
    .carousel .carousel-text .btn {
        padding: 12px 30px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 767.98px) {
    .carousel,
    .carousel .carousel-item,
    .carousel .carousel-text {
        height: calc(100vh - 70px);
    }
    
    .carousel .carousel-text h1 {
        font-size: 30px;
    }
    
    .carousel .carousel-text .btn {
        padding: 10px 25px;
        font-size: 15px;
        letter-spacing: 0;
    }
}

@media (max-width: 575.98px) {
    .carousel .carousel-text h1 {
        font-size: 25px;
    }
    
    .carousel .carousel-text .btn {
        padding: 8px 20px;
        font-size: 14px;
        letter-spacing: 0;
    }
}


/*******************************/
/******* Section Header ********/
/*******************************/
.section-header {
    position: relative;
    text-align: left;
    margin-bottom: 50px;
}

.section-header p {
    margin-bottom: 5px;
    position: relative;
    font-size: 16px;
}

.section-header h2 {
    margin: 0 0 0 40px;
    position: relative;
    font-size: 50px;
    font-weight: 200;
}

.section-header h2::after {
    content: none; /* removed decorative stripe line behind all headings */
}

.section-header h2:hover::after {
    border-image: none;
}

@media (max-width: 991.98px) {
    .section-header h2 {
        font-size: 45px;
    }
}

@media (max-width: 767.98px) {
    .section-header h2 {
        font-size: 40px;
    }
}

@media (max-width: 575.98px) {
    .section-header h2 {
        font-size: 35px;
    }
}


/*******************************/
/********** Fact CSS ***********/
/*******************************/
.fact {
    position: relative;
    width: 100%;
    padding: 30px 0 15px 0;
}

.fact .fact-item {
    position: relative;
    width: 100%;
    margin-bottom: 30px;
    padding: 40px 20px 35px 20px;
    text-align: center;
    background: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .3s;
}

.fact .fact-item:hover {
    border-color: rgba(0, 0, 0, .1);
    box-shadow: none;
}

.fact .fact-item img {
    max-height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) saturate(100%) invert(70%) sepia(100%) saturate(2000%) hue-rotate(5deg) brightness(1.1);
}

.fact .fact-item h2 {
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
}


/*******************************/
/********** About CSS **********/
/*******************************/
.about {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.about .section-header {
    margin-bottom: 40px;
    margin-left: 0;
}

.about .about-img {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: .5s;
    padding: 20px;
}

.about .about-img::after {
    content: none; /* removed diagonal border box behind about images */
}

.about .about-img:hover::after {
    border-image: none;
}

.about .about-img-1 {
    position: relative;
    height: 100%;
    height: 100%;
    margin: 0 120px 120px 0;
}

.about .about-img-2 {
    position: absolute;
    height: 100%;
    height: 100%;
    top: 120px;
    left: 120px;
    z-index: 1;
}

.about .about-img-1 img,
.about .about-img-2 img {
    position: relative;
    width: 100%;
    max-width: 80%;
    height: auto;
    margin: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about .about-text p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about .about-text a.btn {
    position: relative;
    margin-top: 15px;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #146e70;
    border: 2px solid #146e70;
    border-radius: 0;
    background: none;
    transition: .3s;
}

.about .about-text a.btn:hover {
    color: #146e70;
    background: #092a49;
}

@media (max-width: 767.98px) {
    .about .about-img {
        margin-bottom: 30px;
        height: auto;
        padding: 15px;
    }
    
    .about .about-img-1 img,
    .about .about-img-2 img {
        max-width: 90%;
        margin: 10px;
    }
    
    .feature .feature-img img {
        max-width: 90%;
        margin: 15px;
        padding: 10px;
    }
}


/*******************************/
/********* Service CSS *********/
/*******************************/
.service {
    position: relative;
    width: 100%;
    padding: 40px 0 20px 0;
}

.service .row {
    display: flex;
    flex-wrap: wrap;
}

.service .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.service .service-item {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 280px;
    margin-bottom: 30px;
    padding: 35px;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, .1);
    transition: .3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service .service-item:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.service .service-item img {
    max-height: 50px;
    margin-bottom: 20px;
}

.service .service-item i {
    display: block;
    margin-bottom: 20px;
    flex-shrink: 0;
    color: #f4a03c;
}

.service .service-item h3 {
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.service .service-item p {
    margin-bottom: 15px;
    font-size: 16px;
    flex-grow: 1;
    line-height: 1.7;
}

.service .service-item a {
    position: relative;
    font-size: 16px;
    color: #146e70;
    transition: .3s;
    flex-shrink: 0;
    margin-top: auto;
}

.service .service-item a::after {
    content: "";
    position: absolute;
    width: 80%;
    height: 2px;
    bottom: -3px;
    left: 10%;
    background: #146e70;
}

.service .service-item:hover a.btn {
    color: #092a49;
    background: #1d2434;
    border-color: #1d2434;
}

@media (max-width: 991.98px) {
    .service .service-item {
        min-height: 260px;
    }
}

@media (max-width: 767.98px) {
    .service .service-item {
        min-height: 240px;
        padding: 25px 20px;
    }
}


/*******************************/
/******** Offerings CSS *********/
/*******************************/
.offerings {
    position: relative;
    width: 100%;
    padding: 40px 0;
    background: #f8f9fa;
}

.offerings .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.offerings .section-header h2 {
    margin: 0;
}

.offerings .section-header h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.offerings .row {
    display: flex;
    flex-wrap: wrap;
}

.offerings .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.offerings .offering-item {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    margin-bottom: 30px;
    padding: 35px 25px;
    text-align: center;
    background: #fffffa;
    border: 2px solid #092a49;
    border-radius: 20px;
    transition: .3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .05);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offerings .offering-item:hover {
    border-color: #146e70;
    box-shadow: 0 5px 25px rgba(20, 110, 112, .15);
    transform: translateY(-5px);
}

.offerings .offering-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 2px solid #092a49;
    border-radius: 12px;
}

.offerings .offering-icon i {
    font-size: 32px;
    color: #f4a03c;
    z-index: 2;
}

.offerings .offering-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffd700;
    color: #092a49;
    border: 2px solid #092a49;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.offerings .offering-item h3 {
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #146e70;
    flex-shrink: 0;
}

.offerings .offering-item p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 1.8;
    color: #797979;
    flex-grow: 1;
}

@media (max-width: 991.98px) {
    .offerings .offering-item {
        margin-bottom: 30px;
        min-height: 300px;
    }
}

@media (max-width: 767.98px) {
    .offerings .offering-item {
        min-height: 280px;
        padding: 25px 15px;
    }
    
    .offerings .offering-icon {
        width: 70px;
        height: 70px;
    }
    
    .offerings .offering-icon i {
        font-size: 28px;
    }
    
    .offerings .offering-badge {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
    
    .offerings .offering-item h3 {
        font-size: 22px;
    }
}




/*******************************/
/******** Journey Image CSS ****/
/*******************************/
.journey-image {
    position: relative;
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
}

.journey-image .section-header {
    margin-bottom: 40px;
}

.journey-image img {
    display: block;
    margin: 0 auto;
}

@media (max-width: 767.98px) {
    .journey-image {
        padding: 30px 0;
    }
    
    .journey-image .section-header {
        margin-bottom: 30px;
    }
}


/*******************************/
/********* Feature CSS *********/
/*******************************/
.feature {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.feature .col-md-6 {
    height: 100%;
}

.feature p {
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 16px;
}

.feature .feature-img {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
}

.feature .feature-img::after {
    content: none; /* removed diagonal border box behind feature images */
}

.feature .feature-img:hover::after {
    border-image: none;
}

.feature .feature-img img {
    position: relative;
    width: 100%;
    height: auto;
    max-width: 500px;           /* proper size for WhyChooseUs image */
    max-height: 500px;          /* maintains aspect ratio */
    margin: 20px 30px 30px 30px;
    padding: 0;
    border-radius: 8px;
    object-fit: contain;        /* prevents compression */
    z-index: 2;
}

@media (max-width: 767.98px) {
    .feature .feature-img {
        margin-bottom: 45px;
    }
    
    .feature .feature-img img {
        max-width: 90%;
        margin: 15px;
    }
}

.feature .counters .col-6 {
    padding-top: 25px;
    display: flex;
    flex-direction: row;
}

.feature .counters i {
    padding: 5px 15px 0 0;
    font-size: 28px;
    color: #f4a03c;
}

.feature .counters h2 {
    position: relative;
    display: inline-block;
    color: #146e70;
    font-size: 30px;
    font-weight: 300;
}

.feature .counters h2::after {
    position: absolute;
    content: "+";
    top: -15px;
    right: -15px;
}

.feature .counters p {
    color: #092a49;
    font-size: 20px;
    margin: 0;
}


/*******************************/
/*********** Team CSS **********/
/*******************************/
.team {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.team .team-item {
    position: relative;
    margin-bottom: 75px;
}

.team .team-img {
    position: relative;
}

.team .team-img img {
    width: 100%;
}

.team .team-text {
    position: absolute;
    width: calc(100% - 30px);
    height: 96px;
    bottom: -46px;
    left: 15px;
    padding: 25px 15px;
    text-align: center;
    background: rgba(256, 256, 256, .9);
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    transition: .3s;
    overflow: hidden;
}

.team .team-text h2 {
    color: #146e70;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.team .team-text p {
    margin-bottom: 20px;
    color: #092a49;
}

.team .team-social {
    position: relative;
    font-size: 0;
}

.team .team-social a {
    display: inline-block;
    width: 35px;
    height: 35px;
    margin: 0 3px;
    padding: 5px 0;
    text-align: center;
    font-size: 14px;
    color: #092a49;
    border: 2px solid #092a49;
    transition: .3s;
}

.team .team-social a:hover {
    color: #146e70;
    border-color: #146e70;
}

.team .team-item:hover .team-text {
    height: 160px;
}


/*******************************/
/******* Testimonial CSS *******/
/*******************************/
.testimonial {
    position: relative;
    width: 100%;
    padding: 70px 0;
}

.testimonial .testimonials-carousel {
    position: relative;
    width: calc(100% + 30px);
    margin: 0 -15px;
}

.testimonial .testimonial-item {
    position: relative;
    width: 100%;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, .05);
    transition: .3s;
    height: 100%;
}

.testimonial .testimonial-item:hover {
    border-color: #146e70;
    box-shadow: 0 5px 25px rgba(20, 110, 112, .15);
    transform: translateY(-5px);
}

.testimonial .testimonial-item img {
    position: relative;
    width: 80px;
    border-radius: 80px;
    margin-bottom: 15px;
}

.testimonial .testimonial-item i {
    display: block;
    margin-bottom: 20px;
    color: #f4a03c;
}

.testimonial .testimonial-item p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
}

.testimonial .testimonial-item h2 {
    position: relative;
    color: #146e70;
    font-size: 18px;
    letter-spacing: 1px;
    margin-bottom: 5px;
    padding-bottom: 8px;
}

.testimonial .testimonial-item h2::before {
    position: absolute;
    content: "";
    width: 40px;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #146e70;
    transition: .3s;
}

.testimonial .testimonial-item:hover h2::before {
    width: 60px;
}

.testimonial .testimonial-item h3 {
    color: #999999;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
    margin: 0;
    margin-top: 5px;
}

.testimonial .owl-nav {
    position: relative;
    width: 100%;
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial .owl-nav .owl-prev,
.testimonial .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #146e70;
    font-size: 25px;
    transition: .3s;
}

.testimonial .owl-nav .owl-prev {
    padding-right: 80px;
}

.testimonial .owl-nav .owl-next {
    padding-left: 80px;
}

.testimonial .owl-nav .owl-prev:hover,
.testimonial .owl-nav .owl-next:hover {
    color: #092a49;
}

.testimonial .owl-nav .owl-prev::after,
.testimonial .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    top: 11px;
    background: #146e70;
    transition: .3s;
}

.testimonial .owl-nav .owl-prev::after {
    left: 9px;
}

.testimonial .owl-nav .owl-next::after {
    right: 9px;
}

.testimonial .owl-nav .owl-prev:hover::after {
    background: #092a49;
}

.testimonial .owl-nav .owl-next:hover::after {
    background: #092a49;
}

/* More Reviews Section */
.more-reviews-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.more-reviews-btn {
    display: inline-block;
    padding: 15px 50px;
    background-color: #146e70;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 110, 112, 0.3);
}

.more-reviews-btn:hover {
    background-color: #0d4d4f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(20, 110, 112, 0.5);
    color: #ffffff;
    text-decoration: none;
}

.more-reviews-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(20, 110, 112, 0.4);
}

@media (max-width: 767.98px) {
    .more-reviews-section {
        padding: 40px 0;
    }
    
    .more-reviews-btn {
        padding: 12px 35px;
        font-size: 14px;
    }
}

/* Clients Page CSS */
.clients {
    position: relative;
    width: 100%;
    padding: 70px 0;
}

.client-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(20, 110, 112, 0.2);
    background: #ffffff !important;
}

.client-logo-item:hover {
    transform: translateY(-5px);
    border-color: #146e70 !important;
    box-shadow: 0 8px 25px rgba(20, 110, 112, 0.2);
}

.client-logo-item:hover i {
    color: #f4a03c !important;
    transform: scale(1.1);
    transition: all 0.3s;
}

.client-logo-item img {
    transition: all 0.3s ease;
}

.client-logo-item:hover img {
    transform: scale(1.05);
}

.client-testimonial-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.client-testimonial-card:hover {
    box-shadow: 0 5px 20px rgba(20, 110, 112, 0.15);
    transform: translateY(-3px);
}

@media (max-width: 767.98px) {
    .clients {
        padding: 40px 0;
    }
    
    .client-logo-item {
        height: 160px !important;
        padding: 20px !important;
    }
    
    .client-logo-item i {
        font-size: 48px !important;
    }
}

/* Battery Gallery CSS */
.battery-gallery .gallery-item {
    transition: all 0.3s ease;
}

.battery-gallery .gallery-item:hover {
    transform: translateY(-5px);
    border-color: #146e70 !important;
    box-shadow: 0 8px 25px rgba(20, 110, 112, 0.2);
}

.battery-gallery .gallery-item img {
    transition: all 0.3s ease;
}

.battery-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 767.98px) {
    .battery-gallery .gallery-item img {
        height: 200px !important;
    }
}


/*******************************/
/*********** Blog CSS **********/
/*******************************/
.blog {
    position: relative;
    width: 100%;
    padding: 70px 0;
}

.blog .section-header {
    margin-bottom: 60px;
}

.blog .blog-carousel {
    position: relative;
    width: calc(100% + 30px);
    left: -15px;
    right: -15px;
}

.blog .blog-item {
    position: relative;
    margin: 0 15px;
}

.blog.blog-page .blog-item {
    margin: -30px 0 0 0;
}

.blog .blog-img {
    position: relative;
    width: 100%;
    z-index: 1;
}

.blog .blog-img img {
    width: 100%;
}

.blog .blog-content {
    position: relative;
    width: calc(100% - 60px);
    top: -60px;
    left: 30px;
    padding: 25px 30px;
    background: #ffffff;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    z-index: 2;
}

.blog .blog-content h2.blog-title {
    font-size: 25px;
    font-weight: 400;
    letter-spacing: 1px;
}

.blog .blog-meta {
    position: relative;
    margin-bottom: 15px;
}

.blog .blog-meta * {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 300;
    color: #797979;
}

.blog .blog-meta i {
    color: #f4a03c;
    margin: 0 2px 0 10px;
}

.blog .blog-meta i:first-child {
    margin-left: 0;
}

.blog .blog-text {
    position: relative;
}

.blog .blog-text p {
    margin-bottom: 10px;
}

.blog .blog-item a.btn {
    position: relative;
    padding: 0 0 0 35px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: #146e70;
    transition: .3s;
}

.blog .blog-item a.btn:hover {
    color: #092a49;
}

.blog .blog-item a.btn::before {
    position: absolute;
    content: "";
    width: 30px;
    height: 2px;
    top: 10px;
    left: 0;
    background: #146e70;
}

.blog .owl-nav {
    position: relative;
    width: 100%;
    margin-top: -30px;
    display: flex;
    justify-content: center;
}

.blog .owl-nav .owl-prev,
.blog .owl-nav .owl-next {
    position: relative;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #146e70;
    font-size: 25px;
    transition: .3s;
}

.blog .owl-nav .owl-prev {
    padding-right: 80px;
}

.blog .owl-nav .owl-next {
    padding-left: 80px;
}

.blog .owl-nav .owl-prev:hover,
.blog .owl-nav .owl-next:hover {
    color: #092a49;
}

.blog .owl-nav .owl-prev::after,
.blog .owl-nav .owl-next::after {
    position: absolute;
    content: "";
    width: 80px;
    height: 3px;
    top: 11px;
    background: #146e70;
    transition: .3s;
}

.blog .owl-nav .owl-prev::after {
    left: 9px;
}

.blog .owl-nav .owl-next::after {
    right: 9px;
}

.blog .owl-nav .owl-prev:hover::after {
    background: #092a49;
}

.blog .owl-nav .owl-next:hover::after {
    background: #092a49;
}

.blog .pagination {
    margin-bottom: 0;
}

.blog .pagination .page-link {
    margin-top: -30px;
    color: #092a49;
    border-radius: 0;
    border-color: #092a49;
}

.blog .pagination .page-link:hover,
.blog .pagination .page-item.active .page-link {
    color: #146e70;
    background: #092a49;
}

.blog .pagination .disabled .page-link {
    color: #999999;
}


/*******************************/
/********* Contact CSS *********/
/*******************************/
.contact {
    position: relative;
    width: 100%;
    padding: 70px 0 30px 0;
}

.contact .row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

.contact .contact-info {
    position: relative;
    display: flex;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, .1);
    margin-bottom: 30px;
    transition: .3s;
    flex: 1;
    min-height: 200px;
}

.contact .contact-info:hover {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
}

.contact .contact-icon {
    position: relative;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, .1);
}

.contact .contact-icon i {
    font-size: 18px;
    color: #f4a03c;
}

.contact .contact-text {
    position: relative;
    display: flex;
    flex-direction: column;
    padding-left: 15px;
}

.contact .contact-text h3 {
    font-size: 16px;
    font-weight: 400;
    color: #146e70;
    letter-spacing: 1px;
}

.contact .contact-text p {
    margin: 0;
    font-size: 16px;
}

.contact .contact-form {
    position: relative;
    padding: 50px 40px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.contact .contact-form:hover {
    box-shadow: 0 15px 50px rgba(7, 150, 254, 0.15);
    transform: translateY(-2px);
}

.contact .contact-form .control-group {
    margin-bottom: 25px;
    position: relative;
}

.contact .contact-form input,
.contact .contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    color: #333;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: 'Lato', sans-serif;
    outline: none;
}

.contact .contact-form input:focus,
.contact .contact-form textarea:focus {
    background: #ffffff;
    border-color: #146e70;
    box-shadow: 0 0 0 4px rgba(20, 110, 112, 0.1);
    transform: translateY(-2px);
}

.contact .contact-form input::placeholder,
.contact .contact-form textarea::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

.contact .contact-form textarea {
    min-height: 140px;
    resize: vertical;
    padding-top: 16px;
}

.contact .contact-form .btn {
    padding: 16px 45px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
    background: linear-gradient(135deg, #146e70 0%, #0d4d4f 100%);
    border: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(20, 110, 112, 0.3);
    cursor: pointer;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
}

.contact .contact-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.contact .contact-form .btn:hover::before {
    left: 100%;
}

.contact .contact-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(20, 110, 112, 0.4);
    background: linear-gradient(135deg, #0d4d4f 0%, #146e70 100%);
}

.contact .contact-form .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(20, 110, 112, 0.3);
}

.contact .contact-form .help-block {
    margin-top: 8px;
    font-size: 13px;
    display: block;
}

.contact .contact-form .alert {
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 25px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact .contact-form .alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.contact .contact-form .alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.contact .contact-form .alert-warning {
    background: #fff3cd;
    color: #856404;
    border-left: 4px solid #ffc107;
}

.contact .help-block ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}


/*******************************/
/******* Single Page CSS *******/
/*******************************/
.single {
    position: relative;
    width: 100%;
    padding: 45px 0 15px 0;
}

.single img {
    width: 100%;
    margin: 0 0 25px 0;
}

.single .table,
.single .list-group {
    margin-bottom: 30px;
}

.single .ul-group {
    padding: 0;
    list-style: none;
}

.single .ul-group li {
    margin-left: 2px;
}

.single .ul-group li::before {
    position: relative;
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.single .ol-group {
    padding-left: 18px;
}


/*******************************/
/********* Footer CSS **********/
/*******************************/
.footer {
    position: relative;
    margin-top: 45px;
    padding-top: 90px;
    background: #092a49;
    clear: both; /* ensure it starts below floated/positioned sections */
    z-index: 10; /* sit above overlapping elements like carousels */
}

.footer .footer-contact,
.footer .footer-link,
.footer .footer-newsletter {
    position: relative;
    margin-bottom: 45px;
    color: #ffffff;
}

.footer .footer-contact h2,
.footer .footer-link h2,
.footer .footer-newsletter h2 {
    position: relative;
    margin-bottom: 30px;
    padding-bottom: 10px;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #ffffff !important; /* White headings on dark footer background */
}

.footer .footer-contact h2::after,
.footer .footer-link h2::after,
.footer .footer-newsletter h2::after {
    position: absolute;
    content: "";
    width: 45px;
    height: 2px;
    bottom: 0;
    left: 0;
    background: #146e70;
}

.footer .footer-link a {
    display: block;
    margin-bottom: 10px;
    color: #ffffff;
    transition: .3s;
}

.footer .footer-link a::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .footer-link a:hover {
    color: #146e70;
    letter-spacing: 1px;
}

.footer .footer-contact p i {
    width: 25px;
}

.footer .footer-social {
    position: relative;
    margin-top: 20px;
}

.footer .footer-social a {
    display: inline-block;
}

.footer .footer-social a i {
    margin-right: 15px;
    font-size: 18px;
    color: #f4a03c !important; /* Orange icons on dark footer background for better visibility */
}

.footer .footer-social a:last-child i {
    margin: 0;
}

.footer .footer-social a:hover i {
    color: #999999;
}

.footer .footer-newsletter .form {
    position: relative;
    width: 100%;
}

.footer .footer-newsletter input {
    height: 60px;
    border: 2px solid #1d2434;
    border-radius: 0;
}

.footer .footer-newsletter .btn {
    position: absolute;
    top: 8px;
    right: 8px;
    height: 44px;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #146e70;
    background: none;
    border-radius: 0;
    border: 2px solid #146e70;
    transition: .3s;
}

.footer .footer-newsletter .btn:hover {
    color: #146e70;
    background: #092a49;
}

.footer .copyright {
    padding: 0 30px;
}

/* help avoid any parent overflow clipping the footer */
.footer .container {
    position: relative;
}

.footer .copyright .row {
    padding-top: 25px;
    padding-bottom: 25px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright p {
    margin: 0;
    color: #999999;
}

.footer .copyright .col-md-6:last-child p {
    text-align: right;
}

.footer .copyright p a {
    color: #ffffff;
}

.footer .copyright p a:hover {
    color: #146e70;
}

@media (max-width: 767.98px) {
    .footer .copyright p,
    .footer .copyright .col-md-6:last-child p {
        margin: 5px 0;
        text-align: center;
    }
}

/*******************************/
/********* Modal Styles ********/
/*******************************/
.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.modal-header {
    background: linear-gradient(135deg, #146e70 0%, #0d4d4f 100%);
    color: #fff;
    border-bottom: none;
    border-radius: 10px 10px 0 0;
    padding: 20px 25px;
}

.modal-header .modal-title {
    color:white !important;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 24px;
    margin: 0;
}

.modal-header .modal-title i {
    margin-right: 10px;
}

.modal-header .close {
    color: #fff;
    opacity: 0.9;
    text-shadow: none;
    font-size: 28px;
    font-weight: 300;
    padding: 0;
    margin: 0;
}

.modal-header .close:hover {
    opacity: 1;
}

.modal-body {
    padding: 30px;
    color: #333;
}

.modal-body h6 {
    color: #092a49;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 15px;
}

.modal-body h6:first-child {
    margin-top: 0;
}

.modal-body p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.modal-body ul {
    padding-left: 25px;
    margin-bottom: 20px;
}

.modal-body ul li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.modal-body ul li strong {
    color: #092a49;
}

.modal-body a {
    color: #146e70;
    text-decoration: none;
}

.modal-body a:hover {
    color: #0d4d4f;
    text-decoration: underline;
}

.modal-footer {
    border-top: 1px solid #e9ecef;
    padding: 20px 25px;
    background: #f8f9fa;
    border-radius: 0 0 10px 10px;
}

.modal-footer .btn {
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
}

.modal-footer .btn-primary {
    background: #146e70;
    border-color: #146e70;
}

.modal-footer .btn-primary:hover {
    background: #0d4d4f;
    border-color: #0d4d4f;
}

/* FAQ Accordion Styles */
#faqAccordion .card {
    border: 1px solid #e9ecef;
    border-radius: 5px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

#faqAccordion .card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
    padding: 0;
}

#faqAccordion .card-header .btn-link {
    color: #092a49;
    text-decoration: none;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
}

#faqAccordion .card-header .btn-link:hover {
    color: #146e70;
    background: #e9ecef;
}

#faqAccordion .card-header .btn-link:focus {
    box-shadow: none;
}

#faqAccordion .card-header .btn-link:not(.collapsed) {
    color: #146e70;
    background: #e9ecef;
}

#faqAccordion .card-body {
    padding: 20px;
    line-height: 1.8;
    color: #555;
}

@media (max-width: 767.98px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-header .modal-title {
        font-size: 20px;
    }
    
    .contact .contact-form {
        padding: 30px 20px;
        border-radius: 15px;
    }
    
    .contact .contact-form h3 {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .contact .contact-form input,
    .contact .contact-form textarea {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .contact .contact-form .btn {
        padding: 14px 35px;
        font-size: 14px;
        width: 100%;
    }
}
