/* General Styles */
html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal scrolling */
}



body {
    font-family: 'DVOT-Surekh', sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #e3f2fd;
}

/* Header */
header {
    background-color: #0d47a1;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo {
    height: 60px;
}

header h1 {
    color: white;
    font-size: 40px;
    margin: 0;
}

/* Navigation */
nav {
    background-color: #FFFFFF;
    padding: 10px 0;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0;
    padding: 0;
}

nav ul li a {
    display: block;
    background-color: #0d47a1;
    color: white;
    text-decoration: none;
    font-weight: bold;
    padding: 12px 20px;
    border-radius: 5px;
    text-align: center;
    min-width: 120px;
    font-size: 25px; /* Increased font size */
}

nav ul li a:hover {
    background-color: #003c8f;
}

/* Image Sections */
.image-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.image-container {
    display: flex;
    width: 80%;
    justify-content: space-between;
    margin: 20px 0;
}

.upper, .lower {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.image-box {
    width: 23%;
}

.image-box img {
    width: 100%;
    height: 250px; /* Set a uniform height for all images */
    object-fit: cover; /* Ensures images maintain their aspect ratio while covering the space */
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    max-height: none; /* Remove max-height restriction */
}


/* Subpage Content */
.content {
    padding: 20px;
    text-align: left;
    width: 80%;
    margin: auto;
    background: white;
    border-radius: 8px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}


@font-face {
    font-family: 'DVOT-Surekh';
    src: url('DVOT-Surekh.ttf') format('truetype'); /* Ensure the font file is in the same directory */
}

body {
    font-family: 'DVOT-Surekh', sans-serif;
}
.container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.column {
    width: 48%; /* Adjusts width for two columns */
    padding: 10px;
    box-sizing: border-box;
}
