/* --- 1. Global Styles --- */
:root {
    --modern-teal-dark: #00505C;
    --vibrant-teal: #00A79D;
    --bright-gold: #F4B400;
    --primary-white: #FFFFFF;
    --light-gray-bg: #F8F9FA;
    --text-color: #555;
    --heading-color: #212529;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lato', sans-serif;
    --container-width: 1140px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--primary-white);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 100px 0;
    overflow: hidden;
}

section.bg-light {
    background-color: var(--light-gray-bg);
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--heading-color);
    font-weight: 700;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    color: var(--modern-teal-dark);
    margin-bottom: 10px;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    color: #777;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--bright-gold);
    color: var(--heading-color);
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.3);
}

.btn-primary:hover {
    background-color: #e4a900;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(244, 180, 0, 0.4);
}

/* --- 2. Header & Navigation --- */
.main-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 20px 0;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--modern-teal-dark);
    text-decoration: none;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-logo-icon {
    height: 30px;
    width: auto;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--bright-gold);
    transition: width 0.3s ease;
}

.main-nav a:hover::after {
    width: 100%;
}

/* --- 3. Hero Section --- */
#hero {
    background-image: linear-gradient(rgba(0, 80, 92, 0.7), rgba(0, 80, 92, 0.7)), url('../assests/hero.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--primary-white);
    height: 95vh;
    display: flex;
    align-items: center;
    padding: 0;
}

