

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Root Colors */
:root {
    --primary: #8795e3;      /* Indigo */
    --secondary: #009688;    /* Teal */
    --accent: #ff7043;       /* Soft Coral */
    --bg-light: #f5f7fb;
    --bg-gradient: linear-gradient(135deg, #8794e2, #7bede1);
    --text-dark: #222;
    --text-muted: #555;
}

/* Base */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.7;
}

/* Container */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 70px 20px;
}

/* Header */
.header {
    background: #ffffff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.nav-brand h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 28px;
}

.nav-list a {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
}

.nav-list a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: var(--accent);
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Hero */
.hero {
    min-height: 75vh;
    background: var(--bg-gradient);
    color: #ffffff;
    display: flex;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 3.4rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero h3 {
    margin-top: 12px;
    font-weight: 400;
    opacity: 0.95;
}

.hero p {
    margin-top: 30px;
    font-size: 1.1rem;
    opacity: 0.95;
}

/* Section Titles */
section h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: var(--primary);
}

/* Cards Sections */
.about,
.services {
    background: #ffffff;
    margin: 40px auto;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Text */
section p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

/* Lists */
ul {
    margin-top: 20px;
    padding-left: 22px;
}

ul li {
    margin-bottom: 14px;
    font-size: 1rem;
    position: relative;
}

ul li::marker {
    color: var(--accent);
}

/* Contact */
.contact {
    background: linear-gradient(135deg, #fff3e0, #e3f2fd);
    border-radius: 18px;
    text-align: center;
}

.contact h2 {
    color: var(--secondary);
}
.contact h5 {
    color: var(--text-muted);
}

.contact p {
    font-size: 1.05rem;
}
 .contact button {
    background: linear-gradient(135deg, #fa94e2, #ff6fcf);
    border: none;
    color: #ffffff;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 32px;          /* soft pill shape */
    cursor: pointer;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 25px rgba(250, 148, 226, 0.45);
    transition: all 0.35s ease;
}

/* Hover */
.contact button:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(250, 148, 226, 0.55);
    color: var( --text-dark);
}

/* Active / Click */
.contact button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(250, 148, 226, 0.45);
}

/* Focus (Accessibility) */
.contact button:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(250, 148, 226, 0.35);
}


/* Footer */
.footer {
    margin-top: 60px;
    padding: 1px ;
    background: #ffffff;
    color: var(--text-muted);
    text-align: center;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        gap: 15px;
    }

    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h1 {
        font-size: 2.4rem;
    }
}


/* Responsive Image */
.about-image {
    width: 100%;          /* fits mobile */
    max-width: 1000px;    /* desktop limit */
    height: auto;         /* keeps aspect ratio */
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

/* Mobile Optimization */
@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }

    .about {
        margin: 20px 10px;
        border-radius: 14px;
    }

    .about-image {
        border-radius: 10px;
    }
}


