@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #fff;
    line-height: 1.6;
}

/* HERO */
.pa-hero {
    background: url('images/image\ 8.jpeg') center/cover no-repeat;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.pa-hero-text h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #fff7c2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.55);
}

.pa-hero-text p {
    color: #fff;
    font-size: 1.5rem;
    margin-top: 10px;
     color: #f2f2f2;
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* ------- ABOUT SECTION ------- */
.about-section {
    width: 100%;
    background: #ffffff;
    padding: 70px 30px;
    display: flex;
    justify-content: center;
}

.about-container {
    width: 100%;
    max-width: 1250px;
    display: grid;
    grid-template-columns: 280px auto;
    gap: 40px;
    align-items: start;
}

/* LEFT HEADING AREA */
.about-left h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    color: #1d1d1d;
    position: relative;
}

/* Accent line under heading */
.about-left h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 120px;
    height: 6px;
    background: linear-gradient(135deg, #6dd3ff, #8a7bff);
    border-radius: 5px;
}

/* RIGHT SIDE TEXT */
.about-right p {
    font-size: 17px;
    line-height: 1.85;
    color: #4b4b4b;
    text-align: justify;
    margin-top: 5px;
}

/* MAKE IT RESPONSIVE */
@media (max-width: 900px) {

    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-left h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .about-left h2 {
        font-size: 32px;
    }

    .about-right p {
        font-size: 16px;
        text-align: left;
    }
}


/* CTA */
.pa-cta {
    padding: 70px 8%;
    background: #2d4e79;
    color: #fff;
    text-align: center;
}

.pa-cta h2 {
    font-size: 2rem;
}

.pa-cta p {
    margin: 15px 0;
}

.pa-btn {
    display: inline-block;
    padding: 12px 30px;
    background: #fff;
    color: #2d4e79;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.pa-btn:hover {
    background: #dde8ff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .pa-hero-text h1 {
        font-size: 2rem;
    }
    .pa-hero {
        height: 55vh;
    }
}
