/* Modern About Page Styles */
:root {
    --primary-color: #f76c0a;
    --secondary-color: #2d3436;
    --text-color: #2d3436;
    --background-color: #ffffff;
    --accent-color: #ffd3d3;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-color);
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: var(--white);
    box-shadow: var(--shadow);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    list-style-type: none;
}

.contact,
.social-icons {
    display: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.call {
    /* display: none; */
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.fa-facebook-f, .fa-instagram, .fa-twitter{
    padding: 10px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons a,
.social-icons1 a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover,
.social-icons1 a:hover {
    transform: translateY(-3px);
    padding: 10px;
}

.social-icons .fa-facebook-f,
.social-icons1 .fa-facebook-f {
    background: #1877f2;
    color: white;
    padding: 10px;
}

.social-icons .fa-instagram,
.social-icons1 .fa-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icons .fa-twitter,
.social-icons1 .fa-twitter {
    background: #1da1f2;
    color: white;
}
.mobile-only {
    display: none;
}

/* Hero Section */
.hero-section {
    height: 60vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #fff5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: 70px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    color: #666;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

/* About Intro Section */
.about-intro {
    margin-bottom: 6rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--secondary-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* Our Approach Section */
.our-approach {
    background-color: #f8f9fa;
    padding: 2rem 0;
    margin: 1rem -1rem;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.approach-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.approach-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-10px);
}

.approach-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.approach-card h3 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

/* Team Section */
.team-section {
    padding: 2rem 0;
}

.team-content {
    text-align: center;
}

.team-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-text {
    max-width: 800px;
    margin: 0 auto;
}

.story-text p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, #f76c0a 100%);
    margin: 4rem -2rem -4rem;
    padding: 6rem 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer Styles */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer a {
    color: white;
    text-decoration: none;
}

.social-icons1 {
    display: flex;
    gap: 1rem;
}

.social-icons1 a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-icons1 a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
    transition: var(--transition);
    z-index: 1000;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Menu Toggle for Mobile */
/* .menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1000;
}

.menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
} */

/* Responsive Design */
@media (min-width: 769px) {
    .desktop-only {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .about-grid {
        gap: 2rem;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .desktop-only {
        display: none !important;
    }

    .mobile-only {
        display: block !important;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        gap: 10px;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 2em;
        transition: var(--transition);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

    .nav-links li {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links .mobile-only {
        width: 100%;
        text-align: center;
        /* margin: 1rem 0; */
    }

    .nav-links .social-icons {
        display: flex;
        justify-content: center;
        gap: 1rem;
        /* margin-top: 2rem; */
        width: 100%;
    }

    .nav-links .social-icons a {
        font-size: 1rem;
        color: var(--primary-color);
           /* width: 40px; */
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
    padding: 10px;
    }

    .fa-facebook-f, .fa-instagram, .fa-twitter{
    padding: 10px;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    }

    .nav-links .call {
        width: 100%;
        max-width: 300px;
        /* margin: 1rem auto; */
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        height: 50vh;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .about-text h2,
    .approach-content h2,
    .team-content h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
}

@media (max-width: 480px) {
    .hero-section {
        height: 40vh;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .about-text h2,
    .approach-content h2,
    .team-content h2,
    .cta-content h2 {
        font-size: 1.8rem;
    }

    .main-content {
        padding: 2rem 1rem;
    }

    .our-approach {
        /* margin: 1rem -1rem; */
        padding: 2rem 0;
    }

    .cta-section {
        margin: 2rem -1rem -2rem;
        padding: 2rem 1rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
} 