.drafts {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}



.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}


.videobtn {
    display: inline-block;
    padding: 12px 24px;
    border: 1px solid black;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    margin-left: 25%;
    background-color: white;
    margin-top: 15%;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 2px 3px 5px -2px black;
    animation: floatBtn 1s infinite alternate ease-in-out;
}

.videobtn:hover {


    transform: scale(1.05);
}

@keyframes floatBtn {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-10px);
    }
}




.section {
    width: 100%;
    height: 500px;
    background-color: lightgrey;
    padding-top: 30px;
    overflow: hidden; /* Hide overflowing content during animation */
}

.about {
    width: 95%;
    height: 450px;
    background-color: white;
    border-radius: 30px;
    margin-left: 2.5%;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.about:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Both sections with right-to-left animation */
.about1, .about2 {
    opacity: 0;
    transform: translateX(100%);
    animation: slideInRight 0.8s ease-out forwards;
}

/* Stagger the animation - about1 first, then about2 */
.about1 {
    width: 50%;
    height: 100%;
    animation-delay: 0.3s; /* Delay for about1 */
}

.about2 {
    width: 50%;
    height: 100%;
    animation-delay: 0.6s; /* Longer delay for about2 */
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(100%);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.about1 h1 {
    margin-left: 40px;
    margin-top: 30px;
    font-size: 30px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about1 p {
    margin-left: 40px;
    margin-top: 20px;
    font-size: 18px;
    text-align: justify;
    width: 90%;
    font-family: 'Times New Roman', Times, serif;
}

/* Experience Button with right-to-left delay effect */
.experience-btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background: linear-gradient(135deg, #ff6b6b, #f81e70, #9b4dca);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4), 
                0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    outline: none;
    position: relative;
    overflow: hidden;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-left: 40px;
    margin-top: 15px;
    
    /* Right-to-left opening animation */
    opacity: 0;
    transform: translateX(100%);
    animation: slideInRight 0.8s ease-out 0.9s forwards;
}

.experience-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 107, 107, 0.6), 0 8px 15px rgba(0, 0, 0, 0.3);
}

.experience-btn:active {
    transform: translateY(2px);
}

.btn-text {
    position: relative;
    z-index: 2;
}

/* Glamorous shine effect */
.btn-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 50%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-25deg);
    transition: left 0.8s ease;
}

.experience-btn:hover .btn-shine {
    left: 150%;
}

