body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    line-height: 1.6;
    background-color: #f8fafc;
    color: #2d3748;
}


/* Header Section */
.header {
    background: linear-gradient(135deg, #0a192f, #132a4a);
    padding: 30px 20px; /* reduced padding */
    color: #ffffff;
    text-align: center;
    border-radius: 30px;
    margin: 40px auto;
    max-width: 1200px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    border-bottom: 5px solid #c5a059;
}

.header h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #c5a059;
}

.header img {
    width: 45%;
    max-width: 450px;
    margin: 10px;
    border-radius: 15px;
    transition: 0.3s;
    height : 200px ;
}

.header img:hover {
    transform: scale(1.05);
}

/* Content Sections */
.section {
    background: #ffffff;
    padding: 35px;
    margin: 30px auto;
    max-width: 1000px;
    border-radius: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.section h2 {
    color: #0a192f;
    margin-bottom: 15px;
    border-left: 6px solid #c5a059;
    padding-left: 12px;
}

.section p {
    color: #555;
    text-align: justify;
}

/* College Cards */
.college-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.college-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    text-decoration: none;
    color: #2d3748;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #eee;
}

.college-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
    border-color: #c5a059;
}

.college-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.college-card h3 {
    color: #0a192f;
    margin: 15px;
    font-size: 20px;
}

.college-card p {
    margin: 0 15px 15px;
    font-size: 14px;
    color: #666;
}

/* Footer */
footer {
    background: linear-gradient(45deg, #0a192f, #132a4a);
    color: #c5a059;
    text-align: center;
    padding: 18px;
    margin-top: 40px;
    border-radius: 25px 25px 0 0;
    font-size: 15px;
    border-top: 4px solid #c5a059;
}

/* Responsive */
@media (max-width: 768px) {
    .header img {
        width: 90%;
    }

    .header h2 {
        font-size: 28px;
    }
    /* Tablets */
@media (max-width: 768px) {
    .college-card img {
        height: 150px;
    }
}

/* Mobile devices */
@media (max-width: 480px) {
    .college-card img {
        height: 120px;
    }
}
}


