/* ========================= GLOBAL ========================= */
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    color: #222;
}

html {
    scroll-behavior: smooth;
}

/* ========================= HERO BRAND ========================= */
.brand-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-subtitle {
    font-size: 17px;
    max-width: 650px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.7;
}

/* ========================= HERO SECTION ========================= */
.hero {
    background: linear-gradient(135deg, #005eff, #003f9e);
    padding: 110px 20px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hero p {
    font-size: 18px;
    opacity: 0.95;
    margin-bottom: 28px;
}

.cta-btn {
    display: inline-block;
    padding: 15px 32px;
    background: #25D366;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: 0.25s ease;
}

.cta-btn:hover {
    background: #1ebe5d;
    transform: translateY(-4px);
}

/* ========================= ABOUT SECTION ========================= */
.about {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(180deg, #f9fbff, #eef3ff);
}

.about h2 {
    font-size: 28px;
    margin-bottom: 18px;
}

.about p {
    max-width: 650px;
    margin: auto;
    font-size: 17px;
    color: #444;
    line-height: 1.7;
}

.profile-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-top: 28px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* ========================= SERVICES ========================= */
.services {
    padding: 60px 20px;
    text-align: center;
    background: #ffffff;
}

.services h2 {
    font-size: 28px;
    margin-bottom: 35px;
}

/* Grid layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    justify-items: center;
}

.service-box {
    background: #f0f4ff;
    padding: 28px;
    border-radius: 20px;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    backdrop-filter: blur(4px);
}

.service-box:hover {
    background: linear-gradient(135deg, #e8f0ff, #ffffff);
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.12);
}

.service-box i {
    font-size: 42px;
    color: #005eff;
    margin-bottom: 12px;
}

.service-box h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

/* ========================= CONTACT BOXES ========================= */
.contact-boxes {
    padding: 70px 20px;
    text-align: center;
    background: #f7f9ff;
}

.contact-title {
    font-size: 30px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a1a1a;
}

/* Grid for the two boxes */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    justify-items: center;
}

/* Individual contact cards */
.contact-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    max-width: 340px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0,0,0,0.12);
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #003f9e;
}

.contact-card p {
    font-size: 16px;
    color: #555;
    margin-bottom: 22px;
    line-height: 1.6;
}

/* Buttons inside the cards */
.contact-btn {
    display: inline-block;
    width: 85%;
    padding: 14px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: 0.25s ease;
}

/* WhatsApp button */
.contact-btn.whatsapp {
    background: #25D366;
}

.contact-btn.whatsapp:hover {
    background: #1ebe5d;
    transform: translateY(-4px);
}

/* Call button */
.contact-btn.call {
    background: #0078ff;
}

.contact-btn.call:hover {
    background: #005fcc;
    transform: translateY(-4px);
}

/* ========================= FOOTER ========================= */
.footer {
    text-align: center;
    padding: 25px;
    background: #003f9e;
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 0.5px;
}





