/* Base Styles */
:root {
    /* Primary Colors */
    --primary-color: #044c4c;
    --primary-light: #3c837b;
    --primary-dark: #1c5c5b;
    
    /* Accent Colors */
    --accent-color: #3c837b;
    --accent-dark: #1c5c5b;
    
    /* Background Colors */
    --background-color: #FFFFFF;
    --background-light: #F8FAFC;
    --background-teal: #E6F0F0;
    
    /* Text Colors */
    --text-color: #1A1A1A;
    --text-body: #4A5568;
    --text-light: #718096;
    
    /* UI Colors */
    --border-color: #E2E8F0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --overlay-color: rgba(0, 0, 0, 0.5);
    
    /* Gradients */
    --gradient-start: rgba(4, 76, 76, 0.9);
    --gradient-end: rgba(28, 92, 91, 0.9);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-dark));
    
    /* Spacing */
    --section-spacing: 6rem;
    --container-padding: 2rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Layout */
    --navbar-height: 4rem;
    --section-bg: var(--background-light);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

.accent {
    color: var(--accent-color);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
    height: var(--navbar-height);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--primary-dark);
    padding: 0.25rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.accent-dark {
    color: var(--accent-color);
}

.tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-right: 1rem;
}

.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: white;
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-dark);
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .brand-name {
    color: white;
    font-size: 1.25rem;
}

.close-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    color: var(--accent-color);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: white;
    padding-left: 0.5rem;
}

.mobile-nav-links a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Navbar */
@media screen and (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.25rem 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo {
        height: 35px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .tagline {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-container {
        gap: 0.5rem;
    }

    .logo {
        height: 30px;
    }

    .mobile-menu {
        width: 100%;
        max-width: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 2rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--navbar-height) + 2rem) 0 4rem;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"><path fill="%23ffffff" fill-opacity="0.1" d="M1 3h1v1H1V3zm2-2h1v1H3V1z"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    
}

.hero-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 1rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-cards .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-cards .card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-cards .card a,
.contact-cards .card div {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1rem;
}

.contact-cards .card i {
    font-size: 1.5rem;
}

/* Mission & Vision Section */
.mission-vision {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-header .badge-container {
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .section-header {
        padding: 2rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .section-header {
        padding: 1.5rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mission .content,
.vision .content {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px var(--shadow-color);
    height: 100%;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* Services Section */
.services {
    padding: var(--section-spacing) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::before,
.service-card::after {
    display: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.15);
}

.service-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--accent-rgb), 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -75px;
    left: -75px;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.service-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Services Categories */
.services-categories {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.category-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.category-card ul li:last-child {
    border-bottom: none;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 300px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    margin-top: 4rem;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.875rem;
    margin: 0;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links-section h4,
.footer-contact-section h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-contact-section .contact-text .value {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    margin-top: 4rem;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.875rem;
    margin: 0;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links-section h4,
.footer-contact-section h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-contact-section .contact-text .value {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        justify-content: center;
    }
}

.footer-logo {
    width: 50px;
    height: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.875rem;
    margin: 0;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links-section h4,
.footer-contact-section h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-contact-section .contact-text .value {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    margin-top: 4rem;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.875rem;
    margin: 0;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links-section h4,
.footer-contact-section h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-contact-section .contact-text .value {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    margin-top: 4rem;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.875rem;
    margin: 0;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links-section h4,
.footer-contact-section h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-contact-section .contact-text .value {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    background: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    margin-top: 4rem;
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.875rem;
    margin: 0;
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links-section h4,
.footer-contact-section h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.875rem;
    opacity: 0.8;
}

.footer-contact-section .contact-text .value {
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        justify-content: center;
    }
}

/* Base Styles */
:root {
    /* Primary Colors */
    --primary-color: #044c4c;
    --primary-light: #3c837b;
    --primary-dark: #1c5c5b;
    
    /* Accent Colors */
    --accent-color: #3c837b;
    --accent-dark: #1c5c5b;
    
    /* Background Colors */
    --background-color: #FFFFFF;
    --background-light: #F8FAFC;
    --background-teal: #E6F0F0;
    
    /* Text Colors */
    --text-color: #1A1A1A;
    --text-body: #4A5568;
    --text-light: #718096;
    
    /* UI Colors */
    --border-color: #E2E8F0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --overlay-color: rgba(0, 0, 0, 0.5);
    
    /* Gradients */
    --gradient-start: rgba(4, 76, 76, 0.9);
    --gradient-end: rgba(28, 92, 91, 0.9);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-dark));
    
    /* Spacing */
    --section-spacing: 6rem;
    --container-padding: 2rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Layout */
    --navbar-height: 4rem;
    --section-bg: var(--background-light);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

.accent {
    color: var(--accent-color);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
    height: var(--navbar-height);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--primary-dark);
    padding: 0.25rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.accent-dark {
    color: var(--accent-color);
}

.tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-right: 1rem;
}

.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: white;
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-dark);
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .brand-name {
    color: white;
    font-size: 1.25rem;
}

.close-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    color: var(--accent-color);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: white;
    padding-left: 0.5rem;
}

.mobile-nav-links a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Navbar */
@media screen and (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.25rem 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo {
        height: 35px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .tagline {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-container {
        gap: 0.5rem;
    }

    .logo {
        height: 30px;
    }

    .mobile-menu {
        width: 100%;
        max-width: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 2rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--navbar-height) + 2rem) 0 4rem;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"><path fill="%23ffffff" fill-opacity="0.1" d="M1 3h1v1H1V3zm2-2h1v1H3V1z"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    
}

.hero-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 1rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-cards .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-cards .card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-cards .card a,
.contact-cards .card div {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1rem;
}

.contact-cards .card i {
    font-size: 1.5rem;
}

/* Mission & Vision Section */
.mission-vision {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-header .badge-container {
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .section-header {
        padding: 2rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .section-header {
        padding: 1.5rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mission .content,
.vision .content {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px var(--shadow-color);
    height: 100%;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* Services Section */
.services {
    padding: var(--section-spacing) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::before,
.service-card::after {
    display: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.15);
}

.service-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--accent-rgb), 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -75px;
    left: -75px;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.service-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Services Categories */
.services-categories {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.category-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.category-card ul li:last-child {
    border-bottom: none;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 300px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-color-dark);
}

@media (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-color-dark);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-color-dark);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-color-dark);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-body);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-color-dark);
}

.modern-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--primary-dark);
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-color-dark);
}

.modern-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--primary-dark);
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.newsletter-form button {
    padding: 0.75rem 1.5rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-color-dark);
}

