html, body {
    overflow-x: hidden;
}

body {
    width: 100%;
    margin: 0;
}

a {
    text-decoration: none;
}

.kbd {
    font-family: Freescpt;
    font-style: oblique;
    color: #1e90ff;
    font-size: 110%;
}

.highlight {
    color: #343a40;
}

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

.navbar-transparent {
    background-color: transparent !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    box-shadow: none;
    padding: 10px 0;
    font-family: 'Outfit', sans-serif;
}

.navbar-logo {
    width: 150px;
    height: auto;
    margin-left: 20px;
}

.navbar-nav {
    margin-left: auto;
}

.navbar-nav .nav-item {
    margin-left: 10px;
}

.navbar-nav .nav-item .nav-link {
    color: rgb(0, 0, 0);
    font-size: 1.2rem;
    padding-left: 15px;
}

.navbar-nav .nav-item .contact-link {
    background-color: rgba(30, 144, 255, 0.2);
    color: rgb(0, 0, 0);
    padding: 8px 15px;  
    border-radius: 20px;
    margin-left: 5px;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: 1px solid rgba(30, 144, 255, 0.5);
    position: relative; 
    top: 2px;  
}
.navbar-nav .nav-item .contact-link:hover {
    background-color: #1e90ff;
    color: white;
    transform: translateY(-2px);
}

.navbar-toggler {
    background-color: rgba(30, 144, 255, 0.2);
    color: white;
    border: 1px solid rgba(30, 144, 255, 0.5);
    border-radius: 20px;
    transition: all 0.3s ease;
    padding: 8px 15px;
    margin-right: 10px;
}

.navbar-toggler:hover {
    background-color: #1e90ff;
    transform: translateY(-2px);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.about-section {
    padding: 60px 0;
    margin-top: 60px;
    font-family: outfit;
}

.about-section:nth-child(odd) {
    background-color: #E3E3E3;
}

.about-section img {
    max-width: 100%;
    border-radius: 8px;
    padding-bottom: 20px;
}

.about-text {
    margin-top: 20px;
}

.section-heading {
    font-size: 2.5rem;
    color: #343a40;
}

.footer-section {
    background-color: #343a40;
    color: #f8f9fa;
    padding: 60px 0 30px;
    font-family: 'Outfit', sans-serif;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    width: 130px;
    height: auto;
}

.footer-heading {
    color: #1e90ff;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.footer-links, .footer-contact {
    list-style: none;
    padding-left: 0;
}

.footer-links li, .footer-contact li {
    margin-bottom: 10px;
}

.footer-links a, .footer-contact a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover, .footer-contact a:hover {
    color: #1e90ff;
    text-decoration: none;
}

.footer-contact i {
    margin-right: 10px;
    color: #1e90ff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    font-size: 0.9rem;
}

.footer-link {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
    margin: 0 5px;
}

.footer-link:hover {
    color: #1e90ff;
    text-decoration: none;
}

@media (max-width: 768px) {
.navbar-nav {
    margin-left: 0;
    text-align: center;
}

.navbar-nav .nav-item {
    margin-left: 0;
}

.navbar-nav .nav-item .contact-link {
    margin-left: 0;
    margin-top: 8px;
    display: inline-block;
}

.navbar-logo {
    margin-left: 0;
}

.navbar-collapse {
    background-color: #343a40;
    color: white;
}

.navbar-collapse .nav-link {
    color: white;
}

.navbar-collapse .nav-link:hover {
    color: #dcdcdc;
}
    
    .section-heading {
        font-size: 1.3rem;
        color: #343a40;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .col-md-6.text-md-end {
        text-align: center !important;
        margin-top: 15px;
    }
}