.about2 img {
    width: 95%;
    height: 90%;
    margin-top: 20px;
    border-radius: 16px;
}


   .concept {
            background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 50%, #e8e8e8 100%);
            width: 100%;
            height: auto;
            padding: 60px 0;
            overflow: hidden;
        }

        .concept h2 {
            text-align: center;
            text-transform: uppercase;
            padding-top: 20px;
            font-size: 2.5rem;
            font-family: 'Bodoni MT', 'Times New Roman', serif;
            font-weight: 700;
            letter-spacing: 1.5px;
            color:#bda687;
            margin-bottom: 60px;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .concept h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #bda687, #bda687);
            border-radius: 2px;
        }

        .upper {
            width: 90%;
            height: auto;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            gap: 30px;
        }

        .upper1, .upper2 {
            width: 30%;
            height: auto;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            opacity: 0;
            transform: translateY(50px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
        }

        /* Staggered animation delays */
        .upper1:nth-child(1), .upper2:nth-child(1) {
            animation: cardSlideUp 0.8s ease 0.4s forwards;
        }
        .upper1:nth-child(2), .upper2:nth-child(2) {
            animation: cardSlideUp 0.8s ease 0.6s forwards;
        }
        .upper1:nth-child(3), .upper2:nth-child(3) {
            animation: cardSlideUp 0.8s ease 0.8s forwards;
        }

        .upper1:hover, .upper2:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), 0 0 30px rgba(255, 102, 0, 0.1);
        }

        .image-container {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
            border-bottom: 3px solid #bda687;
        }

       

        .upper1 img, .upper2 img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px 20px 0 0;
            transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
            filter: brightness(0.95);
        }

        /* .upper1:hover img, .upper2:hover img {
            transform: scale(1.15);
            filter: brightness(1.1);
        } */

        .image-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.3) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            border-radius: 20px 20px 0 0;
        }

        .upper1:hover .image-container::after,
        .upper2:hover .image-container::after {
            opacity: 1;
        }

        .upper1 h1, .upper2 h1 {
            font-size: 1.6rem;
            text-align: center;
            margin: 30px 0 20px;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            font-weight: 600;
            color:#bda687;
            padding: 0 20px;
            position: relative;
            transition: color 0.3s ease;
        }

        .upper1:hover h1, .upper2:hover h1 {
            color: #bda687;
        }

        .upper1 h1::after, .upper2 h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%) scaleX(0);
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, #bda687, #bda687);
            transition: transform 0.4s ease;
            border-radius: 2px;
        }

        .upper1:hover h1::after, .upper2:hover h1::after {
            transform: translateX(-50%) scaleX(1);
        }

        .upper1 p, .upper2 p {
            text-align: center;
            font-size: 1rem;
            line-height: 1.6;
            color: #555;
            padding: 0 25px 30px;
            font-family: 'Georgia', serif;
            transition: color 0.3s ease;
        }

        .upper1:hover p, .upper2:hover p {
            color: #333;
        }

        /* Hover glow effect */
        .upper1::before, .upper2::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 20px;
            background: linear-gradient(45deg, transparent, rgba(255, 153, 0, 0.05), transparent);
            opacity: 0;
            transition: opacity 0.6s ease;
            pointer-events: none;
        }

        .upper1:hover::before, .upper2:hover::before {
            opacity: 1;
        }

        /* Shine effect on hover */
        .upper1::after, .upper2::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -60%;
            width: 20%;
            height: 200%;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(255, 255, 255, 0.3), 
                transparent);
            transform: rotate(30deg);
            opacity: 0;
            transition: left 0.8s ease, opacity 0.8s ease;
            pointer-events: none;
        }

        .upper1:hover::after, .upper2:hover::after {
            left: 150%;
            opacity: 1;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes cardSlideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive design */
        @media (max-width: 1024px) {
            .upper {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            
            .upper1, .upper2 {
                width: 80%;
                max-width: 400px;
            }
            
            .concept h2 {
                font-size: 2rem;
                padding: 0 20px;
            }
        }

        @media (max-width: 768px) {
            .upper1, .upper2 {
                width: 90%;
            }
            
            .concept h2 {
                font-size: 1.8rem;
            }
            
            .image-container {
                height: 220px;
            }
        }

        @media (max-width: 480px) {
            .concept h2 {
                font-size: 1.5rem;
            }
            
            .upper1 h1, .upper2 h1 {
                font-size: 1.4rem;
            }
            
            .upper1 p, .upper2 p {
                font-size: 0.95rem;
                padding: 0 20px 25px;
            }
        }






.carousel-item img {
 
    border-radius: 12px;
    height: auto;
    width: 100%;

}






#slider-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}




* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.image-slider-box {
    width: 90%;
    max-width: 1400px;
    height: 700px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    margin: 20px;
    background: #fff;
}

.slider-item {
    position: absolute;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    opacity: 0;
    transition: all 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform: scale(0.8) translateX(100%) rotate(5deg);
    z-index: 1;
}

.slider-item.active-slide {
    opacity: 1;
    transform: scale(1) translateX(0) rotate(0deg);
    z-index: 3;
}

.slider-item.next-slide {
    opacity: 0.5;
    transform: scale(0.9) translateX(50%) rotate(3deg);
    z-index: 2;
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
}

.slider-item.active-slide img {
    transform: scale(1.05);
}

.slide-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 4;
}

.control-dot {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.control-dot:hover,
.control-dot.active-dot {
    background: #fff;
    transform: scale(1.3);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.5rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    user-select: none;
    transition: all 0.3s ease;
    z-index: 4;
}

.slider-arrow:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.arrow-prev {
    left: 30px;
}

.arrow-next {
    right: 30px;
}

@media (max-width: 768px) {
    .image-slider-box {
        height: 500px;
        width: 95%;
    }

    .slider-item {
        width: 85%;
        left: 7.5%;
    }

    .slider-arrow {
        font-size: 2rem;
        padding: 10px;
    }

    .control-dot {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 480px) {
    .image-slider-box {
        height: 350px;
    }

    .slider-item {
        width: 90%;
        left: 5%;
    }

    .slider-arrow {
        font-size: 1.5rem;
        padding: 8px;
    }

    .control-dot {
        width: 10px;
        height: 10px;
    }
}



.explore.btn {
    color: black;
    /* Text color */
    font-size: 15px;
    margin-top: 60px;
    margin-left: 40%;
    padding: 10px 30px;
    /* Button padding */
    background-color: whire;
    /* Blue background */

    border-radius: 16px;
    border: 1px solid black;

    border-radius: 5px;
    /* Rounded corners */
    display: inline-block;
    /* Ensure transform and padding work */
    transition: transform 0.3s ease, background-color 0.3s ease;
    /* Smooth zoom and hover effects */
    cursor: pointer;
    /* Indicate interactivity */
    text-transform: uppercase;
    /* Bold text */
    font-weight: 600;
    /* Bold font */
    text-decoration: none;
    /* Remove default underline if used as link */
}

.explore.btn:hover {
    transform: scale(0.9);
    /* Zoom out to 90% of original size */

}


/* Make images larger overall */
.img-fluid.rounded {
    transition: all 0.4s ease;
    cursor: pointer;
    object-fit: contain;
    /* Changed from 'cover' to 'contain' */
    width: 100%;
    height: 280px;
    background-color: #f8f9fa;
    /* Light gray background for transparency/letterboxing */
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* On hover - zoom effect */
.img-fluid.rounded:hover {
    transform: scale(1.15);
    /* Increased zoom */
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 100;
    border-color: #f8f9fa;
}

/* Adjust grid columns for larger images */
@media (min-width: 768px) {
    .col-md-4 {
        width: 50% !important;
        /* 2 columns on medium screens */
    }

    .img-fluid.rounded {
        height: 320px;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        width: 33.333333% !important;
        /* 3 columns on large screens */
    }

    .img-fluid.rounded {
        height: 350px;
    }

    .img-fluid.rounded:hover {
        transform: scale(1.2);
        /* Even larger zoom on big screens */
    }
}

/* For extra large screens */
@media (min-width: 1200px) {
    .img-fluid.rounded {
        height: 380px;
    }
}

/* Container adjustments for larger spacing */
.container {
    padding: 30px 15px;
}

.mb-3 {
    margin-bottom: 2rem !important;
    /* More space between images */
}

/* Optional: Add a pulsing animation on hover */
@keyframes gentlePulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.img-fluid.rounded:hover {
    animation: gentlePulse 2s infinite;
    animation-delay: 0.3s;
}

/* Alternative: Different zoom effects for variety */
.col-6:nth-child(odd) .img-fluid.rounded:hover {
    transform: scale(1.12) rotate(1deg);
    /* Slight rotation for odd items */
}

.col-6:nth-child(even) .img-fluid.rounded:hover {
    transform: scale(1.12) rotate(-1deg);
    /* Opposite rotation for even items */
}

/* Focus effect for accessibility */
.img-fluid.rounded:focus {
    outline: 3px solid #007bff;
    outline-offset: 3px;
}

/* Active state (when clicking) */
.img-fluid.rounded:active {
    transform: scale(0.98);
    transition: transform 0.1s;
}

/* Add a gradient overlay on hover for better text visibility if you add captions later */
.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.image-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 6px;
}

.image-wrapper:hover::after {
    opacity: 1;
}



/* Make both images and videos larger with same styling */
.img-fluid.rounded,
video.img-fluid.rounded {
    transition: all 0.4s ease;
    cursor: pointer;
    object-fit: cover;
    width: 100%;
    height: 280px;
    /* Same height as images */
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: block;
}

/* Video specific styling to maintain aspect ratio */
video.img-fluid.rounded {
    background-color: #000;
    /* Black background for video */
    object-fit: contain;
    /* Show full video without cropping */
}

/* Hover effects for both images and videos */
.img-fluid.rounded:hover,
video.img-fluid.rounded:hover {
    transform: scale(1.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25);
    z-index: 100;
    border-color: #f8f9fa;
}

/* Video hover effect - slightly different to indicate it's a video */
video.img-fluid.rounded:hover {
    transform: scale(1.15);
    border-color: #007bff;
    /* Blue border for video */
}

/* Video play button overlay */
.video-container {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.video-container::before {
    content: '▶';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    z-index: 2;
    opacity: 0.9;
    transition: all 0.3s ease;
    pointer-events: none;
}

.video-container:hover::before {
    background: rgba(0, 123, 255, 0.95);
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

/* Video playing state */
video.img-fluid.rounded.playing {
    object-fit: contain;
    /* Show full video when playing */
}

video.img-fluid.rounded.playing:hover {
    transform: none;
    /* Disable zoom when video is playing */
    cursor: default;
}

/* Adjustments for different screen sizes */
@media (min-width: 768px) {
    .col-md-4 {
        width: 50% !important;
    }

    .img-fluid.rounded,
    video.img-fluid.rounded {
        height: 320px;
    }
}

@media (min-width: 992px) {
    .col-lg-3 {
        width: 33.333333% !important;
    }

    .img-fluid.rounded,
    video.img-fluid.rounded {
        height: 350px;
    }

    .img-fluid.rounded:hover,
    video.img-fluid.rounded:hover {
        transform: scale(1.2);
    }
}

@media (min-width: 1200px) {

    .img-fluid.rounded,
    video.img-fluid.rounded {
        height: 380px;
    }
}

/* Alternative: Video thumbnail styling */
.video-thumbnail {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.video-thumbnail img,
.video-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}

.video-thumbnail:hover .video-play-icon {
    background: rgba(0, 123, 255, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}



.carousel {
height: 400px;
}





/* Image Carousel Styles */
#imageCarousel .carousel-item img {
    width: 100%;
    height: 300px;
 
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
    margin: 0 auto;
}

#imageCarousel .carousel-item img:hover {
    transform: scale(1.05);
}

/* Desktop: Show 3 images */
@media (min-width: 768px) {
    #imageCarousel .carousel-item .col-md-4 {
        display: flex;
        justify-content: center;
        max-width: 350px;
    }
    
    #imageCarousel .carousel-item .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    #imageCarousel .carousel-item .col-md-4:nth-child(2),
    #imageCarousel .carousel-item .col-md-4:nth-child(3) {
        display: block;
    }
}

/* Mobile: Show only 1 image */
@media (max-width: 767px) {
    #imageCarousel .carousel-item .row {
        display: flex;
        justify-content: center;
    }
    
    #imageCarousel .carousel-item .col-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    /* Hide all images except the first one on mobile */
    #imageCarousel .carousel-item .col-md-4:nth-child(2),
    #imageCarousel .carousel-item .col-md-4:nth-child(3) {
        display: none !important;
    }
    
    /* Make the single image larger on mobile */
    #imageCarousel .carousel-item img {
        width: 90%;
        max-width: 350px;
        height: 280px;
    }
    
    /* Adjust indicators count for mobile (one per image) */
    #imageCarousel .carousel-indicators {
        display: flex;
        justify-content: center;
        bottom: -40px;
    }
    
    #imageCarousel .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

