
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    color: #111;
}

header {
    background-color: #fff;
    border-bottom: 1px solid #012e4e;
    width: 100%;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 40px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.nav-left .nav-logo {

    max-height: 100px;
    object-fit: contain;
}


.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #012e4e;
    font-weight: bold;
    font-size: 16px;
}

/* Login-Button Style */
.login-button {
    background-color: #012e4e;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}


.login-button:hover {
    background-color: #025e8c;
}
/* Login-Button Style */
.secondery-button {
    background-color: #fff;
    border: 1px solid #012e4e;
    color: #012e4e;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.secondery-button:hover {
    background-color: #025e8c;
    color: #fff;
}


.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;

}


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

.logo img {
    max-width: 100%;
    height: auto;
}

section {
    text-align: center;
    padding: 40px 20px;
}

.seo-text {
    background-color: #fafafa;
    padding: 40px 20px;
}

.seo-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.7;
    font-size: 16px;
    color: #222;
}

.seo-container h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #012e4e;
}


.grid-gallery {
    padding: 40px 20px;
    display: flex;
    justify-content: center;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    width: 100%;
    justify-items: center;
}

.grid-item {
    text-align: center;
}

.grid-item p {
    margin-top: 10px;
    font-size: 14px;
    color: #012e4e;
}

.grid-title {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 0;
}

.grid-title h2 {
    font-size: 24px;
    color: #012e4e;
    margin-bottom: 10px;
}


footer {
    background-color: #f0f0f0;
    border-top: 1px solid #012e4e;
    width: 100%;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 40px;
    text-align: center;
    font-size: 14px;
}

.footer-inner a {
    margin: 0 15px;
    text-decoration: none;
    color: #333;
}


#scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #012e4e;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    transition: background-color 0.3s ease;
}

#scrollTopBtn:hover {
    background-color: #025e8c;
}
