* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

html,
body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

:root {
    --primary-color: #3aaf85;
    --primary-dark: #2e8b68;
    --secondary-color: #2a3d1f;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --text-dark: #333;
    --text-medium: #555;
    --text-light: #777;
    --white: #fff;
    --transition: all 0.4s ease;
}

body {
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}


/* Hero Section */
.about-hero {
    position: relative;
    background: linear-gradient(rgba(25, 45, 25, 0.9), rgba(17, 28, 17, 0.85)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: var(--white);
    padding: 160px 20px 100px;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    animation: fadeInDown 1s ease;
    line-height: 1.2;
}

.about-hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    animation: fadeIn 1.5s ease;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    font-size: 1.1rem;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(58, 175, 133, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(58, 175, 133, 0.4);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Section Styling */
.section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    /* display: inline-block;
    width: 100%; */
    font-weight: 700;
    display: block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Our Story Section */
.story-container {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.story-image {
    flex: 1 1 45%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    min-height: 400px;
}

.story-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    z-index: -1;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.story-image:hover img {
    transform: scale(1.05);
}

.story-content {
    flex: 1 1 45%;
}

.story-content h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.3;
}

.story-content p {
    margin-bottom: 25px;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.milestones {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.milestone-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border-bottom: 4px solid var(--primary-color);
}

.milestone-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.milestone-card i {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.milestone-card h4 {
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.milestone-card p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0;
}

/* Our Mission Section */
.mission-section {
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(245, 250, 245, 0.9)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    padding: 10px 20px;
}

.mission-container {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.85);
    padding: 70px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.mission-content {
    text-align: center;
}

.mission-content h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
    line-height: 1.4;
}

.mission-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.value-card {
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

.value-card:hover {
    background: #f0f7f4;
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.value-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.value-card h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin: 0;
}

/* Why Choose Us Section */
.choose-section {
    padding: 120px 20px;
    background: linear-gradient(rgba(25, 45, 25, 0.92), rgba(17, 28, 17, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    color: var(--white);
    position: relative;
}

.choose-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.choose-content {
    text-align: center;
    margin-bottom: 70px;
}

.choose-content h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    line-height: 1.3;
}

.choose-content p {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    opacity: 0.9;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 35px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 45px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-15px);
    border-color: var(--primary-color);
}

.feature-card i {
    font-size: 3.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-card p {
    color: #eee;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 20px;
    background: var(--light-bg);
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.testimonial-card {
    background: var(--white);
    border-radius: 15px;
    padding: 40px 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    border-left: 4px solid var(--primary-color);
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.testimonial-card::before {
    /* content: "" "; */
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-content {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--text-medium);
    font-style: italic;
    line-height: 1.8;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 3px solid var(--primary-color);
}

.client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.client-details h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.client-details p {
    color: var(--primary-color);
    font-weight: 600;
}

/* Footer */
/* .footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 100px 20px 40px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: var(--transition);
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 20px;
    color: #bbb;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #333;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    padding-top: 60px;
    color: #777;
    font-size: 0.95rem;
    border-top: 1px solid #333;
    margin-top: 60px;
    padding-bottom: 20px;
} */

/* Responsive Styles */
@media (max-width: 1200px) {
    .section {
        padding: 90px 20px;
    }

    .mission-container {
        padding: 50px;
    }
}

@media (max-width: 992px) {
    .about-hero h1 {
        font-size: 3rem;
    }

    .about-hero p {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .story-container {
        gap: 40px;
    }

    .story-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    /* .nav-menu {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    .hamburger {
        display: block;
    } */

    .about-hero {
        padding: 140px 20px 80px;
    }

    .about-hero h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 50px;
    }

    .story-container {
        flex-direction: column;
    }

    .story-image {
        min-height: 350px;
    }

    .mission-container {
        padding: 40px 30px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 160px 20px 70px;
    }

    .about-hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .story-image {
        min-height: 300px;
    }

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

    .feature-card,
    .value-card {
        padding: 35px 25px;
    }

    .mission-container {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/* ....................................navbar...................................... */


/* Sticky Navbar Styles */
/* .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateX(5px);
}

.logo i {
    color: #3aaf85;
    margin-right: 10px;
    transition: transform 0.4s ease;
}

.logo:hover i {
    transform: rotate(15deg);
}

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-item {
    position: relative;
    margin: 0 15px;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.nav-link:hover {
    color: #3aaf85;
    background: rgba(255, 255, 255, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #3aaf85;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 70%;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: rgba(0, 0, 0, 0.95);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-column {
    padding: 0 15px;
}

.dropdown-column h4 {
    color: #3aaf85;
    padding: 10px 15px;
    font-size: 1.1rem;
    margin-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dropdown-links {
    list-style: none;
}

.dropdown-links li {
    margin-bottom: 8px;
}

.dropdown-links a {
    display: block;
    color: #e6e6e6;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.2s;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.dropdown-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(58, 175, 133, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
}

.dropdown-links a:hover {
    color: #3aaf85;
    padding-left: 20px;
}

.dropdown-links a:hover::before {
    left: 0;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.contact-btn {
    background: #3aaf85;
    color: white;
    border: none;
    padding: 10px 25px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(58, 175, 133, 0.3);
}

.contact-btn:hover {
    background: #2e8b68;
    transform: translateY(-2px);
    box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
} */

/* Mobile Menu Styles */
/* .mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(15px);
    z-index: 2000;
    padding: 80px 20px 20px;
    transition: right 0.4s ease;
    overflow-y: auto;
}

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

.mobile-nav-menu {
    list-style: none;
}

.mobile-nav-item {
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    display: block;
    padding: 12px 15px;
    border-radius: 5px;
    transition: all 0.3s;
    position: relative;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #3aaf85;
    padding-left: 20px;
}

.mobile-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #3aaf85;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover::after {
    width: 100%;
}

.mobile-dropdown {
    margin-top: 10px;
    margin-left: 20px;
    border-left: 2px solid #3aaf85;
    padding-left: 15px;
}

.mobile-dropdown-item {
    margin-bottom: 10px;
}

.mobile-dropdown-link {
    color: #e6e6e6;
    text-decoration: none;
    font-size: 1.1rem;
    display: block;
    padding: 8px 15px;
    border-radius: 5px;
    transition: all 0.3s;
}

.mobile-dropdown-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #3aaf85;
    padding-left: 20px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.close-menu:hover {
    transform: rotate(90deg);
    color: #3aaf85;
}


@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }

    .contact-btn {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-contact-btn {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
}


@media (max-width: 480px) {
    .mobile-menu {
        width: 280px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 15px;
    }
}


 */





/* ................................................footer................................................ */

/* Footer */
/* .footer {
    background: #1a1a1a;
    color: #fff;
    padding: 70px 20px 30px;
    font-family: 'Segoe UI', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3aaf85;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: #3aaf85;
    transform: translateX(10px);
}

.footer-contact p {
    margin-bottom: 15px;
    color: #bbb;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    color: #3aaf85;
    margin-right: 10px;
    margin-top: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #3aaf85;
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 50px;
    color: #777;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    margin-top: 50px;
} */