* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    background: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}


/* ================= HEADER ================= */

.header {
    background: #ffffff;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 55px;
    height: 55px;
    background: #063970;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.logo h2 {
    font-size: 18px;
    color: #063970;
}

.logo p {
    font-size: 12px;
    color: #777;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

nav a:hover {
    color: #063970;
}

.menu-btn {
    display: none;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
}


/* ================= HERO ================= */

.hero {
    min-height: 600px;
    position: relative;

    background:
        linear-gradient(
            rgba(0, 35, 75, 0.80),
            rgba(0, 35, 75, 0.80)
        ),
        url("images/placement.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero-small {
    letter-spacing: 4px;
    font-size: 14px;
    margin-bottom: 15px;
}

.hero h1 {
    font-size: 55px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
}

.primary {
    background: #f4a261;
    color: #fff;
}

.primary:hover {
    background: #e76f51;
}

.secondary {
    border: 2px solid white;
    color: white;
}

.secondary:hover {
    background: white;
    color: #063970;
}


/* ================= SECTION ================= */

.section {
    padding: 90px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    color: #f4a261;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.section-title h2 {
    font-size: 35px;
    color: #063970;
    margin-top: 5px;
}

.line {
    width: 60px;
    height: 3px;
    background: #f4a261;
    margin: 15px auto;
}


/* ================= ABOUT ================= */

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-size: 28px;
    color: #063970;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
}

.about-text ul {
    list-style: none;
    margin-top: 20px;
}

.about-text li {
    margin: 10px 0;
    color: #333;
}

.placement-card {
    background: #063970;
    color: white;
    padding: 45px 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.placement-card h3 {
    font-size: 25px;
    margin-bottom: 15px;
}

.card-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background: #f4a261;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}


/* ================= STATISTICS ================= */

.statistics {
    padding: 90px 0;
    background: #063970;
}

.section-title.light span,
.section-title.light h2 {
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: white;
    padding: 35px 20px;
    text-align: center;
    border-radius: 8px;
}

.stat-icon {
    font-size: 35px;
    margin-bottom: 10px;
}

.stat-card h2 {
    font-size: 40px;
    color: #063970;
}

.stat-card p {
    color: #666;
}


/* ================= RECRUITERS ================= */

.recruiter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.company {
    padding: 30px 15px;
    border: 1px solid #eee;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}

.company:hover {
    transform: translateY(-7px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.company-logo {
    width: 90px;
    height: 90px;
    margin: auto;
    border-radius: 50%;
    background: #f1f5f9;
    color: #063970;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
}

.company h3 {
    margin-top: 15px;
}


/* ================= TRAINING ================= */

.training {
    background: #f7f9fc;
}

.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.training-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.training-card:hover {
    transform: translateY(-5px);
}

.training-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.training-card h3 {
    color: #063970;
    margin-bottom: 10px;
}

.training-card p {
    color: #666;
}


/* ================= PROCESS ================= */

.process {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-number {
    width: 70px;
    height: 70px;
    background: #063970;
    color: white;
    border-radius: 50%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.process-item h3 {
    color: #063970;
    margin-bottom: 8px;
}

.process-item p {
    color: #666;
}


/* ================= HIGHLIGHTS ================= */

.highlights {
    background: #063970;
    padding: 80px 0;
    color: white;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.highlight-grid > div {
    padding: 30px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
}

.highlight-grid h3 {
    margin-bottom: 10px;
    color: #f4a261;
}


/* ================= CONTACT ================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    background: #063970;
    color: white;
    padding: 40px;
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 25px;
    margin-bottom: 20px;
}

.contact-info p {
    margin: 15px 0;
}

form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input,
textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 14px;
}

textarea {
    resize: vertical;
}


/* ================= FOOTER ================= */

footer {
    background: #021d3a;
    color: white;
}

.footer-content {
    padding: 45px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content h3 {
    margin-bottom: 8px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.copyright {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: #bbb;
}


/* ================= RESPONSIVE ================= */

@media (max-width: 900px) {

    nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        display: none;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    .menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 40px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .recruiter-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process {
        grid-template-columns: repeat(2, 1fr);
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 600px) {

    .logo h2 {
        font-size: 14px;
    }

    .logo p {
        font-size: 10px;
    }

    .hero {
        min-height: 500px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .stats-grid,
    .recruiter-grid,
    .training-grid,
    .process {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 60px 0;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

}



/* ================= PLACED STUDENTS SLIDER ================= */

.placed-students {
    padding: 90px 0;
    background: #063970;
    overflow: hidden;
}

.student-slider {
    position: relative;
    max-width: 1000px;
    margin: auto;
    overflow: hidden;
    border-radius: 15px;
}

.student-slides {
    display: flex;
    transition: transform 0.7s ease-in-out;
}

.student-slide {
    min-width: 100%;
    position: relative;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

.student-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}


/* Student Information */

.student-info {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;

    padding: 30px;

    background: linear-gradient(
        transparent,
        rgba(0, 0, 0, 0.9)
    );

    color: white;
}

.student-info h3 {
    font-size: 28px;
    margin-bottom: 5px;
}

.student-info p {
    font-size: 15px;
    margin-bottom: 10px;
}

.student-info span {
    display: inline-block;
    background: #f4a261;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}


/* Previous / Next Buttons */

.slider-btn {
    position: absolute;

    top: 50%;
    transform: translateY(-50%);

    width: 50px;
    height: 50px;

    border: none;
    border-radius: 50%;

    background: rgba(255,255,255,0.85);

    color: #063970;

    font-size: 25px;

    cursor: pointer;

    z-index: 10;

    transition: 0.3s;
}

.slider-btn:hover {
    background: #f4a261;
    color: white;
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}


/* Dots */

.slider-dots {
    position: absolute;

    bottom: 20px;

    left: 50%;

    transform: translateX(-50%);

    display: flex;

    gap: 8px;

    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;

    background: white;

    border-radius: 50%;

    cursor: pointer;

    opacity: 0.6;

    transition: 0.3s;
}

.dot.active {
    opacity: 1;

    background: #f4a261;

    transform: scale(1.3);
}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .student-slide img {
        height: 400px;
    }

    .student-info {
        padding: 20px;
    }

    .student-info h3 {
        font-size: 21px;
    }

    .student-info p {
        font-size: 13px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

}