/* Logo Section */

.logo-section {
    background-color: #1a1a1a;
    padding: 50px 0;
    overflow: hidden;
    color: white;
}

.logo-container {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.logo-track {
    display: flex;
    gap: 2rem;
    animation: scroll 40s linear infinite;
}

.logo-slide {
    flex: 0 0 auto;
    width: 180px;
    height: 120px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    transition: transform 0.3s ease;
}

.logo-slide img {
    max-height: 80px;
    max-width: 100%;
    object-fit: contain;
}

.logo-slide:hover {
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.blue-gradient-text {
    background: linear-gradient(to right, #00c6ff, #0072ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.spin-logo {
    animation: spin 14s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spin-logo-hover {
    transition: transform 0.5s ease;
}

.spin-logo-hover:hover {
    transform: rotate(360deg);
}


/*  Hero Carsoul Section Styling */
.kick-watermark {
    width: 100%;
    opacity: 0.7;
    height: fit-content;
}

.carousel-item img {
    object-fit: cover;
    height: 75vh;
    border-radius: 12px;
    border: 4px solid white;
}

@keyframes slowspin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.spinning-ball {
    width: 100%;
    max-width: 100px;
    opacity: 0.7;
    animation: slowspin 10s linear infinite;
}

.hero-wrapper {
    min-height: 85vh;
    /* background: linear-gradient(to right, #1a1a40,rgb(46, 1, 22)); */
    /* background: linear-gradient(to right, rgb(109, 25, 4), rgb(1, 44, 1)); */
    display: flex;
    align-items: center;
    overflow: hidden;
}


/*  Hero Minister Card Styling */

.ministry-card img {
    object-fit: contain;
    height: 60px;
    width: 60px;
    border-radius: 50%;
    border: 2px solid #e6c200;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.bg-gray-gradient {
    background: linear-gradient(to bottom right, #f4f4f4, #d6d6d6);
}

.custom-row-height {
    min-height: 150px;
    /* Adjust as needed */
}

.no-padding {
    padding: 0 !important;
    margin: 0 !important;
}


/* Custom styles (optional) */

/* Nav link styles */
.navbar-dark .nav-link {
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
    color: #000;
    /* Optional: change text color for contrast */
    background-color: #ffc107;
    /* Yellow box on hover */
}

/* Navbar brand styles */
.navbar-brand img {
    height: 50px;
    margin-right: 10px;
}

.navbar-brand span {
    font-weight: 600;
    font-size: 1.2rem;
    color: white;
}

/* Highlight button */
.btn-highlight {
    background-color: #ffc107;
    color: rgb(172, 26, 164);
    font-weight: bold;
}

.btn-highlight:hover {
    background-color: #e0a800;
}

/* Dropdown menu */
.dropdown-menu {
    background-color: violet;
    border: none;
    padding: 0.5rem 0;
}

/* Dropdown item styles */
.dropdown-item {
    color: white;
    transition: color 0.3s, background-color 0.3s;
}

.dropdown-item:hover {
    color: blue;
    background-color: transparent;
    /* Keep violet background visible */
}


.btn-highlight {
    background-color: #ffc107;
    color: rgb(172, 26, 164);
    font-weight: bold;
}

.btn-highlight:hover {
    background-color: #e0a800;
}

/* BackGround Styling*/

.bg-nsd-gradient {
    background: linear-gradient(135deg, rgb(3, 4, 70), rgb(20, 7, 66), rgb(218, 89, 196));

    /* optional: text white for dark bg */
}

.bg-nsd-gradient-r {
    background: linear-gradient(135deg, rgb(218, 89, 196), rgb(20, 7, 66), rgb(3, 4, 70));

    /* optional: text white for dark bg */
}

.center-page-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    /* background: #f8f9fa; */
    /* optional light background */
}


/* Social Wall Section*/

.image-card {
    width: 100%;
    height: 300px;
    /* fixed height */
    overflow: hidden;
    border-radius: 0.375rem;
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075);
    background-color: #2a2a2a;
    /* dark gray background for empty space */
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* fit entire image without cropping */
    display: block;
}