@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700;900&family=Inter:wght@400;600&display=swap');

:root {
    --navy: #2C3E50;
    --gold: #B8860B;
    --light-bg: #F9F9F9;
    --white: #ffffff;
    --text: #333333;
    --font-header: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    margin: 0;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* --- HEADER (Original Style) --- */
header {
    background: var(--navy);
    padding: 15px 0;
    border-bottom: 4px solid var(--gold);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo img { height: 70px; }
.nav-links { display: flex; list-style: none; gap: 20px; }
.nav-links a { color: white; text-decoration: none; font-weight: 600; font-size: 0.9rem; }

/* --- HERO SECTION --- */
.hero { padding: 60px 0; background: var(--white); }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.hero-text h1 { 
    font-family: var(--font-header); 
    font-size: 3.2rem; 
    color: var(--navy); 
    line-height: 1.1;
    margin-bottom: 25px;
}
.hero-list { list-style: none; padding: 0; margin-bottom: 30px; }
.hero-list li { 
    font-family: var(--font-header); 
    font-size: 1.8rem; 
    color: var(--navy); 
    margin-bottom: 5px; 
}
.hero-image img { 
    width: 100%; 
    border-radius: 10px; 
    box-shadow: 10px 10px 0px var(--light-bg); 
}

/* --- ICON BOXES (The "Why Choose Us" look) --- */
.section-gray { background: var(--light-bg); padding: 80px 0; }
.section-title { 
    text-align: center; 
    font-family: var(--font-header); 
    font-size: 2.5rem; 
    color: var(--navy); 
    margin-bottom: 50px; 
}

.icon-grid { 
    display: grid; 
    grid-template-columns: repeat(4, 1fr); 
    gap: 20px; 
}
.icon-box { 
    background: #D1DCE5; /* Muted blue from sshot */
    padding: 30px 20px; 
    text-align: center; 
    border-radius: 5px;
    transition: 0.3s;
}
.icon-box:nth-child(even) { background: #FDF2E9; } /* Alternating colors like original */
.icon-box h3 { font-family: var(--font-body); font-size: 1.1rem; color: var(--navy); }
.icon-box .icon { font-size: 2.5rem; margin-bottom: 15px; display: block; }

/* --- ABOUT SECTION --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; padding: 80px 0; }
.about-image img { width: 100%; border-radius: 10px; }
.about-text h2 { font-family: var(--font-header); font-size: 2.5rem; color: var(--navy); }
.btn-contact { 
    display: inline-block; 
    background: #4DB7B3; /* Teal from your button */
    color: white; 
    padding: 15px 30px; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: bold; 
    margin-top: 20px; 
}

/* --- CERTIFICATE GRID --- */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.cert-item img { width: 100%; border: 1px solid #ddd; padding: 5px; background: white; }

/* --- FOOTER --- */
footer { background: white; padding: 60px 0 20px; border-top: 1px solid #eee; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.footer-col h4 { font-family: var(--font-header); color: var(--navy); margin-bottom: 20px; }
.whatsapp-footer { background: #25D366; color: white; padding: 10px 20px; border-radius: 5px; display: inline-block; text-decoration: none; font-weight: bold; }

@media (max-width: 768px) {
    .hero-grid, .icon-grid, .about-grid, .cert-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-text h1 { font-size: 2.2rem; }
}