:root {
    --primary-dark: #0a192f;
    --secondary-dark: #112240;
    --accent-color: #64ffda;
    --light-text: #ccd6f6;
    --lighter-text: #8892b0;
    }

    body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: var(--primary-dark);
    color: var(--light-text);
    }

    .header-section {
    /* Fix for mobile height issues caused by dynamic address bars */
    height: 100dvh;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary-dark));
    color: #fff;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    }

    .header-content {
    z-index: 10;
    }

    .header-content h1 {
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    opacity: 0;
    transform: translateY(-50px);
    }

    .header-content p {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(50px);
    }

    .header-content .btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    background-color: transparent;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.8);
    }

    .header-content .btn:hover {
    background-color: rgba(100, 255, 218, 0.1);
    }

    /* New button style for "Get in Touch" */
    .btn-contact {
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    }

    .btn-contact:hover {
    background-color: var(--accent-color);
    color: var(--secondary-dark);
    box-shadow: 0 0 20px var(--accent-color);
    }

    .bg-circle {
    position: absolute;
    background: rgba(100, 255, 218, 0.1);
    border-radius: 50%;
    opacity: 0;
    }

    .bg-circle-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    left: -100px;
    }

    .bg-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    right: -50px;
    }

    .bg-circle-3 {
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    /* About Us Section Styles */
    .about-us-section {
    padding: 5rem 0;
    background-color: var(--primary-dark);
    }

    .about-us-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    }

    .about-us-section p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    color: var(--lighter-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    }

    .about-us-section .col-lg-6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    }

    .about-images-container {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    }

    .about-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 250px;
    }


    /* Main Service Card Container (Dedicated style) */
        .services-section {
            background-color: var(--secondary-dark);
        }

        .service-card-main {
            background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
            border-radius: 0.75rem;
            position: relative;
            overflow: hidden;
            height: 100%; /* Ensures cards in a grid row are the same height */
        }

        /* Service Card Shadow (Dedicated style) */
        .service-card-shadow-subtle {
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.08);
        }

        /* Icon Styling for Services Section */
        .icon-circle {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            background-color: rgba(100, 255, 218, 0.1);
            color: var(--accent-color);
        }

        /* Service Content (to be dimmed on hover) */
        .service-card-content {
            transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
        }

        /* Mask Overlay (Lighter opacity) */
        .service-mask {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); /* 50% opaque black */
            opacity: 0;
            transition: opacity 0.3s ease-in-out;
            border-radius: 0.75rem;
            z-index: 5;
        }

        /* Button Container (Centered and initially hidden) */
        .service-card-footer {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            opacity: 0;
            transition: all 0.3s ease-in-out;
            width: 80%;
            text-align: center;
            z-index: 10;
        }

        /* Hover Effect: Show button and mask, dim content */
        .service-card-main:hover .service-mask {
            opacity: 1;
        }

        .service-card-main:hover .service-card-content {
            opacity: 0.3;
        }

        .service-card-main:hover .service-card-footer {
            opacity: 1;
        }

        /* Button styling */
        .service-button {
            background-color: var(--accent-color);
            color: var(--primary-dark);
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 4px 15px rgba(100, 255, 218, 0.4);
            transition: background-color 0.2s, transform 0.2s;
        }

        .service-button:hover {
            background-color: #79ffe4;
            color: var(--primary-dark);
            transform: scale(1.05);
        }


    /* Working Procedure Section Styles */
    .working-procedure-section {
    padding: 5rem 0;
    background-color: var(--primary-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
    }

    .working-procedure-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 3rem;
    }

    .working-procedure-section .lead {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--lighter-text);
    margin-bottom: 2rem;
    }

    .procedure-scroll-container {
    padding: 0 10vw;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    }

    /* Hide scrollbar for Chrome, Safari and Opera */
    .procedure-scroll-container::-webkit-scrollbar {
    display: none;
    }


    .procedure-steps {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 2rem;
    width: fit-content; /* Critical for horizontal scroll */
    }

    @media (min-width: 992px) {
    .procedure-steps {
    gap: 0;
    }
    }

    .procedure-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    }

    .step-card {
    background-color: var(--secondary-dark);
    border-radius: 50%;
    width: 350px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: scale(0.9);
    transition: none; /* Hover effect removed */
    }

    /* Hover effects for .step-card have been removed */

    .step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    background-color: var(--primary-dark);
    padding: 0 15px;
    border-radius: 50%;
    line-height: 1;
    z-index: 10;
    }

    .step-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 0.5rem;
    filter: invert(1) hue-rotate(180deg) saturate(2);
    }

    .step-card h5 {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 0.25rem;
    }

    .step-card p {
    font-size: clamp(0.9rem, 2vw, 1rem);
    color: var(--lighter-text);
    line-height: 1.6;
    margin: 0;
    padding: 0 1.5rem; /* Padding added here to prevent text overflow */
    }

    .procedure-arrow {
    width: 15vw;
    height: 2px;
    background-color: var(--accent-color);
    position: relative;
    margin: 0 2rem;
    display: none;
    }

    @media (min-width: 992px) {
    .procedure-arrow {
    display: block;
    width: 15vw;
    }
    }

    @media (min-width: 1200px) {
    .procedure-arrow {
    width: 20vw;
    }
    }

    .procedure-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 15px;
    height: 15px;
    border-top: 2px solid var(--accent-color);
    border-right: 2px solid var(--accent-color);
    transform: translateY(-50%) rotate(45deg);
    }

    /* Agile Animation styles */
    .agile-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.3;
    }

    .agile-circle {
    position: absolute;
    border-radius: 50%;
    background-color: var(--accent-color);
    filter: blur(5px);
    }

    .agile-circle:nth-child(1) {
    width: 50px;
    height: 50px;
    top: 20%;
    left: 15%;
    animation: pulse 4s infinite, flow-path-1 10s linear infinite;
    }

    .agile-circle:nth-child(2) {
    width: 70px;
    height: 70px;
    top: 80%;
    left: 85%;
    animation: pulse 4s infinite, flow-path-2 12s linear infinite;
    animation-delay: 2s;
    }

    .agile-circle:nth-child(3) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 50%;
    animation: pulse 4s infinite, flow-path-3 8s linear infinite;
    animation-delay: 4s;
    }

    .agile-circle:nth-child(4) {
    width: 40px;
    height: 40px;
    top: 10%;
    left: 70%;
    animation: pulse 3s infinite, flow-path-4 15s linear infinite;
    animation-delay: 1s;
    }

    .agile-circle:nth-child(5) {
    width: 80px;
    height: 80px;
    top: 90%;
    left: 30%;
    animation: pulse 5s infinite, flow-path-5 18s linear infinite;
    animation-delay: 3s;
    }

    .agile-circle:nth-child(6) {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 10%;
    animation: pulse 4.5s infinite, flow-path-6 11s linear infinite;
    animation-delay: 5s;
    }

    .agile-circle:nth-child(7) {
    width: 55px;
    height: 55px;
    top: 30%;
    left: 95%;
    animation: pulse 3.8s infinite, flow-path-7 14s linear infinite;
    animation-delay: 6s;
    }

    @keyframes flow-path-1 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(5vw, -2vh); }
    50% { transform: translate(10vw, 5vh); }
    75% { transform: translate(-5vw, 5vh); }
    100% { transform: translate(0, 0); }
    }

    @keyframes flow-path-2 {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-5vw, 2vh); }
    50% { transform: translate(-10vw, -5vh); }
    75% { transform: translate(5vw, -5vh); }
    100% { transform: translate(0, 0); }
    }

    @keyframes flow-path-3 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-5vw, -5vh); }
    100% { transform: translate(0, 0); }
    }

    @keyframes flow-path-4 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-2vw, 5vh); }
    100% { transform: translate(0, 0); }
    }

    @keyframes flow-path-5 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(5vw, -5vh); }
    100% { transform: translate(0, 0); }
    }

    @keyframes flow-path-6 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(5vw, 2vh); }
    100% { transform: translate(0, 0); }
    }

    @keyframes flow-path-7 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-5vw, 5vh); }
    100% { transform: translate(0, 0); }
    }

    @keyframes pulse {
    0%, 100% {
    transform: scale(1);
    }
    50% {
    transform: scale(1.1);
    }
    }
    /* Why Choose Us Section Styles */
    .why-us-section {
    padding: 8rem 0;
    background-color: var(--secondary-dark);
    position: relative;
    overflow: hidden;
    z-index: 1;
    }

    .why-us-section .container {
    position: relative;
    z-index: 2;
    }

    .why-us-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    }

    .why-us-bg .particle {
    position: absolute;
    background-color: var(--accent-color);
    opacity: 0.1;
    border-radius: 50%;
    }

    .why-us-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2;
    }

    .why-us-section .lead {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--lighter-text);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
    z-index: 2;
    }

    .why-us-card {
    background-color: rgba(100, 255, 218, 0.05);
    border-radius: 1rem;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(100, 255, 218, 0.1);
    opacity: 0;
    transform: translateY(20px);
    /* New card background effects */
    background: linear-gradient(145deg, rgba(100, 255, 218, 0.05), rgba(17, 34, 64, 0.6));
    backdrop-filter: blur(5px);
    }

    .why-us-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
    }

    /* Card shine effect on hover */
    .why-us-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at 50% 50%, rgba(100, 255, 218, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.7s ease;
    transform: rotate(45deg);
    }

    .why-us-card:hover::before {
    opacity: 1;
    top: -50%;
    left: -50%;
    animation: cardShine 1.5s ease-out forwards;
    }

    @keyframes cardShine {
    0% {
    transform: rotate(45deg) translate(-100%, -100%);
    opacity: 0;
    }
    50% {
    opacity: 1;
    }
    100% {
    transform: rotate(45deg) translate(100%, 100%);
    opacity: 0;
    }
    }

    .why-us-card .icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem auto;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    }

    .why-us-card:hover .icon-container {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px rgba(100, 255, 218, 0.6);
    }

    .why-us-card .icon-container svg {
    width: 45px;
    height: 45px;
    fill: var(--primary-dark);
    /* Color of the SVG */
    transition: fill 0.3s ease;
    }

    .why-us-card h4 {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 700;
    color: var(--light-text);
    /* Changed to light-text for better contrast */
    margin-bottom: 1rem;
    position: relative;
    z-index: 10;
    transition: color 0.3s ease;
    }

    .why-us-card:hover h4 {
    color: var(--accent-color);
    }

    .why-us-card p {
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    color: var(--lighter-text);
    margin: 0;
    position: relative;
    z-index: 10;
    }

    /* New section for stats/numbers */
    .stats-section {
    padding: 6rem 0;
    background-color: var(--primary-dark);
    }

    .stat-card {
    background-color: rgba(100, 255, 218, 0.05);
    border-radius: 1rem;
    padding: 3rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    }

    .stat-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    background: linear-gradient(145deg, rgba(100, 255, 218, 0.1), rgba(17, 34, 64, 0.8));
    }

    .stat-card:hover .stat-number {
    color: var(--accent-color);
    }

    .stat-card:hover .stat-label {
    color: var(--light-text);
    }

    .stat-icon {
    font-size: 50px;
    /* Font Awesome icons are sized with font-size */
    margin-bottom: 1rem;
    color: var(--accent-color);
    /* Color of the Font Awesome icon */
    transition: color 0.3s ease;
    }

    .stat-card:hover .stat-icon {
    color: var(--light-text);
    }

    .stat-number {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    }

    .stat-label {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    font-weight: 600;
    color: var(--lighter-text);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    }

    .centered-content {
            max-width: 500px; /* Max width for the slider content, now managed by CSS for better separation */
            width: 100%;
        }

        /* ---------------------------------------------------- */
        /* --- 1. Customer Review Slider Styles (Primary) --- */
        /* ---------------------------------------------------- */

        /* Custom Card Styling (used only for reviews) */
        .review-card-custom {
            background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark));
            border-radius: 0.75rem; /* Equivalent to rounded-xl */
            flex-shrink: 0;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        /* Custom styles for the review card shadow */
        .custom-card-shadow {
            box-shadow: 0 5px 15px rgba(100, 255, 218, 0.08);
        }

        /* Slider Track and Animation */
        #slider-track {
            transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        /* Desktop Navigation Arrows Positioning */
        .slider-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            padding: 0.75rem;
            background-color: rgba(100, 255, 218, 0.1);
            color: var(--accent-color);
            border: none;
            border-radius: 50%;
            transition: background-color 0.3s;
            z-index: 10;
        }

        .slider-nav-btn:hover {
            background-color: rgba(100, 255, 218, 0.2);
            color: var(--accent-color);
        }

        /* Default positioning for desktop (wide view) */
        #prev-btn {
            left: -4rem;
        }

        #next-btn {
            right: -4rem;
        }

        /* Adjusted positioning for smaller desktop/tablet views to ensure arrows are visible */
        @media (min-width: 768px) and (max-width: 991.98px) {
            #prev-btn { left: -2rem; }
            #next-btn { right: -2rem; }
        }

        /* Dot Navigation Styling */
        .dot {
            width: 0.75rem;
            height: 0.75rem;
            border-radius: 50%;
            background-color: var(--lighter-text);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .dot.active {
            background-color: var(--accent-color);
        }

        /* Hide Desktop arrows on small screens */
        @media (max-width: 767.98px) {
            .slider-nav-btn {
                display: none !important;
            }
        }



    /* Contact Section Styles */
    .contact-section {
    padding: 5rem 0;
    background-color: var(--secondary-dark);
    position: relative;
    }

    .contact-section h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 1rem;
    }

    .contact-section .lead {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--lighter-text);
    text-align: center;
    margin-bottom: 3rem;
    }

    .contact-card {
    background: linear-gradient(145deg, rgba(100, 255, 218, 0.05), rgba(17, 34, 64, 0.6));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(100, 255, 218, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    }

    .contact-form .form-label {
    color: var(--lighter-text);
    }

    .contact-form .form-control,
    .contact-form .form-select,
    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
    background-color: rgba(17, 34, 64, 0.4);
    border: 1px solid rgba(100, 255, 218, 0.1);
    color: var(--light-text);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: none;
    }

    .contact-form .form-control::placeholder {
    color: var(--lighter-text);
    opacity: 0.6;
    }

    .contact-form .form-control:hover,
    .contact-form .form-select:hover {
    border-color: var(--accent-color);
    }

    .contact-form .form-control:focus,
    .contact-form .form-select:focus {
    background-color: var(--secondary-dark);
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(100, 255, 218, 0.3);
    }

    .input-group-text {
    background-color: rgba(17, 34, 64, 0.4);
    border: 1px solid rgba(100, 255, 218, 0.1);
    color: var(--accent-color);
    border-right: none;
    border-radius: 0.5rem 0 0 0.5rem;
    }

    .input-group-text .fa-solid {
    transition: color 0.3s ease;
    }

    .form-control-with-icon:hover + .input-group-text .fa-solid {
    color: var(--light-text);
    }

    .contact-form .btn-submit {
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    background-color: var(--accent-color);
    color: var(--primary-dark);
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(100, 255, 218, 0.4);
    }

    .contact-form .btn-submit:hover {
    background-color: var(--primary-dark);
    color: var(--accent-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 5px 20px rgba(100, 255, 218, 0.6);
    }
    .footer-section {
    background-color: var(--primary-dark);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    z-index: 1;
    }

    .footer-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.2;
    }

    .footer-bg .bg-dot {
    position: absolute;
    background-color: var(--accent-color);
    border-radius: 50%;
    animation: footer-move 10s infinite alternate;
    }

    .footer-bg .bg-dot:nth-child(1) {
    width: 50px;
    height: 50px;
    top: 20%;
    left: 10%;
    }

    .footer-bg .bg-dot:nth-child(2) {
    width: 30px;
    height: 30px;
    bottom: 15%;
    right: 15%;
    animation-delay: 2s;
    }

    .footer-bg .bg-dot:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 50%;
    right: 5%;
    animation-delay: 4s;
    }

    @keyframes footer-move {
    0% {
    transform: translate(0, 0);
    }
    50% {
    transform: translate(50px, 20px);
    }
    100% {
    transform: translate(0, 0);
    }
    }

    .footer-info h4 {
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 0.5rem;
    }

    .footer-info p {
    font-size: 0.9rem;
    color: var(--lighter-text);
    }

    .footer-links h5, .footer-support h5 {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    }

    .footer-links a, .footer-support a {
    display: block;
    color: var(--lighter-text);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
    }

    .footer-links a:hover, .footer-support a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
    }

    .footer-info .contact-info {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    color: var(--lighter-text);
    text-decoration: none;
    transition: color 0.3s ease;
    }

    .footer-info .contact-info .icon {
    font-size: 1.1rem;
    margin-right: 0.5rem;
    color: var(--accent-color);
    }

    .footer-info .contact-info:hover {
    color: var(--accent-color);
    }

    .footer-social h5 {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 1rem;
    }

    .social-icons a {
    color: var(--light-text);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
    }

    .social-icons a:hover {
    color: var(--accent-color);
    transform: translateY(-5px);
    }

    .footer-copy {
    border-top: 1px solid rgba(100, 255, 218, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    font-size: 0.9rem;
    color: var(--lighter-text);
    }

    @media (max-width: 991px) {
    .footer-links, .footer-support, .footer-social {
    margin-top: 2rem;
    }
    }
