nav {
    font-family: Georgia, serif;
    color: #0d6efd;
}

nav .nav-link {
    color: #0d6efd !important;
}

nav .nav-link.active {
    color: #ffc107 !important; /* text-warning */
}

nav .navbar-brand span {
    color: #0d6efd;
}

.heading,
.headings {
    font-family: Georgia !important;
    color: #0d6efd !important;
}

.heading {
    font-size: 22px;
}

.texts {
    font-family: Georgia !important;
}

body {
    padding-top: 70px;
}

.carousel-item img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: cover;
    display: block;
    margin: 0 auto;
}

.carousel-caption {
    background-color: rgba(56, 54, 54, 0.5);
    padding: 1rem;
    border-radius: 10px;
}

.carousel-caption h5,
.carousel-caption p {
    color: #fff;
}

@media (max-width: 767px) {
    .carousel-caption {
        bottom: 10%;
        font-size: 0.9rem;
    }

    .carousel-caption h5,
    .carousel-caption p {
        font-size: 0.85rem;
    }
}

#gallerySection img {
    width: 100%;            /* Full width of container */
    height: 200px;          /* Fixed height for all images */
    object-fit: cover;      /* Crop and fit image inside */
    border-radius: 0.5rem;  /* Rounded corners */
}

/* Social Icons Base */
.social-icon {
    color: white;
    transition: color 0.3s ease;
    margin-right: 12px;
}

.social-icon:last-child {
    margin-right: 0;
}

/* Individual colors on hover */
.social-icon.twitter:hover {
    color: #1da1f2;
}

.social-icon.facebook:hover {
    color: #3b5998;
}

.social-icon.instagram:hover {
    color: #e4405f;
}

.social-icon.skype:hover {
    color: #00aff0;
}

.social-icon.linkedin:hover {
    color: #0077b5;
}

.social-icon.globe:hover {
    color: #084298;
}
.scroll-gallery {
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 0;
}

.gallery-track {
    display: flex;
    gap: 20px;
    animation: scroll-left 40s linear infinite;
}

.gallery-img-wrapper img {
    max-height: 200px;
    border-radius: 10px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
