/* Custom styles for the dark theme and modern aesthetics */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap');
        

        
.dancing-script-<uniquifier> {
  font-family: "Dancing Script", cursive;

}
        body {
            font-family: 'Inter', sans-serif;
            background-color: #0A0D1B;
            color: #E5E7EB;
        }
        .page-section {
            padding: 8rem 0;
            position: relative;
            overflow: hidden;
        }

        .gradient-text {
            background: linear-gradient(45deg, #FF6B8B, #8B5CF6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .btn-gradient {
            background: linear-gradient(45deg, #FF6B8B, #8B5CF6);
            border: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 107, 139, 0.4);
        }
        .btn-gradient:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
        }
        .btn-gradient:active {
            transform: translateY(2px) scale(0.95);
        }

        #three-d-scene-container {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 10;
        }

        .loading-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-color: #0A0D1B;
            z-index: 40;
            transition: opacity 0.5s ease-in-out;
        }
        .spinner {
            animation: spin 1s linear infinite;
            border-radius: 50%;
            height: 8rem;
            width: 8rem;
            border-top: 2px solid #FF6B8B;
            border-bottom: 2px solid #8B5CF6;
        }
        @keyframes spin {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Adjustments for Bootstrap's carousel controls */
        .carousel-control-prev-icon, .carousel-control-next-icon {
            filter: invert(100%);
        }

        /* Hover animation for cards */
        .card {
            background-color: #1A202E; /* A slightly lighter dark color */
            transition: all 0.3s ease;
            border: none;
            overflow: hidden;
        }
        .card:hover {
            background: linear-gradient(to right, #6A5ACD, #8B008B);
            transform: translateY(-10px) scale(1.03);
            box-shadow: 0 10px 30px rgba(0,0,0,0.5);
            color: #ffffff !important;
        }
        .card:hover .gradient-text, .card:hover .card-title, .card:hover .card-text {
            color: #ffffff;
            -webkit-text-fill-color: #ffffff;
        }
        .card:hover .card-img-top {
            transform: scale(1.1);
            transition: transform 0.5s ease;
        }
        .card-img-top {
            transition: transform 0.5s ease;
        }

        /* Scroll Animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }
        .fade-in {
            opacity: 0;
            transition: opacity 1s ease-out;
        }
        .fade-in.animate {
            opacity: 1;
        }
        .video-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
        }
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }


        #sign{
            font-family: "Dancing Script", cursive;
        }


         .blog-post {
            padding: 4rem 0;
        }
   
        .btn-back {
            background-color: #1A202E;
            color: #E5E7EB;
            border: none;
            transition: all 0.3s ease;
        }
        .btn-back:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .blog-post-image-container {
            width: 100%;
            height: 500px; /* Set a fixed height for consistency */
            overflow: hidden; /* Hide overflowing parts of the image */
            border-radius: 0.5rem; /* Match card styling */
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }
        .blog-post-image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover; /* This is the key change for responsive image fitting */
        }