.modern-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 4rem 0 2rem;
}

.footer-main-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--primary-dark);
    color: white;
    padding: 1rem 0;
    text-align: center;
    font-size: 0.875rem;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: white;
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    display: inline-block;
}

.footer-link:hover {
    color: var(--accent-color);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
/* Base Styles */
:root {
    /* Primary Colors */
    --primary-color: #044c4c;
    --primary-light: #3c837b;
    --primary-dark: #1c5c5b;
    
    /* Accent Colors */
    --accent-color: #3c837b;
    --accent-dark: #1c5c5b;
    
    /* Background Colors */
    --background-color: #FFFFFF;
    --background-light: #F8FAFC;
    --background-teal: #E6F0F0;
    
    /* Text Colors */
    --text-color: #1A1A1A;
    --text-body: #4A5568;
    --text-light: #718096;
    
    /* UI Colors */
    --border-color: #E2E8F0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --overlay-color: rgba(0, 0, 0, 0.5);
    
    /* Gradients */
    --gradient-start: rgba(4, 76, 76, 0.9);
    --gradient-end: rgba(28, 92, 91, 0.9);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-dark));
    
    /* Spacing */
    --section-spacing: 6rem;
    --container-padding: 2rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Layout */
    --navbar-height: 4rem;
    --section-bg: var(--background-light);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

.accent {
    color: var(--accent-color);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
    height: var(--navbar-height);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--primary-dark);
    padding: 0.25rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.accent-dark {
    color: var(--accent-color);
}

.tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-right: 1rem;
}

.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: white;
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-dark);
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .brand-name {
    color: white;
    font-size: 1.25rem;
}

.close-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    color: var(--accent-color);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: white;
    padding-left: 0.5rem;
}