/* Carousel container and layout */
#imageCarousel .carousel-inner {
    padding: 20px 0;
}

#imageCarousel .carousel-item .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Enhanced Control Buttons */
#imageCarousel .carousel-control-prev,
#imageCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.95;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin: 0 15px;
    border: 2px solid #f0f0f0;
}

#imageCarousel .carousel-control-prev:hover,
#imageCarousel .carousel-control-next:hover {
    background-color: white;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

#imageCarousel .carousel-control-prev {
    left: 0;
}

#imageCarousel .carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 50%;
    width: 35px;
    height: 35px;
    background-size: 60% 60%;
    background-position: center;
    transition: all 0.3s ease;
}

#imageCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
#imageCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #ff6b6b;
    transform: scale(1.1);
}

/* Mobile adjustments for controls */
@media (max-width: 767px) {
    #imageCarousel .carousel-control-prev,
    #imageCarousel .carousel-control-next {
        width: 50px;
        height: 50px;
        margin: 0 5px;
        background-color: rgba(255, 255, 255, 0.9);
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 28px;
        height: 28px;
    }
}

/* Indicators */
.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 6px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    margin-top: 30px;
}

.carousel-indicators .active {
    background-color: #ff6b6b;
    transform: scale(1.2);
    border-color: #fff;
    box-shadow: 0 0 0 2px rgba(255, 107, 107, 0.3);
}

.carousel-indicators {
    margin-bottom: 0;
    padding-bottom: 20px;
}



















     * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        .page-wrapper {
            background-color: #f8fafc;
            color: #333;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 20px;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .stats-section {
            padding: 80px 0;
            width: 100%;
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }

        .stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect x="0" y="0" width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="2"/></svg>');
            background-size: 60px;
            opacity: 0.5;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .stat-item:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
        }

        .stat-item i {
            font-size: 2.8rem;
            color: #4fc3f7;
            margin-bottom: 25px;
            display: block;
        }

        .counter {
            font-size: 3.5rem;
            font-weight: 800;
            color: white;
            margin-bottom: 15px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        .stat-item p {
            font-size: 1.2rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .counter {
                font-size: 2.8rem;
            }
            
            .stats-section {
                padding: 50px 0;
            }
        }