﻿/* Full Screen Carousel Container */
.carousel-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 110vh;
    width: 100%;
    padding-top: 5px;
    margin-bottom: 3px
}

/* Large Stylish Card */
.carousel-card {
    width: 95%;
    max-width: 1800px;
    background: white;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Carousel Styling */
.carousel-inner, .carousel-item {
    border-radius: 20px;
}

.carousel img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .carousel-container {
        min-height: 65vh;
        padding-top: 5px;
    }

    .carousel-card {
        width: 98%;
    }

    .carousel img {
        height: 350px;
    }
}


/* Stylish Info Cards */
.info-card {
    text-align: center;
    padding: 30px;
    border-radius: 17px;
    color: white;
    font-weight: bold;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    margin-top: -80px !important; /* Top Space कमी केला */
    margin-bottom: 5px
}

    .info-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }

/* Gradient Backgrounds */
.card-1 {
    background: linear-gradient(135deg, #ff7eb3, #ff758c);
}

.card-2 {
    background: linear-gradient(135deg, #ff9a8b, #ff6a88);
}

.card-3 {
    background: linear-gradient(135deg, #32aef3, #0072ff);
}


@media (max-width: 768px) {
    .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px; /* Cards मध्ये space */
    }

    .col-md-4.col-sm-12 {
        flex: 1 1 30%; /* Mobile मध्ये 3 Cards एका Row मध्ये Set */
        max-width: 30%;
    }

    .info-card {
        padding: 15px;
        height: 150px; /* **Ensure Same Height for Mobile View** */
        margin-top: -40px !important; /* Top Space कमी केला */
        margin-bottom: 5px;
    }
}

/* General Styling */
.container.my-3 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

/* Update Cards Styling */
.update-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

    .update-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .update-card h4 {
        color: #007bff;
        font-weight: bold;
    }

    .update-card p {
        color: #555;
    }

    .update-card .btn {
        margin-top: 10px;
    }

/* Responsive Design */
@media (max-width: 768px) {
    .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .col-md-4 {
        flex: 1 1 100%;
        max-width: 100%;
    }
}



/* Our Advisors Section */
.advisors-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    background: white;
    padding: 20px 0;
}

/* Continuous Scrolling Wrapper */
.advisors-slider {
    display: flex;
    width: calc(150px * 18); /* 9 images * 2 (duplicate for seamless effect) */
    animation: scrollInfinite 20s linear infinite;
}

    /* Individual Advisor Image */
    .advisors-slider div {
        flex: 0 0 auto;
    }

    .advisors-slider img {
        width: 150px;
        height: 150px;
        margin: 0 15px;
        border-radius: 50%;
        border: 4px solid #007bff;
        transition: transform 0.4s ease-in-out;
    }

        .advisors-slider img:hover {
            transform: scale(1.1);
            border-color: #ff7eb3;
        }

/* Keyframes for Seamless Infinite Scrolling */
@keyframes scrollInfinite {
    from {
        transform: translateX(0%);
    }

    to {
        transform: translateX(-50%);
    }
}

/* White Fade Effect on Left & Right */
.advisors-container::before,
.advisors-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 10%;
    height: 100%;
    z-index: 2;
}

.advisors-container::before {
    left: 0;
    background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
}

.advisors-container::after {
    right: 0;
    background: linear-gradient(to left, white 0%, rgba(255, 255, 255, 0) 100%);
}














