/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

/* Font Face Declaration */
@font-face {
    font-family: "Roboto";
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    font-weight: 700;
    font-style: normal;
}

/* Reset and Base Styles */
* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background: linear-gradient(135deg, #083b66 0%, #0a4a7a 100%);
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    font-size: 16px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    background: #b6b6b6;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

nav .home {
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
}

.nav-container {
    display: flex;
    font-family: "Roboto", sans-serif;
    letter-spacing: 1px;
    color: #0a4a7a;
    text-decoration: none;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
nav .home a:first-child {
    font-family: "Roboto", sans-serif;
    font-size: 1.8em;
    letter-spacing: 1px;
    color: #0a4a7a;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 400;
}

nav .home a:first-child img {
    max-width: 40px;
    height: auto;
}

nav .home a:not(:first-child) {
    color: #0a4a7a;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

nav .home a:not(:first-child):hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
}

/* Main Content */
main {
    flex: 1;
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", sans-serif;
    margin: 0 0 20px 0;
    line-height: 1.3;
    font-weight: 500;
    color: #ffffff;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    background: linear-gradient(45deg, #ffffff, #e3f2fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h2 {
    font-size: 2em;
    margin-bottom: 25px;
    color: #4fc3f7;
    border-bottom: 2px solid #4fc3f7;
    padding-bottom: 10px;
}

h3 {
    font-size: 1.5em;
    margin-bottom: 20px;
    color: #81d4fa;
}

p {
    margin: 0 0 20px 0;
    font-size: 1.1em;
    line-height: 1.7;
    color: #e3f2fd;
}

/* Links */
a:link, a:visited {
    color: #4fc3f7;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover, a:active {
    color: #81d4fa;
    text-decoration: underline;
}

/* Lists */
ul, ol {
    margin: 0 0 20px 0;
    padding-left: 30px;
}

li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #e3f2fd;
}

/* Footer */
footer {
    background: rgba(240, 240, 240, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding: 30px 0;
    margin-top: auto;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}

footer section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
    color: #333333;
}

footer section p {
    margin: 0 0 10px 0;
    font-size: 0.9em;
    color: #666666;
}

footer a {
    color: #0789e0;
    margin: 0 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #0a4a7a;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    justify-items: center;
}

.image-gallery img {
    width: 100%;
    max-width: 150px;
    height: 150px;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f6f8fa;
    padding: 2px;
}

.image-gallery img[src*="IMG_4832.jpg"] {
    transform: rotate(90deg);
}

.image-gallery img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Contact Page Specific */
.contact-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.contact-info strong {
    color: #4fc3f7;
}

.map-container {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* About Page Specific */
.about-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    box-sizing: border-box;
}

.about-section h2 {
    margin-top: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    nav section {
        flex-direction: column;
        gap: 15px;
        padding: 15px 20px;
    }
    
    nav .home {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    nav .home a:first-child {
        font-size: 1.5em;
    }
    
    main {
        padding: 20px;
    }
    
    h1 {
        font-size: 2em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info, .about-section {
        padding: 20px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    nav section {
        padding: 10px 15px;
    }
    
    main {
        padding: 15px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    p {
        font-size: 1em;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}
.about-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}
.highlight {
    background: linear-gradient(45deg, #4fc3f7, #81d4fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
}
.facility-image {
    width: 600px;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    display: block;
}

.card {
    overflow: hidden;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    color: #0a4a7a;
}

.brand img {
    height: 60px;
    width: auto;
}

@media (max-width: 768px) {
    .brand {
        font-size: 1.5rem;
    }

    .brand img {
        height: 45px;
    }
}