* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

/* ====================== NAVBAR ====================== */
.nav-section {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 1000;
    padding: 15px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-section img {
    height: 60px;
    width: auto;
}

.nav-section h3{
    color: green;
    font-family: Georgia, serif;
}

navbar {
    display: flex;
    gap: 35px;
}

navbar a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

navbar a:hover {
    color: #fbbf24;
}

navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #fbbf24;
    transition: width 0.3s ease;
}

navbar a:hover::after {
    width: 100%;
}

navbar a.about {
    color: #fbbf24;
}


/* ====================== ABOUT PAGE ====================== */
.about-hero {
    height: 50vh;
    min-height: 380px;
    background: url('main/about.jpeg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 85px;
}

.about-hero-content h1 {
    font-size: 3.5rem;
}

.about-section {
    padding: 90px 5%;
    background: #ffffff;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
    font-size: 1.1rem;
}

.about-content h2 {
    font-size: 2.2rem;
    color: #1e2937;
    margin: 40px 0 20px 0;
    text-align: center;
}

.about-content p {
    color: #475569;
    margin-bottom: 22px;
}

.about-cta {
    text-align: center;
    margin-top: 50px;
}


/* ====================== FOOTER ====================== */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    padding: 80px 5% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col h3 {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-col a {
    display: block;
    color: #cbd5e1;
    text-decoration: none;
    margin-bottom: 10px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #fbbf24;
    padding-left: 5px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 15px;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    font-size: 1.4rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    margin-top: 50px;
    border-top: 1px solid #334155;
    color: #94a3b8;
    font-size: 0.95rem;
}

/* ====================== FLOATING WHATSAPP ====================== */
.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}


/* ====================== HAMBURGER MENU ====================== */
.nav-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-left img {
    height: 55px;
    width: auto;
}

.nav-left h3 {
    color: #4ade80;
    font-size: 1.35rem;
    margin: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* ====================== RESPONSIVE DESIGN ====================== */

/* Tablet & Small Laptop */
@media (max-width: 992px) {
    navbar {
        gap: 20px;
    }
    
    .about-hero-content h1 {
        font-size: 3rem;
    }
}

/* Mobile Devices */
@media (max-width: 768px) {
    
    /* Navbar */
    .nav-section {
        padding: 12px 5%;
        flex-direction: column;
        gap: 12px;
        height: auto;
    }
    
    .nav-left h3 {
        font-size: 1.2rem;
    }
    
    /* Hamburger */
    .hamburger {
        display: flex;
    }
    
    navbar {
        position: fixed;
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: start;
        padding-top: 50px;
        gap: 30px;
        transition: all 0.4s ease;
        z-index: 999;
    }
    
    navbar.active {
        left: 0;
    }
    
    navbar a {
        font-size: 1.3rem;
    }

    /* About Hero */
    .about-hero {
        margin-top: 130px;
        height: 45vh;
        min-height: 320px;
    }
    
    .about-hero-content h1 {
        font-size: 2.6rem;
    }
    
    /* About Content */
    .about-section {
        padding: 70px 5%;
    }
    
    .about-content {
        font-size: 1.05rem;
    }
    
    .about-content h2 {
        font-size: 2rem;
    }
    
    /* Footer */
    .footer {
        padding: 60px 5% 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }
}

/* Small Mobile Phones */
@media (max-width: 576px) {
    
    .about-hero-content h1 {
        font-size: 2.3rem;
    }
    
    .about-hero-content p {
        font-size: 1.1rem;
    }
    
    .about-content p {
        font-size: 1rem;
    }
    
    .btn-whatsapp-large {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .floating-whatsapp {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 26px;
    }
}