 
         :root {
            --primary-color: #4706eb;
            --secondary-color: #ff7f50;
            --accent-color: #f1e1b1;
          
            --light-color: #f8f9fa;
            --success-color: #28a745;
            --info-color: #17a2b8;
            --text-color: #333333; /* New darker text color */
            --text-secondary: #555555; /* Secondary text color */
        }

        body {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: var(--dark-color);
            color: var(--text-color); /* Updated to use darker text */
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
        }

        .section {
            padding: 80px 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .bg-light {
            background-color: rgba(18, 18, 18, 0.9);
            background-image: linear-gradient(135deg, rgba(71, 6, 235, 0.1), rgba(18, 18, 18, 0.9));
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 60px;
            position: relative;
            color: var(--accent-color);
            text-align: center;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        /* 3D Carousel Styles */
        .carousel-container {
            perspective: 1000px;
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            height: 400px;
        }

        .carousel {
            width: 100%;
            height: 100%;
            position: absolute;
            transform-style: preserve-3d;
            transition: transform 5s;
        }

        .carousel-item {
            position: absolute;
            width: 300px;
            height: 400px;
            left: 50%;
            top: 50%;
            margin-left: -150px;
            margin-top: -200px;
            background: rgba(255, 255, 255, 0.9); /* Lightened background for contrast */
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
            transition: all 0.5s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
            text-align: center;
        }

        .carousel-item img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .carousel-item h4 {
            color: var(--primary-color); /* Changed to primary color for headings */
            margin: 0 0 15px;
            font-weight: 600;
        }

        .carousel-item p {
            color: var(--text-secondary); /* Updated to secondary dark color */
            font-size: 0.95rem;
            margin-bottom: 15px;
        }

        .badge {
            font-size: 0.75rem;
            font-weight: 500;
            padding: 5px 10px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 2px;
            color: white; /* Keep badge text white for contrast */
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            z-index: 10;
            padding: 0 20px;
            box-sizing: border-box;
        }

        .carousel-nav button {
            background: rgba(71, 6, 235, 0.7);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .carousel-nav button:hover {
            background: var(--primary-color);
            transform: scale(1.1);
        }

        .carousel-indicators {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3); /* Darker indicators */
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-indicator.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .section {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 2rem;
                margin-bottom: 40px;
            }
            
            .carousel-container {
                height: 350px;
            }
            
            .carousel-item {
                width: 250px;
                height: 350px;
                margin-left: -125px;
                margin-top: -175px;
            }
            
            .carousel-item img {
                height: 150px;
            }
        }

        @media (max-width: 576px) {
            .carousel-container {
                height: 300px;
            }
            
            .carousel-item {
                width: 200px;
                height: 300px;
                margin-left: -100px;
                margin-top: -150px;
            }
            
            .carousel-item img {
                height: 120px;
            }
            
            .carousel-item h4 {
                font-size: 1.1rem;
            }
            
            .carousel-item p {
                font-size: 0.8rem;
            }
        }
    

        .big-s {
            font-size: 4rem;
            font-weight: bold;
            color: var(--accent-color);
            display: inline-block;
            line-height: 1;
            margin-right: 5px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        .custom-navbar {
            
            height: 80px;
            font-size: 1.2rem;
            padding: 15px 20px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            transform-style: preserve-3d;
            transition: all 0.5s ease;
        }

        .navbar-brand {
           
            font-size: 1.8rem;
            font-weight: bold;
            color: white !important;
        }

        .navbar-nav .nav-link {
            
            color: black;
            font-size: 1.2rem;
            transition: all 0.3s ease-in-out;
            margin: 0 10px;
            position: relative;
        }

        .navbar-nav .nav-link:hover {
            color: gold !important;
            transform: translateY(-3px);
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: blue;
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            transform-style: preserve-3d;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotateX(0deg) rotateY(0deg);
            }

            50% {
                transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
            }
        }

        /* 3D Card Effects */
        .card-3d {
            
            
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: none;
            border-radius: 15px;
            overflow: hidden;
            background: wheat;
        }

        .card-3d:hover {
            transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .service-card {
            transition: all 0.5s ease;
            height: 100%;
            transform-style: preserve-3d;
        }

        .service-card:hover {
            transform: translateY(-10px) rotateX(5deg);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            margin-bottom: 15px;
            transition: all 5s ease;
        }

        .service-card:hover .service-icon {
            transform: scale(1.2) rotate(10deg);
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 50px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--accent-color));
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        /* 3D Floating Elements */
        .floating-element {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element:nth-child(1) {
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            width: 150px;
            height: 150px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            width: 70px;
            height: 70px;
            top: 80%;
            left: 20%;
            animation-delay: 4s;
        }

        /* Team Cards */
        .team-card {
            transition: all 0.5s ease;
            transform-style: preserve-3d;
            overflow: hidden;
            border-radius: 100px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .team-card:hover {
            transform: translateY(-10px) rotateY(10deg);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        .team-img {
            transition: all 0.5s ease;
        }

        .team-card:hover .team-img {
            transform: scale(2.0);
        }

        /* Contact Form */
        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transform-style: preserve-3d;
            transition: all 0.5s ease;
        }

        .contact-form:hover {
            transform: translateY(-5px) rotateX(3deg);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--dark-color), #34495e);
            color: white;
            padding: 30px 0;
            position: relative;
        }

        .social-icons a {
            color: white;
            font-size: 1.5rem;
            margin: 0 10px;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .social-icons a:hover {
            color: var(--accent-color);
            transform: translateY(-5px) scale(1.2);
        }

        /* Scroll Animation */
        .section {
            opacity: 0;
            transform: translateY(50px) rotateX(10deg);
            transition: all 0.8s ease-out;
        }

        .section.visible {
            opacity: 1;
            transform: translateY(0) rotateX(0);
        }

        /* Responsive Adjustments */
        @media (max-width: 991px) {
            .navbar {
                position: static !important;
            }

            .hero-section {
                padding: 100px 0 60px;
            }

            .section {
                padding: 60px 0;
            }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary-color), var(--secondary-color));
            border-radius: 10px;
        }

        /* Particle Background */
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: 0;
        }

        .particle-content {
            position: relative;
            z-index: 1;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
        }

        .constant-text {
            color: #0d6efd;
        }

        .changing-text {
            position: relative;
            display: inline-block;
            min-width: 180px;
            height: 40px;
            overflow: hidden;
            vertical-align: bottom;
        }

        .changing-word {
            position: absolute;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.5s ease, transform 0.5s ease;
            color: black;
        }

        .changing-word.active {
            opacity: 1;
            transform: translateY(0);
        }
    

        /*new code*/
               