.hero-content { max-width: 800px; text-align: left; }
#hero h1 { font-size: 4.5rem; font-weight: 800; color: var(--primary-white); margin-bottom: 20px; line-height: 1.1; }
#hero p { font-size: 1.3rem; margin-bottom: 30px; font-family: var(--font-heading); font-weight: 400; text-transform: none; letter-spacing: 0; opacity: 0.9; }
.hero-features { list-style: none; padding: 0; margin: 30px 0; display: flex; gap: 30px; color: rgba(255,255,255,0.9); }
.hero-features li { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.hero-features i { color: var(--bright-gold); }

/* Generic Page Headers */
.page-header { background-size: cover; background-position: center; background-attachment: fixed; color: var(--primary-white); text-align: center; padding: 100px 0; }
.page-header h1 { font-size: 3.5rem; color: var(--primary-white); }
.page-header p { margin-bottom: 0; font-size: 1.3rem; }
.about-header { background-image: linear-gradient(rgba(0, 80, 92, 0.7), rgba(0, 80, 92, 0.7)), url('../assests/about-header.webp'); }
.services-header { background-image: linear-gradient(rgba(0, 80, 92, 0.7), rgba(0, 80, 92, 0.7)), url('../assests/services-header.webp'); }
.contact-header { background-image: linear-gradient(rgba(0, 80, 92, 0.7), rgba(0, 80, 92, 0.7)), url('../assests/contact-header.webp'); }

/* --- 4. Services Section --- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { background: var(--primary-white); padding: 40px 30px; border: 1px solid #e9ecef; text-align: center; border-radius: 8px; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 15px 40px rgba(0,0,0,0.08); }
.service-card .icon-wrapper { width: 80px; height: 80px; margin: 0 auto 30px; background: var(--vibrant-teal); color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 2.5rem; box-shadow: 0 5px 15px rgba(0, 167, 157, 0.2); }
.service-card h3 { margin-bottom: 15px; font-size: 1.4rem; }

/* --- 5. Stats Section --- */
#stats { background-color: var(--modern-teal-dark); color: var(--primary-white); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; text-align: center; }
#stats h2 { color: var(--primary-white); }
.stat-item .number { font-size: 3.5rem; font-weight: 700; font-family: var(--font-heading); color: var(--bright-gold); }
.stat-item .label { font-size: 1.1rem; font-weight: 600; opacity: 0.8; }

/* --- 6. Feature Section with Integrated Images --- */
.feature-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.feature-section:last-child { margin-bottom: 0; }
.feature-image img { width: 100%; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s ease; }
.feature-image img:hover { transform: scale(1.03); }
.feature-content h3 { font-size: 2rem; color: var(--modern-teal-dark); margin-bottom: 15px; }
.feature-content p { margin-bottom: 20px; }
.feature-section.reverse { grid-template-areas: "text image"; }
.feature-section.reverse .feature-image { grid-area: image; }
.feature-section.reverse .feature-content { grid-area: text; }

/* --- 7. Process Section --- */
.process-timeline { display: flex; justify-content: space-between; position: relative; }
.process-timeline::before { content: ''; position: absolute; top: 30px; left: 10%; right: 10%; height: 4px; background-color: #e0e0e0; z-index: 1; }
.step { flex: 1; text-align: center; position: relative; z-index: 2; }
.step .step-number { width: 60px; height: 60px; background-color: var(--primary-white); color: var(--bright-gold); border: 4px solid var(--bright-gold); border-radius: 50%; display: flex; justify-content: center; align-items: center; font-size: 1.8rem; font-weight: 700; margin: 0 auto 20px; font-family: var(--font-heading); transition: all 0.3s ease; }
.step:hover .step-number { background-color: var(--bright-gold); color: var(--heading-color); transform: scale(1.1); }
.step h4 { margin-bottom: 10px; font-size: 1.2rem; color: var(--modern-teal-dark); }

/* --- 8. Testimonials --- */
.testimonial-card { padding: 40px; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.07); position: relative; text-align: center; background: var(--primary-white); }
.testimonial-card .quote-icon { font-size: 3rem; color: var(--bright-gold); opacity: 0.2; position: absolute; top: 20px; left: 30px; }
.testimonial-card blockquote { font-size: 1.1rem; font-style: italic; color: #555; margin-bottom: 25px; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 15px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; }
.testimonial-author cite { font-weight: 700; font-style: normal; color: var(--modern-teal-dark); }

/* --- 9. Call to Action (CTA) Section --- */
#cta { background-image: linear-gradient(rgba(0, 80, 92, 0.8), rgba(0, 80, 92, 0.8)), url('../assests/feature-image1.webp'); background-size: cover; background-position: center; background-attachment: fixed; text-align: center; color: var(--primary-white); }
#cta .section-title h2 { color: var(--primary-white); }
#cta .section-title p { color: rgba(255, 255, 255, 0.8); }

/* --- 10. Footer --- */
footer { background-color: #002d33; color: #ccc; padding: 80px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 50px; margin-bottom: 50px; }
.footer-grid h4 { font-family: var(--font-heading); color: var(--primary-white); margin-bottom: 20px; font-size: 1.2rem; }
.footer-grid ul { list-style: none; }
.footer-grid a, .footer-grid p { color: #aab2bd; text-decoration: none; transition: color 0.3s ease; margin-bottom: 12px; display: block; }
.footer-grid a:hover { color: var(--bright-gold); }
.social-icons a { display: inline-block; width: 40px; height: 40px; background-color: rgba(255,255,255,0.1); color: var(--primary-white); border-radius: 50%; text-align: center; line-height: 40px; margin-right: 10px; }
.social-icons a:hover { background-color: var(--bright-gold); color: var(--heading-color); }
.footer-bottom { text-align: center; padding-top: 30px; border-top: 1px solid #00424b; font-size: 0.9rem; color: #aab2bd; }

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-contact p i {
    flex-shrink: 0;
    width: 20px;
    margin-top: 4px; 
}

/* --- 11. PAGE-SPECIFIC STYLES --- */
/* ABOUT PAGE */
.founder-section { display: grid; grid-template-columns: auto 2fr; gap: 50px; align-items: center; }
.founder-photo { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.founder-bio h2 { font-size: 2.5rem; margin-bottom: 20px; }
.founder-bio .title { font-weight: 700; color: var(--bright-gold); margin-bottom: 20px; }
.mission-values-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; text-align: center; }
.value-card { padding: 30px; }
.value-card .icon { font-size: 3rem; color: var(--bright-gold); margin-bottom: 20px; }
.value-card h3 { margin-bottom: 10px; }
/* SERVICES PAGE */
.service-card-detailed { background: white; display: flex; flex-direction: column; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.07); transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; color: var(--text-color); }
.service-card-detailed:hover { transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.card-content { padding: 30px; flex-grow: 1; }
.card-content h3 { margin-bottom: 15px; }
.card-footer { padding: 20px 30px; background: var(--light-gray-bg); border-top: 1px solid #eee; border-radius: 0 0 8px 8px; font-weight: 700; color: var(--vibrant-teal); }
/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 2fr 1.5fr; gap: 50px; align-items: flex-start; }
.contact-form { background: var(--light-gray-bg); padding: 40px; border-radius: 8px; }
.contact-form h3 { margin-bottom: 30px; }
.form-group { margin-bottom: 20px; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 15px; border: 1px solid #ddd; border-radius: 5px; font-size: 1rem; font-family: var(--font-body); }
.contact-info .info-item { display: flex; align-items: flex-start; gap: 20px; margin-bottom: 30px; }
.contact-info .icon { font-size: 1.5rem; color: var(--bright-gold); margin-top: 5px; width: 30px; }
.map-container { margin-top: 40px; border-radius: 8px; overflow: hidden; height: 300px; }

/* --- 12. Responsive Design --- */
@media (max-width: 992px) {
    .section-title h2 { font-size: 2.4rem; }
    #hero h1, .page-header h1 { font-size: 3.5rem; }
    .stats-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .founder-section, .contact-grid { grid-template-columns: 1fr; }
    .mission-values-grid { grid-template-columns: 1fr; }
    .feature-section, .feature-section.reverse { grid-template-columns: 1fr; grid-template-areas: none; }
    .feature-section.reverse .feature-image { grid-area: auto; }
    .feature-section.reverse .feature-content { grid-area: auto; }
}
@media (max-width: 768px) {
    .main-header .container { flex-direction: column; gap: 15px; }
    .process-timeline { flex-direction: column; gap: 40px; }
    .process-timeline::before { display: none; }
    .testimonial-card { margin-bottom: 30px; }
    .hero-features { flex-direction: column; gap: 15px; align-items: flex-start; }
    .founder-section { display: flex; flex-direction: column; text-align: center; }
    .founder-photo { margin: 0 auto 30px; }
}
@media (max-width: 576px) {
    section { padding: 80px 0; }
    .section-title h2 { font-size: 2rem; }
    #hero h1, .page-header h1 { font-size: 2.5rem; }
    .hero-content { text-align: center; }
    .hero-features { align-items: center; }
}
/* --- 13. Floating WhatsApp Button --- */
.whatsapp-float {
    position: fixed;
    bottom: 100px; 
    right: 100px; 
    width: 60px;
    height: 60px;
    background-color: #25D366; 
    color: #FFFFFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: transform 0.2s ease;
    animation: bounce 2s infinite ease-in-out;
    display: flex; 
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    animation-play-state: paused; /* Stop bouncing on hover */
}

/* Bouncing Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-15px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 30px; 
        right: 30px;  
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}