body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    font-family: 'Arial', 'Futura', sans-serif; 
    scroll-behavior: smooth;
}

.custom-navbar {
    background-color: #ffffff !important; 
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 1030; 
    transition: background-color 0.3s ease;
}

.navbar .nav-link {
    color: #333 !important;
    font-weight: 500;
}

.navbar .nav-link:hover {
    color: #007bff !important;
}

.custom-dropdown {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
}

.custom-dropdown .dropdown-item {
    padding: 10px 20px;
    transition: background 0.2s, color 0.2s;
}

.custom-dropdown .dropdown-item:hover {
    background-color: #f1f1f1;
    color: #007bff;
}

.navbar-brand {
    font-size: 1.5rem;
}

.img-logo{
    width:40px;
    height: 40px;
    margin-right: 20px;
}

.scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #007bff;
    color: white;
    padding: 12px;
    border-radius: 50%;
    display: none;
    z-index: 1000;
    font-size: 24px;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.scroll-top:hover {
    background-color: #bfdeff;
}

.scroll-top i {
    pointer-events: none; 
}

/* --- Footer --- */
.site-footer {
    background-color: #1c1c1c;
    color: #dcdcdc;
    padding: 50px 0 20px;
    font-size: 0.95rem;
}

.site-footer h5 {
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-about p {
    color: #aaaaaa;
}

.footer-contact ul {
    padding-left: 0;
}

.footer-contact li {
    margin-bottom: 10px;
    color: #dcdcdc;
}

.footer-contact a {
    color: #dcdcdc;
    text-decoration: none;
}

.footer-contact a:hover {
    text-decoration: underline;
}

.footer-social a {
    font-size: 20px;
    color: #dcdcdc;
    margin-right: 15px;
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #00c6ff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 15px;
    color: #999;
    font-size: 0.85rem;
}

.developer-credit {
    font-size: 0.8rem;
    color: #aaa;
    margin-top: 5px;
}

.developer-credit a {
    color: #00c6ff;
    text-decoration: none;
}

.developer-credit a:hover {
    text-decoration: underline;
}

.img{
    width: 30%;
    height: 30%;
    padding: 20px 10px;
}

.about-section {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.about-img {
    width: 100%;
    max-width: 300px;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-img:hover {
    transform: scale(1.03);
}

.about-content {
    padding-left: 0;
    padding-right: 0;
}

.about-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.about-content p {
    color: #212529;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-content blockquote {
    border-left: 4px solid #0d6efd;
    padding-left: 1rem;
    font-style: italic;
    color: #6c757d;
    margin-top: 2rem;
}

.services-video-section {
    background-color: #f8f9fa;
    padding: 30px 40px;
}

.services-video-section h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 1rem;
}

.services-video-section p {
    color: #212529;
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.services-video-section video {
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    margin-left:5%;
}

.services-video-section video:hover {
    transform: scale(1.03);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 576px) {
    .scroll-top {
        font-size: 18px;
        padding: 10px;
        bottom: 15px;
        right: 15px;
    }

    .navbar .navbar-brand {
        font-size: .95rem;
    }

    .navbar .nav-link {
        font-size: 0.85rem;
    }

    .site-footer {
        padding: 30px 10px 15px;
        font-size: 0.85rem;
    }

    .footer-social a {
        font-size: 18px;
    }

    .about-content h2,
    .services-video-section h2 {
        font-size: 1.75rem;
    }

    .about-content p,
    .services-video-section p {
        font-size: 0.9rem; 
    }

    .services-video-section {
        padding: 20px 15px;
    }

    .about-img {
        max-width: 100%;
        margin: 0 auto 20px;
        display: block;
    }

    .services-video-section video {
        width: 100%;
        margin-left: 0;
    }
}

/* Tablets and small desktops */
@media (max-width: 768px) {
    .scroll-top {
        font-size: 20px;
        padding: 10px;
        bottom: 15px;
        right: 20px;
    }

    .navbar .navbar-brand {
        font-size: 1rem;
    }

    .navbar .nav-link {
        font-size: 0.9rem;
    }

    .site-footer {
        padding: 40px 20px 20px;
        font-size: 0.9rem;
    }

    .footer-social a {
        font-size: 18px;
    }

    .about-content h2,
    .services-video-section h2 {
        font-size: 2rem;
    }

    .about-content p,
    .services-video-section p {
        font-size: 1rem;
    }

    .services-video-section {
        padding: 25px 25px;
    }

    .about-img {
        max-width: 80%;
        margin: 0 auto 20px;
        display: block;
    }

    .services-video-section video {
        width: 90%;
        margin-left: 5%;
    }
}

@media (max-width: 480px) {
    .navbar .navbar-brand {
        font-size: .85rem;
    }
    
    .about-content h2,
    .services-video-section h2 {
        font-size: 1.5rem;
    }

    .about-content p,
    .services-video-section p {
        font-size: 0.85rem;
    }

    .site-footer {
        font-size: 0.8rem;
    }

    .footer-social a {
        font-size: 16px;
    }

    .scroll-top {
        font-size: 16px;
        padding: 8px;
        bottom: 10px;
        right: 10px;
    }

    .services-video-section {
        padding: 20px 10px;
    }

    .services-video-section video {
        width: 100%;
        margin-left: 0;
    }

    .about-img {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 20px;
        display: block;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 20px 0; 
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 10px 0; 
    }
}

@media (max-width: 400px) {
    .navbar-brand {
        font-size: 1rem;
        white-space: nowrap; 
    }
    .navbar {
        padding-left: 10px;
        padding-right: 10px;
    }

    .navbar-toggler {
        margin-left: auto; 
    }
    
    .container {
        padding-top: 10px;
        padding-bottom: 10px;
    }    
}

@media (max-width: 576px) {

    .navbar-brand {
        font-size: 0.9rem;
        white-space: nowrap;
    }

    .navbar {
        padding-left: 10px;
        padding-right: 10px;
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
}


