/* General Styles */
* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

    font-family: 'Arial', sans-serif;

}



body {

    display: flex;

    flex-direction: column;

    min-height: 100vh; /* Ensures full viewport height */

    background-color: #f9f9f9;

}



/* Header Styles */

header {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    background-color: #000000;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 10px 20px;

    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);

    z-index: 1000;

}



.navbar_container {

    display: flex;

    align-items: center;

    width: 100%;

}



.navbar_logo {

    display: flex;

    align-items: center;

}



.navbar_logo img {

    width: 60px;

    height: auto;

    margin-right: 10px;

}



.navbar_title {

    font-size: 20px;

    font-weight: bold;

}



.navbar {

    margin-left: auto;

}



.navbar_links {

    list-style: none;

    display: flex;

}



.navbar_links li {

    margin: 0 15px;

}



.navbar_links li a {

    color: #fff;

    text-decoration: none;

    font-size: 16px;

    transition: color 0.3s;

}



.navbar_links li a:hover {

    color: #f44336;

}



/* Main Content Layout */

.split-container {

    flex: 1; /* Pushes footer to bottom */

    display: flex;

    margin-top: 60px; /* Offset for fixed header */

    padding-bottom: 20px;

}



.left-section,

.right-section {

    flex: 1;

    padding: 20px;

    overflow-y: auto;

}



.left-section {

    background-color: #f4f4f4;

    color: #333;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

}



.left-section h1 {

    font-size: 28px;

    margin-bottom: 15px;

    color: #444;

}



.left-section p {

    font-size: 16px;

    line-height: 1.5;

    color: #666;

}



/* Right Section and Gallery */

.right-section {

    background-color: #ffffff;

}



.right-section h2 {

    text-align: center;

    font-size: 24px;

    margin-bottom: 20px;

    color: #444;

}



.gallery-grid {

    display: grid;

    grid-template-columns: repeat(4, 1fr); /* 4 columns */

    grid-gap: 15px;

    padding: 20px;

}



.gallery-item {

    background-color: #ffffff;

    border: 1px solid #ddd;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

    transition: transform 0.3s ease, box-shadow 0.3s ease;

}



.gallery-item:hover {

    transform: scale(1.05);

    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);

}



.gallery-item iframe {

    width: 100%;

    height: 150px;

    border: none;

}



/* Footer Styles */

footer {

    text-align: center;

    padding: 10px 0;

    background-color: #444;

    color: #fff;

    font-size: 14px;

    width: 100%;

    margin-top: auto;

}

