﻿/* ===== GLOBAL ===== */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fc;
    color: #333;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* ===== HERO SECTION ===== */
.society-hero {
    background: url('https://images.unsplash.com/photo-1568605114967-8130f3a36994?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    max-width: 700px;
    padding: 0 20px;
}

    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 25px;
    }

.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin: 0 8px;
    transition: 0.3s;
}

.btn-primary {
    background: #0078d7;
    color: #fff;
}

    .btn-primary:hover {
        background: #005fa3;
    }

.btn-secondary {
    background: #fff;
    color: #0078d7;
}

    .btn-secondary:hover {
        background: #e8f1ff;
    }

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 60px 20px;
    text-align: center;
    background: #fff;
}

    .about-section h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }

/* ===== SERVICES SECTION ===== */
.services-section {
    background: #f7f9fc;
    padding: 70px 20px;
    text-align: center;
}

    .services-section h2 {
        font-size: 2rem;
        margin-bottom: 40px;
    }

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    }

    .service-card i {
        font-size: 2rem;
        color: #0078d7;
        margin-bottom: 15px;
    }

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: #fff;
    padding: 80px 20px;
    display: flex;
    justify-content: flex-end;
    text-align: left;
}

.contact-container {
    max-width: 380px;
    background: #f7f9fc;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

    .contact-container h2 {
        font-size: 2rem;
        color: #0078d7;
        margin-bottom: 20px;
        text-align: center;
    }

.contact-details p {
    margin: 12px 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-details i {
    color: #0078d7;
    font-size: 1.2rem;
}

.contact-details a {
    color: #333;
    text-decoration: none;
}

    .contact-details a:hover {
        color: #0078d7;
    }

/* ===== Floating Call Button (Fixed Bottom Right) ===== */
.call-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #00b140;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 18px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: all 0.3s ease;
}

    .call-btn i {
        font-size: 1.2rem;
        pointer-events: none;
    }

    .call-btn:hover {
        transform: scale(1.05);
        background-color: #00cc44;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    .contact-section {
        justify-content: center;
        padding: 60px 15px;
    }

    .contact-container {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        justify-content: center;
    }

    .call-btn {
        padding: 10px 16px;
        bottom: 20px;
        right: 20px;
        font-size: 0.9rem;
    }

        .call-btn i {
            font-size: 1rem;
        }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .contact-container h2 {
        font-size: 1.5rem;
    }
}
