@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

a {
    text-decoration: none;
    color: #1565c0;
}
p{
    margin-bottom: 8px;
}

.bold-500{
    font-weight: 500;
}

 /* Header Styles */
 header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 80px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
width:102.8px
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: #1565c0;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #1565c0;
    transition: width 0.3s ease;
}

nav ul li a:hover,nav ul li.active a {
    color: #1565c0;
}

nav ul li a:hover:after,nav ul li.active a:after {
    width: 100%;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Page Header */
.page-header {
    background-color: #1565c0;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

/* button */
        
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #1565c0;
    color: white;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
    margin: 10px;
}

.btn:hover {
    background-color: #0d47a1;
}

.btn-outline {
    background-color: transparent;
    color: #1565c0;
    border: 2px solid #1565c0;
}

.btn-outline:hover {
    background-color: #1565c0;
    color: white;
}


 /* Footer */
 footer {
    background-color: #263238;
    color: #fff;
    padding: 80px 0 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

        
.footer-section h3:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #1565c0;
    bottom: 0;
    left: 0;
}

.footer-section p {
    margin-bottom: 15px;
    color: #b0bec5;
    line-height: 1.7;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.social-links a:hover {
    background-color: #1565c0;
    transform: translateY(-5px);
}

.map-container {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
}

.copyright {
    margin-top: 40px;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0bec5;

}

iframe{
    max-width: 100%;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .header-container{
        padding: 15px;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .page-header h2 {
        font-size: 32px;
    }

    nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #fff;
        transition: left 0.3s;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        padding: 20px;
    }

    nav ul li {
        margin: 10px 0;
    }

                
    .page-header h2 {
        font-size: 32px;
    }
}

@media screen and (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .btn {
        display: block;
        margin: 10px auto;
        max-width: 200px;
    }
                
    .page-header h2 {
        font-size: 28px;
    }
}