body {
    font-family: 'Archivo', sans-serif;
    line-height: 1.6;
    color: #333;
}

.top-bar {
    background-color: #1a5f4f;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}


.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-bottom-bar {
    display: none;
    background-color: #1a5f4f;
    color: white;
    padding: 8px 0;
    font-size: 14px;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 999;
    left: 0;
    width: 100%;
}

.mobile-bottom-bar span a {
    text-decoration: none;
    color: white;
}

.mobile-bottom-bar .contact-info {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media(max-width:600px) {
    .mobile-bottom-bar {
        display: block;
    }
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar {
    background-color: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    z-index: 999;
    top: 39px;
}

@media(max-width:600px) {
    .navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
    }

    /* .navbar-brand{
        position: fixed;
        z-index: 999;
        top: 0;
        left: 0;
    } */
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #1a5f4f !important;
    text-decoration: none;

}

.logo-circle {
    width: 50px;
    height: 50px;
    background-color: #1a5f4f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 2px;
    background-color: #1a5f4f;
    width: 0;
    height: 2px;
    transition: all 0.5 ease-in-out;
}

.navbar-nav .nav-link:hover::before {
    width: 100%;
}

.navbar-nav .nav-link.active {
    color: #1a5f4f;
}

.navbar-nav .nav-link:hover {
    color: #1a5f4f !important;
}

.btn-quote {
    background-color: #d1ae37;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-quote:hover {
    background-color: #c19a47;
    color: white;
}

.hero-section {
    padding: 80px 0;
    background-color: #fff;
    min-height: 600px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #1a5f4f;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content .success-text {
    color: #d1ae37;
    font-size: 3.5rem;
    font-weight: bold;
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
    margin: 30px 0;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary-custom {
    background-color: #d1ae37;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #c19a47;
    color: white;
}

.btn-outline-custom {
    background-color: transparent;
    color: #1a5f4f;
    border: 2px solid #1a5f4f;
    padding: 13px 30px;
    border-radius: 25px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background-color: #1a5f4f;
    color: white;
}

.stats-section {
    display: flex;
    gap: 60px;
    margin-top: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #d1ae37;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 5px;
}

.hero-image {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.hero-image::before {
    content: '';
    position: absolute;
    right: -48px;
    bottom: -48px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #0d745a24;

}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(26, 95, 79, 0.9);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: 500;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background-color: #1a5f4f;
    color: white;
}

.carousel-prev {
    left: -25px;
    z-index: 1;
}

.carousel-next {
    right: -25px;
    z-index: 1;
}

.carousel-indicators {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    border: none;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: #d1ae37;
    width: 50px;
    border-radius: 6px;
}

@media (max-width: 600px) {
    .top-bar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 999;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .success-text {
        font-size: 2.5rem;
    }

    .hero-buttons {
        align-items: center;
    }

    .stats-section {
        gap: 15px;
        text-align: center;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .stat-number {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .carousel-nav {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .success-text {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 9px 20px;
        font-size: 13px;
    }
}

/* ======================Section 2 =================================== */
.about-section {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.about-label {
        color: #d1ae37;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-title-section-2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1a5f4f;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.highlight-text {
    color: #d1ae37;
}

.description-text-section-2 {
    color: #6c757d;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stats-container-section-2 {
    display: flex;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat-item-section-2 {
    text-align: center;
    flex: 1;
    min-width: 150px;
    padding: 20px 20px;
    background: #ffffff;
    border-radius: 8px;
    box-shadow: rgb(0 0 0 / 5%) 0px 3px 10px;
}

.stat-icon {
    width: 70px;
    height: 70px;
    background-color: #d1ae37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.75rem;
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
}

.stat-number-section-2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a5f4f;
    margin-bottom: 0.25rem;
}

.stat-label-section-2 {
    font-size: 0.875rem;
    color: #6c757d;
    font-weight: 500;
}

.cta-button-section-2 {
    background-color: #1a5f4f;
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(45, 90, 61, 0.3);
}

.cta-button-section-2:hover {
    background-color: #1e3d29;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 90, 61, 0.4);
}

.office-image {
    width: 100%;
    height: 400px;
    border-radius: 1rem;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-container {
    position: relative;
}

.client-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: white;
    padding: 1rem 1.25rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.position-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #d1ae37;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.client-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: #d1ae37;
    margin: 0;
    line-height: 1;
}

.client-text {
    font-size: 0.75rem;
    color: #6c757d;
    margin: 0;
    font-weight: 500;
}

.content-wrapper {
    padding-right: 2rem;
}

@media (max-width: 991.98px) {
    .content-wrapper {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .main-title-section-2 {
        font-size: 2.25rem;
    }

    .stats-container-section-2 {
        justify-content: center;
        gap: 2rem;
    }

    .stat-item-section-2 {
        min-width: 130px;
    }

    .about-section {
        padding: 3rem 0;
    }

    .office-image {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .main-title-section-2 {
        font-size: 1.875rem;
    }

    .stats-container-section-2 {
        align-items: center;
        gap: 1rem;
    }

    .stat-item-section-2 {
        min-width: auto;
    }

    .client-badge {
        bottom: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
    }
}

/* ======================Section 2 End=================================== */
/* ======================Section 3 Start=================================== */
.services-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.section-label {
    color: #d4af37;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 15px;
}

.main-heading-section-acheive {
    color: #0a3d2e;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.section-description {
    color: #6c757d;
    font-size: 18px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon i {
    font-size: 32px;
    color: #ffffff;
}

.service-title {
    color: #0a3d2e;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-description {
    color: #6c757d;
    font-size: 16px;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.service-list li {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.service-list li::before {
    content: "\2022";
    color: #d4af37;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    line-height: 1;
}

.learn-more-link {
    color: #0a3d2e;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
}

.learn-more-link:hover {
    color: #d4af37;
}

.view-all-btn {
    background-color: #0a3d2e;
    color: #ffffff;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-weight: 600;
    margin-top: 40px;
    transition: background-color 0.3s ease;
}

.view-all-btn:hover {
    background-color: #245a32;
}

.achievements-section {
    background-color: #0a3d2e;
    padding: 80px 0;
    color: #ffffff;
}

.achievements-heading {
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 25px;
}

.achievements-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.stat-card {
    text-align: center;
    margin-bottom: 40px;
}

.stat-icon-section-acheive {
    width: 80px;
    height: 80px;
    background-color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon-section-acheive i {
    font-size: 32px;
    color: #245a32;
}

.stat-number-section-acheive {
    color: #d4af37;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-title-section-acheive {
    color: #ffffff;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.stat-description-section-acheive {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.cta-section-section-acheive {
    background-color: #0a3d2e;
    padding: 40px 0 80px;
}

.cta-content-section-acheive {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 25px 20px;
    background: #255144;
    border-radius: 55px;
    text-align: center;
}

.cta-icon-section-acheive {
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-icon-section-acheive i {
    font-size: 24px;
    color: #ffffff;
}

.cta-text-section-acheive {
    color: #ffffff;
    margin: 0;
}

.cta-title-section-acheive {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.cta-subtitle-section-acheive {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.get-started-btn-section-acheive {
    background-color: #d4af37;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.get-started-btn-section-acheive:hover {
    background-color: #b8941f;
}

@media (max-width: 768px) {

    .main-heading-section-acheive,
    .achievements-heading {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .stat-icon-section-acheive {
        margin-bottom: 0px;
    }

    .cta-title-section-acheive {
        font-size: 15px;
    }

    .service-card {
        margin-bottom: 30px;
    }

    .achievements-description {
        font-size: 13px;
    }

    .cta-content-section-acheive {
        text-align: center;
        gap: 15px;
        border-radius: 5px;
    }

    .stat-number-section-acheive {
        font-size: 36px;
    }
}

/* ======================Section 3 End=================================== */
/* ======================Section 4 Start=================================== */
.main-container-section-4 {
    line-height: 1.6;
    padding: 80px 0px;
    background-color: #ffffff;
    color: #333;
}

.section-label-section-4 {
    color: #d4af37;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    text-align: center;
}

.section-title-section-4 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a1a;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.2;
}

.section-description-section-4 {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    max-width: 650px;
    margin: 0 auto 60px;
    text-align: center;
}

.gallery-section-section-4 {
    margin-bottom: 120px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.gallery-item {
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.btn-gallery {
    background-color: #2d5a27;
    color: white;
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-gallery:hover {
    background-color: #1e3a1a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 90, 39, 0.3);
}

.clients-section {
    margin-bottom: 60px;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px 0 40px;
    flex-wrap: wrap;
    gap: 40px;
}

.client-logo {
    background-color: #2c2c2c;
    color: white;
    padding: 18px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    min-width: 140px;
    text-align: center;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    background-color: #1a1a1a;
    transform: translateY(-3px);
}

.stats-section-section-4 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

.stat-item-section-4 {
    text-align: center;
    flex: 1;
    min-width: 250px;
    padding: 20px 10px;
    box-shadow: rgb(0 0 0 / 5%) 0px 5px 10px;
    border-radius: 10px;
    background: #f9fafc;
}

.stat-icon-section-4 {
    width: 60px;
    height: 60px;
    background-color: #d4af37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    color: white;
    font-size: 18px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.stat-number-section-4 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-description-section-4 {
    color: #666;
    font-size: 15px;
    font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .section-title-section-4 {
        font-size: 2.2rem;
    }

    .main-container-section-4 {
        padding: 60px 0px;
    }

    .stats-section-section-4 {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-title-section-4 {
        font-size: 1.9rem;
    }

    .section-description-section-4 {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .client-logos {
        gap: 15px;
        margin: 40px 0 30px;
    }

    .client-logo {
        min-width: 150px;
    }

    .stats-section-section-4 {
        flex-direction: column;
        gap: 20px;
    }

    .stat-item-section-4 {
        min-width: 100%;
    }

    .hero-image {
        display: none;
    }

    .main-container-section-4 {
        padding: 40px 0px;
    }
}

@media (max-width: 576px) {
    .section-title-section-4 {
        font-size: 1.6rem;
    }

    .gallery-grid {
        gap: 15px;
    }

    .btn-gallery {
        padding: 12px 28px;
        font-size: 15px;
    }

    .stat-number-section-4 {
        font-size: 22px;
    }

    .stat-icon-section-4 {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* ======================Section 4 End=================================== */
/* ======================Section 5 Start=================================== */
.contact-container {
    padding: 40px 0;
}

.left-section {
    padding: 60px 50px;
}

.get-in-touch-label {
    background: #d1ae37;
    color: #333333;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.main-heading-contact {
    font-size: 36px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 20px;
    line-height: 1.2;
}

.description-contact {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.feature-contacts-list-contact {
    margin-bottom: 40px;
}

.feature-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-contact-icon {
    width: 24px;
    height: 24px;
    background: #d1ae37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-contact-icon i {
    color: #333333;
    font-size: 12px;
}

.feature-contact-text {
    color: #666666;
    font-size: 16px;
}

.contact-info {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: #d1ae37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.contact-icon i {
    color: #333333;
    font-size: 16px;
}

.contact-details h6 {
    margin: 0;
    font-size: 12px;
    color: #999999;
    font-weight: 600;
}

.contact-details p {
    margin: 0;
    font-size: 14px;
    color: #333333;
    font-weight: 600;
}

.right-section {
    padding: 60px 50px;
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 5px 8px;
    border-radius: 12px;
}

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 8px;
    display: block;
}

.required {
    color: #e74c3c;
}

.form-control {
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #2c5530;
    box-shadow: 0 0 0 0.2rem rgba(44, 85, 48, 0.25);
}

.form-control::placeholder {
    color: #aaaaaa;
}

.message-textarea {
    min-height: 120px;
    resize: vertical;
}

.character-count {
    font-size: 12px;
    color: #999999;
    text-align: right;
    margin-top: 5px;
}

.submit-btn {
    background: #2c5530;
    color: #ffffff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: background-color 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    background: #234429;
}

@media (max-width: 992px) {
    .contact-container {
        padding: 20px;
    }

    .left-section,
    .right-section {
        padding: 40px 30px;
    }

    .main-heading-contact {
        font-size: 28px;
    }

    .contact-info {
        gap: 20px;
    }
}

@media (max-width: 768px) {

    .left-section,
    .right-section {
        padding: 30px 20px;
    }

    .main-heading-contact {
        font-size: 24px;
    }

    .contact-info {
        flex-direction: column;
        gap: 15px;
    }
}

/* ======================Section 5 End=================================== */
/* ======================Section 4 Faq Start=================================== */
.contain-12-full {
    padding: 60px 0px;
}

.page-header-12 {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title-12 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #0a3d2e;
}

.highlight-green {
    color: #0a3d2e;
}

.page-subtitle-12 {
    color: #9ca3af;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.category-nav {
    margin-bottom: 2rem;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.category-item {
    background: #f3f4f6;
    border: none;
    border-radius: 25px;
    padding: 10px 30px;
    color: #3c3c3c;
    text-decoration: none;
    font-size: 17px;
    transition: all 0.2s;
    cursor: pointer;
    font-weight: 600;
}

.category-item:hover,
.category-item.active {
    background: #0a3d2e;
    border-color: #0a3d2e;
    color: #ffffff;
    text-decoration: none;
}

.faq-section {
    margin-bottom: 3rem;
}

.faq-item {
    background: #fff;
    border: 1px solid #d4d4d4;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.2s;
}

.faq-item:hover {
    border-color: #6b7280;
}

.faq-header {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.faq-category {
    background: #1e3a1a;
    color: #ffffff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.faq-question {
    color: #0a3d2e;
    font-weight: 600;
    margin: 0;
    font-size: 18px;
    flex: 1;
}

.faq-content {
    padding: 0 1.25rem 1.25rem;
    color: #585858;
    line-height: 1.6;
    display: none;
}

.faq-content.active {
    display: block;
}

.support-section {
    background: #fff;
    border-radius: 0.75rem;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid #ccc;
}

.support-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
}

.support-text {
    color: #696969;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.support-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-support {
    background: #1e3a1a;
    border: 1px solid #1e3a1a;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-support:hover {
    background: #059669;
    border-color: #059669;
    color: #ffffff;
    text-decoration: none;
}

.btn-outline-12 {
    background: transparent;
    border: 1px solid #d1ae37;
    color: #d1ae37;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-outline-12:hover {
    border-color: #d1ae37;
    color: #d1ae37;
    text-decoration: none;
}

@media (max-width: 768px) {
    .page-title-12 {
        font-size: 2rem;
    }

    .category-list {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        justify-content: start;
    }

    .category-item {
        white-space: nowrap;
        flex-shrink: 0;
    }

    .support-section {
        padding: 2rem 1.5rem;
    }

    .support-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-support,
    .btn-outline-12 {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 576px) {
    .faq-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .faq-question {
        font-size: 0.95rem;
    }
}

/* ======================Section 4 Faq End=================================== */
/* ======================Section tESTIMONIAL Start=================================== */
.testimonial-section {
    background: #0a3d2e;
    padding: 80px 0;
}

.section-label-testimonial {
    color: #d1ae37;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title-testimonial {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-description-testimonial {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    min-height: 300px;
}

.quote-icon {
    width: 60px;
    height: 60px;
    background: #d1ae37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 24px;
    color: #1e5128;
    font-weight: bold;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    font-style: italic;
    margin-bottom: 30px;
    text-align: center;
}

.rating {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.star-testimonial {
    color: #d36c03;
    font-size: 31px;
    line-height: 1.2;
    margin: 0 2px;
}

.client-info {
    text-align: center;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 15px;
    background: #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #6c757d;
}

.client-name {
    font-weight: 700;
    color: #1e5128;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.client-position {
    color: #6c757d;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.client-company {
    color: #d1ae37;
    font-size: 0.9rem;
    font-weight: 600;
}

.owl-carousel.testimonial-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
}

.owl-carousel.testimonial-carousel .owl-nav button {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #255144;
    color: white;
    line-height: 1.2;
    font-size: 38px;
    outline: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}

.owl-carousel.testimonial-carousel .owl-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

.owl-carousel.testimonial-carousel .owl-nav .owl-prev {
    left: -5px;
}

.owl-carousel.testimonial-carousel .owl-nav .owl-next {
    right: -5px;
}

.owl-carousel.testimonial-carousel .owl-dots {
    text-align: center;
    margin-top: 40px;
}

.owl-carousel.testimonial-carousel .owl-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #6c757d;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.owl-carousel.testimonial-carousel .owl-dot.active {
    background: #d1ae37;
    width: 30px;
    border-radius: 15px;
}

.quote-icon img {
    width: 24px !important;
}

@media (max-width: 768px) {
    .testimonial-section {
        padding: 60px 0;
    }

    .section-title-testimonial {
        font-size: 2rem;
    }

    .testimonial-card {
        padding: 30px 20px;
        margin: 10px;
    }

    .owl-carousel.testimonial-carousel .owl-nav button {
        display: none;
    }
}

@media (max-width: 576px) {
    .section-title-testimonial {
        font-size: 1.75rem;
    }

    .section-description-testimonial {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .testimonial-text {
        font-size: 1rem;
    }
}

/* ======================Section tESTIMONIAL End=================================== */
/* ======================Section Footer Start=================================== */
.main-container-footer {
    background-color: #1e4d3a;
    color: #ffffff;
    padding: 60px 0;
}

.company-section {
    margin-bottom: 50px;
}

.company-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-weight: bold;
    color: #1e4d3a;
    font-size: 24px;
}

.company-name {
    font-size: 36px;
    font-weight: bold;
    margin: 0;
}

.company-description {
    font-size: 14px;
    line-height: 1.6;
    margin: 20px 0;
    max-width: 350px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 35px;
    height: 35px;
    background-color: #d1ae37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #1e4d3a;
    font-size: 16px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #d1ae37;
    color: #1e4d3a;
}

.content-columns {
    margin-bottom: 50px;
}

.column-header {
    color: #d1ae37;
    padding: 12px 0px;
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 0;
}

.column-content {
    min-height: 250px;
}

.column-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-content li {
    padding: 8px 0;
    font-size: 14px;
}

.column-content li:last-child {
    border-bottom: none;
}

.column-content a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.column-content a:hover {
    color: #d1ae37;
}

.contact-info-footer {
    font-size: 14px;
    line-height: 1.8;
}

.contact-item-footer {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-icon-footer {
    color: #d1ae37;
    margin-right: 10px;
    margin-top: 2px;
    width: 16px;
}

.location-section {
    margin-bottom: 30px;
}

.location-header {
    font-size: 18px;
    font-weight: bold;
    color: #d1ae37;
    margin-bottom: 20px;
}

.map-container {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-section {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    margin-top: 30px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    margin-left: 15px;
}

.footer-links a:hover {
    color: #d1ae37;
}

.activate-section {
    text-align: right;
    font-size: 12px;
}

.activate-section a {
    color: #ffffff;
    text-decoration: none;
}

.activate-section a:hover {
    color: #d1ae37;
}

@media (max-width: 768px) {
    .company-name {
        font-size: 28px;
    }

    .services-section {
        padding: 30px 0;
    }

    .company-description {
        max-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .activate-section {
        text-align: center;
    }

    .column-content {
        min-height: auto;
    }

    .map-container {
        height: 250px;
    }

    .achievements-section {
        padding: 50px 0;
    }

    .gallery-section-section-4 {
        margin-bottom: 40px;
    }

    .contain-12-full {
        padding: 40px 0px;
    }
}

@media (max-width: 576px) {
    .company-logo {
        flex-direction: column;
        align-items: flex-start;
    }

    .logo-icon {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .company-name {
        font-size: 24px;
    }

    .company-section {
        margin-bottom: 0px;
    }

    .content-columns {
        margin-bottom: 10px;
    }

    .main-container-footer {
        padding: 20px 0;
    }

    .social-icons {
        justify-content: flex-start;
    }
}



.margin-top {
    margin-top: 64px;
}

/* ======================Section Footer End=================================== */

.business-text {
    color: rgb(212, 175, 55);
    text-align: center;
}

.business-pera {
    text-align: center;
    color: rgb(108, 117, 125);
    font-size: 18px;
}

/* Stylish Toggle Button */
#toggleOfficesBtn {
    background: #d1ae37;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(13, 202, 240, 0.3); */
}

#toggleOfficesBtn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 20px rgba(102, 16, 242, 0.4); */
}

/* Hidden state */
#officeAddresses {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: all 0.7s ease;
}

/* Visible state with animation */
#officeAddresses.show {
    max-height: 1000px;
    /* enough to fit all content */
    opacity: 1;
}

/* Office Card Styles */
.office-card {
    background: #f8f9fa;
    color: #212529;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.1);
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease;
}

/* Animated state */
.office-card.show {
    transform: translateY(0);
    opacity: 1;
}

.office-card h6 {
    color: #0d6efd;
}

.officeAddresses h6 span {
    color: #1e4d3a;
}


.border-bottom {
    border-bottom: 1px solid black;
}

.main-title-section-2 .span-text {
    font-size: 1.2rem;
    margin-top: 0;
    color: #0a3d2e
}

.list-styling li::marker {
    color: #d1ae37;
}

.section-tittle{
    color: #6c757d;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.dark-heading{
    color: #1e3a1a;
    font-size: 1.8rem;
    margin-top: 2rem;
}

.contact-icon-footer-s{
    color: #d1ae37;
    margin-right: 10px;
    margin-top: 2px;
    width: 16px;
    font-size: 1rem;
}

.contact-icon-about{
    margin-right: 10px;
    margin-top: 2px;
    width: 16px;
    position: relative;
    left: 3px;

}