/* Global Styles */
:root {
    --primary-color: #038c47;
    --secondary-color: #303030;
    --light-color: #f9f9f9;
    --dark-color: #222;
    --text-color: #333;
    --text-light: #777;
    --white: #fff;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 5px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    font-size: 1.6rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header p {
    font-size: 1.8rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-size: 1.2rem;
    margin-left: 1rem;
    color: var(--secondary-color);
    font-style: italic;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-item {
    margin-left: 3rem;
    position: relative;
}

.nav-link {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link i {
    margin-left: 0.5rem;
    font-size: 1.2rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.dropdown-menu li {
    padding: 0.5rem 1.5rem;
}

.dropdown-menu li a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.4rem;
    font-weight: 500;
    border-bottom: 1px solid #eee;
    transition: var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--primary-color);
    padding-left: 1rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--secondary-color);
}

/* Hero Slider Styles */
.hero {
    height: 100vh;
    margin-top: 80px;
    position: relative;
}

.hero-slider {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: var(--white);
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(3, 140, 71, 0.6) 0%, rgba(48, 48, 48, 0.7) 100%);
    z-index: 1;
}

.slide-1 {
    background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.slide-2 {
    background-image: url('https://images.unsplash.com/photo-1556761175-b413da4baf72?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
}

.slide-3 {
    background-image: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
}

.swiper-slide .container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
    padding: 0 2rem;
}

.swiper-slide h1 {
    font-size: 5.5rem;
    margin-bottom: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.swiper-slide p {
    font-size: 2.2rem;
    margin-bottom: 3.5rem;
    line-height: 1.6;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.swiper-slide .btn {
    animation: fadeInUp 1s ease-out 0.4s backwards;
    padding: 1.5rem 4rem;
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(3, 140, 71, 0.4);
    transition: all 0.3s ease;
}

.swiper-slide .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(3, 140, 71, 0.6);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.swiper-pagination {
    bottom: 30px !important;
}

.swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    background-color: var(--white);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
    width: 40px;
    border-radius: 7px;
}

/* About Section Styles */
.about-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 2rem;
    font-size: 1.6rem;
    line-height: 1.8;
}

.about-text ul {
    margin: 2rem 0;
    padding-left: 2rem;
}

.about-text ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.about-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section Styles */
.services-section {
    padding: 8rem 0;
    background-color: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background-color: rgba(3, 140, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.service-card p {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.read-more {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

.read-more i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section Styles */
.why-choose-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.why-choose-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
    object-fit: cover;
    height: 500px;
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

.why-choose-text {
    flex: 1;
}

.why-choose-text p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.feature {
    display: flex;
    gap: 1.5rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(3, 140, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.feature h4 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.feature p {
    font-size: 1.4rem;
    margin-bottom: 0;
    color: var(--text-light);
}

/* Footer Styles */
.footer {
    background-color: #f8f9fa;
    color: var(--secondary-color);
    padding-top: 7rem;
    border-top: 1px solid #e9ecef;
}

.footer-top {
    padding-bottom: 5rem;
}

.footer-top .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.footer-col {
    margin-bottom: 3rem;
}

.footer .logo a {
    display: flex;
    align-items: center;
}

.footer .logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer .logo span {
    color: var(--primary-color);
    font-weight: 600;
}

.footer p {
    font-size: 1.4rem;
    margin: 2rem 0;
    color: #6c757d;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(3, 140, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
    border: 1px solid rgba(3, 140, 71, 0.2);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(3, 140, 71, 0.3);
}

.footer-col h3 {
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 1.5rem;
}

.footer-col ul li a {
    font-size: 1.4rem;
    color: #6c757d;
    transition: var(--transition);
    display: block;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 0.5rem;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    color: #6c757d;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-top: 3px;
}

.footer-bottom {
    background-color: #e9ecef;
    padding: 2rem 0;
    border-top: 1px solid #dee2e6;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 1.4rem;
    margin: 0;
    color: #6c757d;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 1.4rem;
    color: #6c757d;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .footer-top .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .about-content,
    .why-choose-content {
        flex-direction: column;
    }

    .about-image,
    .why-choose-image {
        order: -1;
        margin-bottom: 3rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem 0;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
        width: 100%;
        text-align: center;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }

    .dropdown:hover .dropdown-menu {
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
        margin-top: 1rem;
    }

    .hero {
        height: 80vh;
        margin-top: 80px;
    }

    .swiper-slide h1 {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }

    .swiper-slide p {
        font-size: 1.6rem;
        margin-bottom: 2.5rem;
    }

    .swiper-slide .btn {
        padding: 1.2rem 2.5rem;
        font-size: 1.6rem;
    }

    .swiper-slide .container {
        padding: 0 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-top .container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 2.8rem;
    }

    .section-header p {
        font-size: 1.6rem;
    }

    .hero {
        height: 70vh;
    }

    .swiper-slide h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.3;
    }

    .swiper-slide p {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }

    .swiper-slide .btn {
        padding: 1rem 2rem;
        font-size: 1.4rem;
    }

    .swiper-pagination {
        bottom: 20px !important;
    }

    .btn {
        padding: 0.8rem 1.8rem;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* About Page Specific Styles */
.page-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    text-align: center;
    margin-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-hero .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.page-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.page-hero p {
    font-size: 2rem;
}

/* About Intro Section */
.about-intro-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.about-intro-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-intro-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-intro-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-intro-image:hover img {
    transform: scale(1.05);
}

/* Vision Section */
.vision-section {
    padding: 8rem 0;
    background-color: var(--light-color);
}

.vision-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.vision-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.vision-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.vision-image:hover img {
    transform: scale(1.05);
}

.vision-text {
    flex: 1;
}

.vision-text h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.vision-statement {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.vision-list {
    margin-top: 2rem;
}

.vision-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.vision-list li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

/* Mission Section */
.mission-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.mission-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.mission-text {
    flex: 1;
}

.mission-text h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.mission-statement {
    font-size: 1.8rem;
    font-style: italic;
    color: var(--primary-color);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.mission-list {
    margin-top: 2rem;
}

.mission-list li {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(3, 140, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.mission-detail h3 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.mission-detail p {
    font-size: 1.5rem;
    color: var(--text-light);
}

.mission-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.mission-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.mission-image:hover img {
    transform: scale(1.05);
}

/* About Detail Section */
.about-detail-section {
    padding: 8rem 0;
    background-color: var(--light-color);
}

.about-detail-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-detail-text {
    flex: 1;
}

.about-detail-text p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-detail-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-detail-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-detail-image:hover img {
    transform: scale(1.05);
}

/* Team Section */
.team-section {
    padding: 8rem 0;
    background-color: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.team-member {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.team-member:hover {
    transform: translateY(-10px);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 2rem;
    border: 5px solid var(--primary-color);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.position {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.bio {
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background-color: rgba(3, 140, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 8rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.cta-content p {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {

    .about-intro-content,
    .vision-content,
    .mission-content,
    .about-detail-content {
        flex-direction: column;
    }

    .about-intro-image,
    .vision-image,
    .mission-image,
    .about-detail-image {
        order: -1;
        margin-bottom: 3rem;
    }

    .vision-image img,
    .mission-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 3.5rem;
    }

    .page-hero p {
        font-size: 1.8rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2.8rem;
    }

    .cta-content p {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .page-hero h1 {
        font-size: 2.8rem;
    }

    .vision-statement,
    .mission-statement {
        font-size: 1.6rem;
    }
}
/* Service Detail Page Styles */
.service-hero {
    height: 50vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    position: relative;
    color: var(--white);
    text-align: center;
    margin-top: 80px;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
}

.service-hero .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.service-hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
}

.service-hero p {
    font-size: 2rem;
}

/* Service Intro Section */
.service-intro {
    padding: 8rem 0;
    background-color: var(--white);
}

.service-intro-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.service-intro-text {
    flex: 1;
}

.service-intro-text p {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-intro-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service-intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition);
}

.service-intro-image:hover img {
    transform: scale(1.05);
}

/* Service Features Section */
.service-features {
    padding: 8rem 0;
    background-color: var(--light-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(3, 140, 71, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.feature-card h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.feature-card p {
    font-size: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Service Benefits Section */
.service-benefits {
    padding: 8rem 0;
    background-color: var(--white);
}

.benefits-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.benefits-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.benefits-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition);
}

.benefits-image:hover img {
    transform: scale(1.05);
}

.benefits-text {
    flex: 1;
}

.benefits-text h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.benefits-list {
    margin: 3rem 0;
}

.benefits-list li {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.benefits-list li i {
    position: absolute;
    left: 0;
    top: 0.3rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.benefits-list li strong {
    color: var(--secondary-color);
}

.benefits-text p {
    font-size: 1.6rem;
    line-height: 1.8;
}

/* Service CTA Section */
.service-cta {
    padding: 8rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.service-cta .cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.service-cta .cta-content p {
    font-size: 1.8rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.service-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 992px) {

    .service-intro-content,
    .benefits-content {
        flex-direction: column;
    }

    .service-intro-image,
    .benefits-image {
        order: -1;
        margin-bottom: 3rem;
    }

    .benefits-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 3.5rem;
    }

    .service-hero p {
        font-size: 1.8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-cta .cta-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .service-cta .cta-content h2 {
        font-size: 2.8rem;
    }

    .service-cta .cta-content p {
        font-size: 1.6rem;
    }
}

@media (max-width: 576px) {
    .service-hero h1 {
        font-size: 2.8rem;
    }
}