* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #ffffff;
    color: #333;
}

.navbar {
    width: 100%;
    background: #c80000;
    color: white;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
}

.navbar a {
    color: white;
    margin-left: 20px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}
.navbar a:hover {
    text-decoration: underline;
}
.hero {
    text-align: center;
    padding: 40px 20px;
}

.hero h1 {
    color: #c80000;
    font-size: 30px;
    font-weight: bold;
}

.slider-section {
    margin: 40px 0;
    text-align: center;
}

.slider-section h2 {
    font-size: 24px;
    color: #c80000;
    margin-bottom: 15px;
}

.slider {
    width: 92%;
    margin: auto;
    display: flex;
    overflow-x: auto;
    gap: 25px;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.slider img {
    height: 350px;
    border-radius: 12px;
    flex-shrink: 0;
}

.desc {
    text-align: center;
    width: 80%;
    margin: 20px auto;
    color: #444;
    font-size: 18px;
}

.students {
    padding: 50px 20px;
    background: #fff3f3;
}

.students h2 {
    text-align: center;
    color: #c80000;
    margin-bottom: 30px;
}

.student-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 85%;
    margin: auto;
}

.student-card {
    background: white;
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 0 10px #ddd;
}

.student-card img {
    width: 100%;
    height: 180px;
    border-radius: 10px;
}

.charts {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.chart-box {
    width: 350px;
    height: 250px;
    border: 2px solid #c80000;
    border-radius: 12px;
    overflow: hidden;
    background: white;
}

.chart-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
}

.recruiters {
    padding: 50px 20px;
    text-align: center;
}

.company-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    width: 75%;
    margin: auto;
}

.company-logo {
    background: #fff3f3;
    padding: 25px;
    border-radius: 12px;
    border: 2px solid #c80000;
    display: flex;
    justify-content: center;
}

.company-logo img {
    width: 100px;
    height: auto;
}

.contact {
    display: flex;
    padding: 30px;
    gap: 10px;       
    background: #fff3f3;
    align-items: center;
}

.contact-box {
    flex: 1;        
}
.contact-box img {
    width: 100%;    
    border-radius: 12px;
}

.form-box {
    flex: 1;         
    background: white;
    padding: 20px;
    border-radius: 12px;
}

.form-box h2 {
    color: #c80000;
    margin-bottom: 20px;
}

.form-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 2px solid #c80000;
    border-radius: 6px;
}

.form-box button {
    padding: 12px 25px;
    background: #c80000;
    color: white;
    border: none;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}
.form-box button:hover {
    background: #a60000;
}