.mobile-nav-links a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Navbar */
@media screen and (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.25rem 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo {
        height: 35px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .tagline {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-container {
        gap: 0.5rem;
    }

    .logo {
        height: 30px;
    }

    .mobile-menu {
        width: 100%;
        max-width: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 2rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--navbar-height) + 2rem) 0 4rem;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"><path fill="%23ffffff" fill-opacity="0.1" d="M1 3h1v1H1V3zm2-2h1v1H3V1z"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    
}

.hero-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 1rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-cards .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-cards .card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-cards .card a,
.contact-cards .card div {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1rem;
}

.contact-cards .card i {
    font-size: 1.5rem;
}

/* Mission & Vision Section */
.mission-vision {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-header .badge-container {
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .section-header {
        padding: 2rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .section-header {
        padding: 1.5rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mission .content,
.vision .content {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px var(--shadow-color);
    height: 100%;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* Services Section */
.services {
    padding: var(--section-spacing) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::before,
.service-card::after {
    display: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.15);
}

.service-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--accent-rgb), 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -75px;
    left: -75px;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.service-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Services Categories */
.services-categories {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.category-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.category-card ul li:last-child {
    border-bottom: none;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 300px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
/* Base Styles */
:root {
    /* Primary Colors */
    --primary-color: #044c4c;
    --primary-light: #3c837b;
    --primary-dark: #1c5c5b;
    
    /* Accent Colors */
    --accent-color: #3c837b;
    --accent-dark: #1c5c5b;
    
    /* Background Colors */
    --background-color: #FFFFFF;
    --background-light: #F8FAFC;
    --background-teal: #E6F0F0;
    
    /* Text Colors */
    --text-color: #1A1A1A;
    --text-body: #4A5568;
    --text-light: #718096;
    
    /* UI Colors */
    --border-color: #E2E8F0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --overlay-color: rgba(0, 0, 0, 0.5);
    
    /* Gradients */
    --gradient-start: rgba(4, 76, 76, 0.9);
    --gradient-end: rgba(28, 92, 91, 0.9);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--accent-dark));
    
    /* Spacing */
    --section-spacing: 6rem;
    --container-padding: 2rem;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Layout */
    --navbar-height: 4rem;
    --section-bg: var(--background-light);
}

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

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

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

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

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

.accent {
    color: var(--accent-color);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 0.5rem 0;
    height: var(--navbar-height);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: var(--primary-dark);
    padding: 0.25rem 0;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-container:hover .logo {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: white;
    line-height: 1.2;
}

.accent-dark {
    color: var(--accent-color);
}

.tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-right: 1rem;
}

.nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: white;
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    color: var(--accent-color);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--primary-dark);
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1001;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-header .brand-name {
    color: white;
    font-size: 1.25rem;
}

.close-menu-btn {
    background: none;
    border: none;
    color: white;
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.close-menu-btn:hover {
    color: var(--accent-color);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    color: white;
    padding-left: 0.5rem;
}

.mobile-nav-links a.active {
    color: var(--accent-color);
    font-weight: 600;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Responsive Navbar */
@media screen and (max-width: 1024px) {
    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 0.25rem 0;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo {
        height: 35px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .tagline {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 480px) {
    .logo-container {
        gap: 0.5rem;
    }

    .logo {
        height: 30px;
    }

    .mobile-menu {
        width: 100%;
        max-width: none;
    }
}

/* Hero Section */
.hero {
    position: relative;
    overflow: hidden;
    border-radius: 0 0 2rem 2rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--navbar-height) + 2rem) 0 4rem;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 0 0 2rem 2rem;
    overflow: hidden;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="4" height="4" viewBox="0 0 4 4"><path fill="%23ffffff" fill-opacity="0.1" d="M1 3h1v1H1V3zm2-2h1v1H3V1z"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    
}

.hero-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
}

.hero-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin: 1rem 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.contact-cards .card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.contact-cards .card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-cards .card a,
.contact-cards .card div {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-size: 1rem;
}

.contact-cards .card i {
    font-size: 1.5rem;
}

/* Mission & Vision Section */
.mission-vision {
    padding: var(--section-spacing) 0;
    background-color: var(--background-light);
}

.section-header {
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-header .badge-container {
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .section-header {
        padding: 2rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .section-header {
        padding: 1.5rem 1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mission .content,
.vision .content {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 20px var(--shadow-color);
    height: 100%;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.feature .dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* Services Section */
.services {
    padding: var(--section-spacing) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.service-card::before,
.service-card::after {
    display: none;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.15);
}

.service-icon {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.1) 0%, rgba(var(--accent-rgb), 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.service-icon::before {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(var(--primary-rgb), 0.2) 0%, transparent 70%);
    border-radius: 50%;
    top: -75px;
    left: -75px;
}

.service-icon::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.2) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
}

.service-icon i {
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    color: var(--accent-color);
}

.service-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.service-content p {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.service-content .btn {
    align-self: flex-start;
    margin-top: auto;
}

/* Services Categories */
.services-categories {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-color);
}

.category-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.category-icon i {
    font-size: 2rem;
    color: white;
}

.category-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.category-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.category-card ul li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

.category-card ul li:last-child {
    border-bottom: none;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-info {
    max-width: 300px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-links,
.footer-contact,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

/* Our Story Section */
.our-story {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item .label {
    color: var(--text-light);
    font-size: 0.9rem;
}

.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Our Values Section */
.our-values {
    padding: 5rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Our Team Section */
.our-team {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.member-info {
    padding: 1.5rem;
    text-align: center;
}

.member-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.member-info .position {
    color: var(--accent-color);
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-info .bio {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.member-info .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.member-info .social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--section-bg);
    border-radius: 50%;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.member-info .social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text {
        order: 2;
    }

    .story-image {
        order: 1;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Information Section */
.contact-info {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

section.contact-info .info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

section.contact-info .info-card {
    background-color: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

section.contact-info .info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

section.contact-info .info-card i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

section.contact-info .info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

section.contact-info .info-card p {
    color: var(--text-body);
    line-height: 1.6;
}

section.contact-info .info-card a,
section.contact-info .info-card p {
    display: block;
    margin-top: 0.5rem;
    color: var(--text-body);
    text-decoration: none;
    transition: color 0.3s ease;
}

section.contact-info .info-card a:hover {
    color: var(--primary-color);
}

@media (max-width: 768px) {
    section.contact-info .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-content {
    padding: 2rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px var(--shadow-color);
}

.contact-form-fields {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.form-group input.error,
.form-group textarea.error {
    border-color: #ff3b3b;
}

.map-container {
    height: 100%;
    min-height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
}

/* Form Success/Error Messages */
.form-message {
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 5px;
    font-weight: 500;
    display: none;
}

.form-message.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
    display: block;
}

.form-message.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
    display: block;
}

/* Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* Responsive Styles for Contact Page */
@media screen and (max-width: 768px) {
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-container {
        min-height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* Page Transitions */
.main-content {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.main-content.fade-out {
    opacity: 0;
}

.main-content.fade-in {
    opacity: 1;
}

/* Modern Footer Styles */
.modern-footer {
    position: relative;
    background: var(--primary-dark);
    color: white;
    padding: 6rem 0 2rem;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-waves svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-waves .shape-fill {
    fill: var(--background-color);
}

.footer-main-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.brand-text h3 {
    font-size: 1.5rem;
    margin: 0;
}

.brand-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.brand-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Social Links */
.footer-brand .social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Quick Links Section */
.footer-links-section h4,
.footer-contact-section h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-links-section h4::after,
.footer-contact-section h4::after,
.footer-newsletter h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links-grid {
    display: grid;
    gap: 0.75rem;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-link:hover i {
    transform: translateX(3px);
}

/* Contact Section */
.footer-contact-section .contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    background-color: transparent;
    padding: 0;
    box-shadow: none;
}

.footer-contact-section .contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.footer-contact-section .contact-item:hover {
    color: var(--accent-color);
    transform: none;
    background-color: transparent;
}

.footer-contact-section .icon-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-contact-section .contact-item:hover .icon-container {
    background: var(--accent-color);
    color: white;
}

.footer-contact-section .contact-text {
    display: flex;
    flex-direction: column;
}

.footer-contact-section .contact-text .label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact-section .contact-text .value {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Section */
.footer-newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.newsletter-form .input-group {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-form button {
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: var(--border-radius-md);
    background: var(--accent-color);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--accent-color);
}

/* Responsive Footer */
@media screen and (max-width: 1200px) {
    .footer-main-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    .footer-main-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 480px) {
    .modern-footer {
        padding-top: 4rem;
    }

    .footer-waves svg {
        height: 40px;
    }

    .footer-logo-container {
        flex-direction: column;
        text-align: center;
    }

    .brand-text {
        text-align: center;
    }

    .footer-brand .social-links {
        justify-content: center;
    }

    .footer-links-section h4::after,
    .footer-contact-section h4::after,
    .footer-newsletter h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links-section,
    .footer-contact-section,
    .footer-newsletter {
        text-align: center;
    }

    .footer-links-grid {
        justify-items: center;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form .input-group {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* Service Filters */
.service-filters-container {
    margin-top: 2rem;
    margin-bottom: 3rem;
    text-align: center;
}

.filter-intro {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
}

.filter-intro::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--text-color);
    border: none;
    border-radius: var(--border-radius-md);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
}

.filter-btn:hover {
    background-color: var(--background-teal);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(4, 76, 76, 0.2);
}

.category-card {
    transition: all 0.5s ease, transform 0.3s ease;
}

.category-card.hidden {
    display: none;
}

@media screen and (max-width: 768px) {
    .service-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 100%;
        max-width: 300px;
    }
}

/* About Page Enhanced Styles */

/* Badge Styles */
.badge-container {
    margin-bottom: 1rem;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: rgba(60, 131, 123, 0.1);
    color: var(--accent-color);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.15);
}

.stat-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* Mission Vision Enhanced */
.mission .content, 
.vision .content {
    position: relative;
    overflow: hidden;
}

.icon-container {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-container i {
    font-size: 1.5rem;
}

/* Timeline in Our Story */
.story-milestones {
    margin-top: 2rem;
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--accent-color);
}

.milestone {
    position: relative;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.milestone:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--accent-color);
    border: 2px solid white;
}

.milestone .year {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.milestone .achievement {
    color: var(--text-body);
}

/* Story Image */
.story-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
}

.story-image img {
    border-radius: 50% !important;
}

/* Logo Large */
.logo-large {
    max-width: 70%;
    height: auto;
    z-index: 2;
    position: relative;
    border-radius: 50% !important;
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.25);
    border: 8px solid white;
    padding: 10px;
    background: white;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    object-fit: contain;
}

.story-image:hover .logo-large {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(4, 76, 76, 0.3);
}

/* Value Cards Enhanced */
.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.8rem;
    background-color: rgba(4, 76, 76, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 5px 15px rgba(4, 76, 76, 0.1);
}

.value-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.value-card:hover .value-icon {
    background-color: var(--primary-color);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.value-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Team Members Enhanced */
.team-member {
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.member-image {
    position: relative;
    overflow: hidden;
}

.social-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 76, 76, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-member:hover .social-overlay {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Expertise Tags */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1rem 0;
}

.tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: rgba(4, 76, 76, 0.1);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Partner Card Enhanced */
.partner-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background-color: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 5px 20px var(--shadow-color);
    margin-top: 3rem;
}

.partner-image {
    overflow: hidden;
}

.partner-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.partner-card:hover .partner-image img {
    transform: scale(1.05);
}

.partner-info {
    padding: 2rem;
}

.partner-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.partner-info .position {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.partner-description {
    margin-top: 1.5rem;
    color: var(--text-body);
}

.partner-description p {
    margin-bottom: 1rem;
}

.partner-contact {
    margin-top: 1.5rem;
}

.btn-outline {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: var(--border-radius-md);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--section-bg);
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 20px var(--shadow-color);
    margin: 2rem 0;
    position: relative;
    display: none;
}

.testimonial-card:first-child {
    display: block;
}

.quote-mark {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-mark i {
    font-size: 1.2rem;
}

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

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-color);
}

.author-title {
    color: var(--text-light);
    font-size: 0.9rem;
}

.rating {
    color: #FFD700;
}

.testimonial-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.prev-btn, .next-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.prev-btn:hover, .next-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Enhanced CTA Section */
.cta-section {
    padding: 5rem 0;
}

.cta-card {
    position: relative;
    background: var(--gradient-primary);
    padding: 4rem 2rem;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(4, 76, 76, 0.2);
}

.cta-card .content {
    position: relative;
    z-index: 2;
    color: white;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-card p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-light {
    background-color: white;
    color: var(--primary-color);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: var(--background-light);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline-light {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: white;
    color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles for About Page */
@media screen and (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .partner-card {
        grid-template-columns: 1fr;
    }
    
    .partner-image {
        max-height: 300px;
    }
}

@media screen and (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .cta-card h2 {
        font-size: 2rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons a {
        width: 100%;
        justify-content: center;
    }
}

/* Hero Filter Styles - Enhanced Version */
.hero-filter-container {
    margin-top: 3rem;
    width: 100%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    perspective: 1000px;
}

.hero-filter-card {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.15),
        0 0 30px rgba(60, 131, 123, 0.2);
    display: flex;
    flex-direction: column;
    transform-style: preserve-3d;
    transform: rotateX(2deg);
    transition: transform 0.5s ease;
    position: relative;
}

.hero-filter-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, 
        rgba(255, 255, 255, 0) 20%, 
        rgba(255, 255, 255, 0.1) 45%,
        rgba(255, 255, 255, 0.1) 55%,
        rgba(255, 255, 255, 0) 80%);
    z-index: 1;
    animation: shine 3s infinite linear;
    pointer-events: none;
}

@keyframes shine {
    0% {
        background-position: -100% -100%;
    }
    100% {
        background-position: 200% 200%;
    }
}

.hero-filter-card:hover {
    transform: rotateX(0deg) translateY(-5px);
    box-shadow: 
        0 25px 45px rgba(0, 0, 0, 0.3),
        0 15px 25px rgba(0, 0, 0, 0.2),
        0 0 40px rgba(60, 131, 123, 0.3);
}

.hero-filter-tabs {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
    z-index: 2;
    padding: 0.25rem;
    background: rgba(0, 0, 0, 0.05);
}

.hero-filter-tabs::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 25%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transition: all 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-filter-tabs[data-active="financial"]::after {
    left: 25%;
}

.hero-filter-tabs[data-active="legal"]::after {
    left: 50%;
}

.hero-filter-tabs[data-active="facility"]::after {
    left: 75%;
}

.hero-tab-btn {
    flex: 1;
    padding: 1.25rem 1rem;
    background: transparent;
    border: none;
    color: white;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.75;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero-tab-btn i {
    font-size: 1.2rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.hero-tab-btn span {
    position: relative;
}

.hero-tab-btn span::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: white;
    transition: width 0.3s ease;
}

.hero-tab-btn:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.hero-tab-btn:hover i {
    transform: translateY(-3px) scale(1.1);
}

.hero-tab-btn:hover span::before {
    width: 100%;
}

.hero-tab-btn.active {
    opacity: 1;
    background: rgba(255, 255, 255, 0.15);
}

.hero-tab-btn.active i {
    color: var(--accent-color);
}

.hero-tab-btn.active span::before {
    width: 100%;
    background: var(--accent-color);
}

.hero-filter-description {
    padding: 0;
    position: relative;
    min-height: 230px;
    perspective: 800px;
    overflow: hidden;
}

.filter-desc {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    transform: translateY(20px) rotateX(10deg);
    transform-origin: center center;
    pointer-events: none;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.filter-desc.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) rotateX(0);
    pointer-events: all;
}

.filter-desc h3 {
    color: white;
    margin-bottom: 0.75rem;
    font-size: 1.75rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.filter-desc h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.filter-desc p {
    margin-bottom: 1.75rem;
    opacity: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 90%;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 0.95);
}

.filter-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    background: white;
    color: var(--primary-color);
    padding: 0.9rem 1.75rem;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    border: 2px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
    align-self: flex-start;
}

.filter-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.filter-cta:hover {
    background: transparent;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.filter-cta:hover::before {
    opacity: 1;
}

.filter-cta i {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.filter-cta:hover i {
    transform: translateX(4px);
}

.filter-floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.3;
}

.floating-icon {
    position: absolute;
    font-size: 1.5rem;
    color: white;
    opacity: 0.5;
    animation: float 7s infinite ease-in-out;
}

.floating-icon:nth-child(1) {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
    animation-duration: 9s;
}

.floating-icon:nth-child(3) {
    top: 30%;
    right: 25%;
    animation-delay: 2s;
    animation-duration: 7s;
}

.floating-icon:nth-child(4) {
    top: 70%;
    right: 30%;
    animation-delay: 3s;
    animation-duration: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@media screen and (max-width: 768px) {
    .hero-filter-tabs {
        flex-wrap: wrap;
    }
    
    .hero-tab-btn {
        flex: 1 0 50%;
        padding: 1rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .hero-filter-description {
        padding: 0;
    }
    
    .filter-desc {
        padding: 2rem;
    }
    
    .filter-desc h3 {
        font-size: 1.5rem;
    }
    
    .hero-filter-tabs::after {
        display: none;
    }
}

@media screen and (max-width: 480px) {
    .hero-tab-btn {
        flex: 1 0 100%;
        padding: 0.9rem 0.5rem;
    }
    
    .hero-tab-btn span::before {
        display: none;
    }
    
    .hero-tab-btn.active {
        background: var(--accent-color);
    }
    
    .hero-filter-card {
        transform: none;
    }
    
    .filter-desc h3 {
        font-size: 1.3rem;
    }
    
    .filter-desc p {
        font-size: 1rem;
    }
}

/* Career Page Styles */
/* Job Cards */
.job-card {
    text-align: left;
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.job-details {
    margin-top: 1.5rem;
}

.job-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.job-meta p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    color: var(--text-body);
    font-size: 0.9rem;
}

.job-meta p i {
    color: var(--accent-color);
    font-size: 1rem;
}

.job-description {
    margin-bottom: 2rem;
}

.job-description p {
    color: var(--text-body);
    margin-bottom: 1.25rem;
}

.job-description h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.75rem;
}

.job-description ul {
    list-style-type: disc;
    padding-left: 1.25rem;
    margin-bottom: 1.25rem;
}

.job-description ul li {
    color: var(--text-body);
    margin-bottom: 0.5rem;
}

.apply-btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 0.9rem;
    transition: all 0.3s ease;
}

/* Application Modal */
.application-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    border-radius: var(--border-radius-lg);
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: modalFadeIn 0.4s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.application-form {
    margin-top: 1.5rem;
}

.application-form .form-group {
    margin-bottom: 1.25rem;
}

.application-form select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23444' d='M6 8.825L1.175 4 2.238 2.938 6 6.7 9.763 2.938 10.825 4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

.application-form input[type="file"] {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-color);
    background-color: var(--background-light);
}

/* Responsive styles for Career page */
@media screen and (max-width: 768px) {
    .job-meta {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }
}

@media screen and (max-width: 480px) {
    .job-card {
        padding: 1.5rem;
    }
    
    .application-form .form-group {
        margin-bottom: 1rem;
    }
    
    .apply-btn {
        padding: 0.8rem;
    }
}

/* Loading styles for Google Sheets integration */
.loading-container {
    width: 100%;
    text-align: center;
    padding: 3rem 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.loading-container p {
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 500;
}

.loading-spinner {
    display: inline-block;
    width: 50px;
    height: 50px;
    border: 5px solid rgba(60, 131, 123, 0.2);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.no-jobs-message {
    width: 100%;
    text-align: center;
    padding: 3rem 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.no-jobs-message h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.no-jobs-message p {
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

/* Career Page Styles */
/* Job Cards - Enhanced Professional Design */
.job-card {
    text-align: left;
    padding: 2.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
}

.job-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--gradient-primary);
    transition: height 0.4s ease;
}

.job-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(4, 76, 76, 0.12);
    border-color: rgba(4, 76, 76, 0.1);
}

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

.category-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 1.75rem;
    background-color: rgba(4, 76, 76, 0.08);
    border: none;
    width: 70px;
    height: 70px;
    transition: all 0.3s ease;
}

.job-card:hover .category-icon {
    background-color: var(--primary-color);
}

.job-card:hover .category-icon i {
    color: white;
}

.job-card h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 1rem;
}

.job-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.job-card:hover h3::after {
    width: 80px;
}

.job-details {
    margin-top: 1.5rem;
}

.job-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px dashed var(--border-color);
}

.job-meta p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    color: var(--text-body);
    font-size: 0.95rem;
    padding: 0.4rem 0;
}

.job-meta p i {
    color: var(--accent-color);
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.job-description {
    margin-bottom: 2rem;
}

.job-description p {
    color: var(--text-body);
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.job-description h4 {
    color: var(--primary-color);
    font-size: 1.15rem;
    margin: 1.5rem 0 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.job-description h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.job-description ul {
    list-style-type: none;
    padding-left: 0.25rem;
    margin-bottom: 1.5rem;
}

.job-description ul li {
    color: var(--text-body);
    margin-bottom: 0.7rem;
    position: relative;
    padding-left: 1.75rem;
    line-height: 1.5;
}

.job-description ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.apply-btn {
    width: 100%;
    display: block;
    text-align: center;
    padding: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: var(--border-radius-md);
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.apply-btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    transition: width 0.3s ease;
}

.apply-btn:hover::after {
    width: 100%;
    left: 0;
}

/* Filter buttons for job listings */
.service-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-start;
    margin: 2rem 0;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-color);
}

.filter-btn:hover {
    background-color: rgba(var(--primary-rgb), 0.1);
}

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

/* Filter buttons for job listings - Enhanced Professional Design */
.service-filters-container {
    position: relative;
    margin-bottom: 3rem;
}

.filter-intro {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    position: relative;
}

.filter-intro::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: linear-gradient(to right, var(--border-color) 0%, transparent 100%);
    margin-left: 1rem;
}

.service-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-start;
    margin: 1rem 0 2.5rem;
}

.filter-btn {
    background: transparent;
    border: 2px solid transparent;
    border-radius: var(--border-radius-md);
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-body);
    position: relative;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    background-color: #f8fafc;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, rgba(var(--accent-rgb), 0.1), transparent);
    transition: height 0.3s ease;
}

.filter-btn:hover {
    color: var(--primary-color);
    border-color: var(--border-color);
    transform: translateY(-2px);
}

.filter-btn:hover::before {
    height: 100%;
}

.filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(var(--primary-rgb), 0.25);
}

.filter-btn.active::before {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), transparent);
    height: 100%;
}

/* Job Listings Container */
.job-listings-container {
    position: relative;
    min-height: 300px;
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    background-color: rgba(248, 250, 252, 0.8);
    border-radius: var(--border-radius-lg);
    text-align: center;
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(var(--primary-rgb), 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-container p {
    color: var(--text-body);
    font-weight: 500;
}

/* Job Listings Container and Loading Experience - Professional Design */
.job-listings-container {
    position: relative;
    min-height: 300px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.75rem;
    margin-top: 1rem;
}

@media (max-width: 767px) {
    .job-listings-container {
        grid-template-columns: 1fr;
    }
}

.loading-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom right, #f8fafc, #f1f5f9);
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 5;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(var(--primary-rgb), 0.1);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1.2s cubic-bezier(0.5, 0.15, 0.5, 0.85) infinite;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.05);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.loading-container p {
    color: var(--text-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.no-jobs-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(to bottom, #f8fafc, #eef2f7);
    border-radius: var(--border-radius-lg);
    color: var(--text-body);
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px dashed var(--border-color);
}

.no-jobs-message i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
    opacity: 0.7;
}

/* Detailed Service Section Styles */
.service-detail {
    padding: 4rem 0;
    background-color: var(--section-bg);
}

.service-detail:nth-child(even) {
    background-color: white;
}

.section-header {
    text-align: center;
    margin: 4rem auto 3rem;
    max-width: 800px;
    position: relative;
}

.service-cards-container {
    margin-top: 3rem;
}

.mega-service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.mega-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-nav {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-bottom: 1px solid var(--border-color);
}

.service-nav-btn {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-nav-btn i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.service-nav-btn:hover {
    background: var(--background-teal);
    transform: translateY(-2px);
}

.service-nav-btn.active {
    background: var(--primary-color);
    color: white;
}

.service-nav-btn.active i {
    color: white;
}

.service-panel {
    padding: 2rem;
    display: none;
}

.service-panel.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.service-item {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 768px) {
    .service-nav {
        flex-direction: column;
        padding: 1rem;
    }

    .service-nav-btn {
        width: 100%;
        justify-content: center;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .service-panel {
        padding: 1.5rem;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.d-flex {
    display: flex;
}

.align-items-center {
    align-items: center;
}

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

.rounded-circle {
    border-radius: 50%;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        bottom: 20px;
        right: 20px;
        font-size: 1rem;
    }
}

.service-panel {
    display: none;
    padding: 2rem;
}

.service-panel.active {
    display: block;
}

.service-nav-btn {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.service-nav-btn:hover {
    opacity: 1;
}

.service-nav-btn.active {
    opacity: 1;
    font-weight: 600;
    color: var(--primary-color);
}

.service-nav-btn i {
    margin-right: 0.5rem;
}

/* Service Tabs Responsive Styles */
.service-tabs-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.service-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 2rem;
    border-radius: 1rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.service-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    white-space: nowrap;
}

.service-tab i {
    font-size: 1rem;
}

.service-tab:hover,
.service-tab.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.service-tab-content {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1.5rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.tab-pane {
    display: none;
    text-align: center;
}

.tab-pane.active {
    display: block;
}

.tab-pane h3 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.tab-pane p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Tablet & Foldable Devices */
@media screen and (max-width: 1024px) {
    .hero {
        border-radius: 0 0 1.5rem 1.5rem;
    }

    .video-background {
        border-radius: 0 0 1.5rem 1.5rem;
    }

    .service-tabs {
        gap: 0.35rem;
    }

    .service-tab {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    .service-tab i {
        font-size: 0.9rem;
    }
}

/* Smaller Tablets */
@media screen and (max-width: 768px) {
    .hero {
        border-radius: 0 0 1rem 1rem;
    }

    .video-background {
        border-radius: 0 0 1rem 1rem;
    }

    .service-tabs-container {
        padding: 0.5rem;
    }

    .service-tabs {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 0.5rem;
    }

    .service-tab {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 0.5rem;
        font-size: 0.8rem;
    }

    .service-tab-content {
        padding: 1.5rem 1rem;
    }

    .tab-pane h3 {
        font-size: 1.25rem;
    }

    .tab-pane p {
        font-size: 0.9rem;
    }
}

/* Small Tablets & Large Phones */
@media screen and (max-width: 480px) {
    .hero {
        border-radius: 0 0 0.75rem 0.75rem;
    }

    .video-background {
        border-radius: 0 0 0.75rem 0.75rem;
    }

    .service-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-tab {
        font-size: 0.75rem;
    }

    .service-tab i {
        font-size: 0.8rem;
    }
}
}}