/* -------------------------
   GLOBAL RESET & FONTS
----------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f7ff;
    color: #1a1a1a;
    line-height: 1.6;
}

/* -------------------------
   NAVBAR
----------------------------*/
nav {
    width: 100%;
    background: #ffffff;
    padding: 12px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    position: sticky;
    top: 0;
    z-index: 999;
}

nav img {
    height: 110px;
}

nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #003b8e;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

nav ul li a:hover {
    color: #005dff;
}

/* -------------------------
   HERO SECTION
----------------------------*/
.hero {
    height: 110vh;
    background: url('assets/pathwayabroaddesk.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 65px;
    color: #ffffff;
}

.hero h1 {
    font-size: 55px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 3px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 18px;
    width: 50%;
    text-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

/* BUTTON STYLES */
.btn {
    display: inline-block;
    margin-top: 22px;
    background: #005dff;
    color: white;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn:hover {
    background: #003db7;
}

/* -------------------------
   SECTIONS
----------------------------*/
section {
    padding: 80px 60px;
}

h2 {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #003b8e;
    margin-bottom: 40px;
}

/* -------------------------
   SERVICE CARDS
----------------------------*/
.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card h3 {
    color: #003b8e;
    margin-bottom: 12px;
}

.service-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
}

/* -------------------------
   CONTACT FORM
----------------------------*/
.contact-box {
    width: 480px;
    margin: auto;
    background: white;
    padding: 35px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

input, textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 14px;
    font-size: 15px;
}

button {
    width: 100%;
    padding: 14px;
    background: #005dff;
    border: none;
    color: white;
    border-radius: 10px;
    margin-top: 5px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
}

button:hover {
    background: #003db7;
}

/* -------------------------
   FOOTER
----------------------------*/
footer {
    background: #003b8e;
    color: white;
    text-align: center;
    padding: 28px;
    font-size: 15px;
    margin-top: 50px;
}

/* -------------------------
   ANIMATIONS
----------------------------*/
.fade {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease;
}

.fade-visible {
    opacity: 1;
    transform: translateY(0px);
}

/* -------------------------
   RESPONSIVE DESIGN
----------------------------*/
@media (max-width: 950px) {
    nav ul {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        width: 80%;
        font-size: 16px;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }
}
