body {
    /* custom font  */
    font-family: 'GeistSans_3a0388', sans-serif;
    /* Sum of both navbar heights */
    /* Push content down to avoid overlap */
    padding-top: 120px;
}

#topHeader {
    padding: 0 1rem;
    /* Adds padding on both sides */
    /* border-bottom: 1px solid silver; */
    background-color: #000;
}

#topHeader a {
    text-decoration: none;
    /* Removes underline from links */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /* Adds space between icon and text */
    color: white;
    /* Sets link color (change as needed) */

}

/* Fix the top navbar */
#topHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1030;
}

/* Fix the bottom navbar */
#bottomHeader {
    position: fixed;
    top: 60px;
    /* Height of the top navbar */
    left: 0;
    width: 100%;
    z-index: 1029;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none !important;
}

.navbar-toggler {
    border: none;
}

.dropdown-menu {
    display: block;
    /* Always keep block to allow animation */
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    /* Start a bit lower */
    transition: all 0.5s ease;
    overflow: hidden;
}

.nav-item.dropdown:hover .dropdown-menu {
    max-height: 500px;
    /* Adjust height as needed */
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    /* Slide to original position */
}


#bottomHeader {
    background-color: #000;
    padding: 0 1rem;
    background-color: #AA60C8;
}

#bottomHeader a {
    text-decoration: none;
    /* Removes underline from links */
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    font-weight: normal;
    /* Adds space between icon and text */
    color: black;
    /* Sets link color (change as needed) */

}

.collapsing {
    height: auto !important;
    transition: none !important;
}



@media (max-width: 768px) {
    .center-mobile-nav {

        align-items: center;
        text-align: center;
    }
}




/* Remove outline, border, and focus styles */
.navbar-toggler {
    border: none;
    outline: none;
    padding: 0.5rem;
    color: white;
    box-shadow: none !important;
}

/* Remove focus styles on click */
.navbar-toggler:focus {
    outline: none;
    box-shadow: none;
}

/* Fix the bottom navbar */
#bottomHeader {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 1029;
    background-color: #D6B3FF;
}

.navbar {
    position: relative;
}

.nav-item {
    position: relative;
}

/* Underline effect for desktop */
.nav-item {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    /* Distance from text */
    left: 0;
    width: 0;
    height: 3px;
    background-color: #A4B3FB;
    transition: width 0.3s ease;
    /* Smooth transition */
}

.nav-link:hover::after {
    width: 100%;
    /* Full width on hover */
}

/* Hide the dropdown chevron icon */
.nav-link.dropdown-toggle::after {
    display: none !important;
}

/* Disable dropdown in mobile view */
/* @media (max-width: 991px) {
    .dropdown-menu {
        display: none !important;
    }

    .nav-item.dropdown .nav-link {
        pointer-events: none;
    }
} */

/* Disable underline for mobile */
/* @media (max-width: 991px) {
    .nav-link::after {
        display: none;
    }
} */

/* Disable underline for links contact with the custom class */
.nav-link.no-underline::after {
    display: none;
}

.callback-container {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    border-radius: 10px;
}

.form-control {
    border-radius: 10px;
    padding: 12px 20px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.input-group-text {
    background: none;
    border: none;
}

.btn-callback {
    background-color: #d8a32e;
    color: #000;
    font-weight: bold;
    border-radius: 10px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card-animate {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-animate:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.scrolling-wrapper {
    display: flex;
    animation: scroll 20s linear infinite;
    gap: 20px;
}



/* .card:hover {
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
} */

/* .card:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
} */



/* Our Placed Students sliding*/
@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


/* custome slider */
.custom-slider {
    overflow: hidden;
    white-space: nowrap;
}

.slider-track {
    display: inline-flex;
    animation: slideRight 10s linear infinite;
}

.slider-track .card {
    flex: 0 0 auto;
    width: 250px;
    margin: 0 10px;
}

@keyframes slideRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}


.logo-slider {
    display: flex;
    gap: 20px;
}

.logo-track {
    display: flex;
    gap: 20px;
    animation: slide 10s linear infinite;
    white-space: nowrap;
}

.logo-track img {
    height: 50px;
    object-fit: contain;
}

@keyframes slide {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50%));
    }
}


/* faq section */
.accordion-button {
    font-weight: bold;
}

.accordion-item {
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.accordion-button:focus {
    box-shadow: none;
}

/* footer */
.footer {
    background-color: #000;
    color: #fff;
    padding: 40px 0;
}

.footer h5 {
    font-weight: bold;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer .social-icons a {
    margin: 0 10px;
    font-size: 24px;
}

.footer .policy-links a {
    margin: 0 10px;
}

footer a {
    text-decoration: none !important;
    /* Force remove underline */
    color: white;
}

footer a:hover {
    text-decoration: none !important;
    /* Force no underline on hover */
    color: #A051F5;
    /* Bootstrap blue color */
}

/* Remove Bootstrap default colors */
.accordion-item {
    background-color: transparent;
    border: none;
}

/* Remove Bootstrap default colors */
.accordion-item {
    background-color: transparent;
    border: none;
}




.accordion-button:not(.collapsed) {
    /* background-color: #8C52FF; */
    background: linear-gradient(135deg, #8C52FF, #D1B3FF);

    /* Even darker red when expanded */

}

/* FAQ Section Styling */
.faq-section {
    background: linear-gradient(135deg, #8C52FF, #4B0082);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Accordion Button Styling */
.accordion-button {
    background-color: #A051F5;
    color: #fff;
    font-weight: bold;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.accordion-button:hover {
    background-color: #8C52FF;
    box-shadow: 0 2px 10px rgba(140, 82, 255, 0.6);
}

/* Collapse Animation */
.accordion-collapse {
    transition: height 0.5s ease;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 0 10px;
    border-radius: 50%;
    background-color: #A051F5;
    /* Purple background */
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    border-radius: 50%;
    /* Ensure it stays circular on hover */
}

.social-icons a:hover .fa-facebook-f {
    background-color: #1877F2;
    border-radius: 50%;
}

.social-icons a:hover .fa-whatsapp {
    background-color: #25D366;
    border-radius: 50%;
}

.social-icons a:hover .fa-instagram {
    background: linear-gradient(45deg, #FEDA77, #DD2A7B, #8134AF, #515BD4);
    border-radius: 50%;
}

.social-icons a:hover .fa-linkedin-in {
    background-color: #0A66C2;
    border-radius: 50%;
}

.social-icons a:hover .fa-youtube {
    background-color: #FF0000;
    border-radius: 50%;
}

.social-icons a:hover .fa-twitter {
    background-color: #1DA1F2;
    border-radius: 50%;
}

.Placed-student {
    width: 200px;
    height: 200px;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #6e45e2, #b06ab3, #000);
    color: #fff;
    text-align: center;
}

.scrolling-wrapper {
    display: flex;
    gap: 20px;
    animation: scroll 20s linear infinite;
}

/* Pause the animation on hover */
.scrolling-wrapper:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* marque container */
.scrolling-text-container {
    background-color: #7A73D1;
    /* Purple color */
    color: #ffffff;
    /* White text */
    white-space: nowrap;
    overflow: hidden;
    box-sizing: border-box;
    padding: 10px 0;
}

.scrolling-text {
    display: inline-block;
    padding-left: 100%;
    animation: scrollText 25s linear infinite;
}

@keyframes scrollText {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* 
.contact-section {
    padding: 50px 0;
}

.contact-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}

.contact-info {
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} */

@media (max-width: 768px) {
    .navbar-nav {
        gap: 0 !important;
    }

    .nav-item {
        margin: 0 !important;
        padding: 0 !important;
    }

    .dropdown-menu {
        padding: 0 !important;
    }
}

/* Remove margin and padding in mobile view */
@media (max-width: 768px) {
    .navbar-nav {
        margin: 0;
        padding: 0;
    }

    .dropdown-menu {
        margin: 0 !important;
        padding: 0 !important;
    }
}



/* Scrollable dropdowns  in mov=bile*/
.dropdown-menu {

    /* Limit dropdown height */
    overflow-y: auto;
    border: none;

    /* Enable vertical scrolling */
}

.nav-link:focus,
.dropdown-item:focus {
    outline: none !important;
    box-shadow: none !important;
}



/* Optional: Remove margin/padding for mobile view */
@media (max-width: 768px) {
    .navbar-nav {
        padding: 0;
        margin: 0;
    }
}






.btn-purple {
    background-color: #8A2BE2;
    color: #fff;
}

.btn-purple:hover {
    background-color: #6A1CB0;
}

.social-sidebar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #E6CCFF;
    border-radius: 10px;
    padding: 10px 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-sidebar a {
    display: block;
    margin: 10px 0;
    text-align: center;
    border-radius: 20px;
}

.social-sidebar img {
    width: 50px;
    height: 50px;
    border-radius: 25px;
}

@media (max-width: 768px) {
    .social-sidebar img {
        width: 30px;
        height: 30px;
    }
}



@media (max-width: 768px) {
    #carouselExampleAutoplay .carousel-inner .carousel-item {
        height: 100vh;
        /* Improved CSS Code */

        /* Global Styles */

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        /* body {
            font-family: 'GeistSans_3a0388', sans-serif;
            padding-top: 120px;
            background-color: #f9f9f9;
        } */

        /* Header Styles */

        #topHeader {
            padding: 0 1rem;
            background-color: #000;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1030;
        }

        #topHeader a {
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: white;
        }

        /* Navbar Styles */

        .navbar {
            position: relative;
        }

        .nav-item {
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 0;
            height: 3px;
            background-color: #A4B3FB;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        /* Footer Styles */

        .footer {
            background-color: #000;
            color: #fff;
            padding: 40px 0;
        }

        .footer h5 {
            font-weight: bold;
        }

        .footer a {
            color: #fff;
            text-decoration: none;
        }

        .footer a:hover {
            text-decoration: underline;
        }

        /* Social Icons Styles */

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            margin: 0 10px;
            border-radius: 50%;
            background-color: #A051F5;
            color: #fff;
            font-size: 24px;
            text-decoration: none;
            transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
        }

        .social-icons a:hover {
            transform: scale(1.1);
            border-radius: 50%;
        }

        /* Accordion Styles */

        .accordion-button {
            font-weight: bold;
        }

        .accordion-item {
            border: none;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            margin-bottom: 1rem;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        /* FAQ Section Styles */

        .faq-section {
            background: linear-gradient(135deg, #8C52FF, #4B0082);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }

        /* Custom Slider Styles */

        .custom-slider {
            overflow: hidden;
            white-space: nowrap;
        }

        .slider-track {
            display: inline-flex;
            animation: slideRight 10s linear infinite;
        }

        .slider-track .card {
            flex: 0 0 auto;
            width: 250px;
            margin: 0 10px;
        }

        /* Scrolling Text Styles */

        .scrolling-text-container {
            background-color: #7A73D1;
            color: #ffffff;
            white-space: nowrap;
            overflow: hidden;
            box-sizing: border-box;
            padding: 10px 0;
        }

        .scrolling-text {
            display: inline-block;
            padding-left: 100%;
            animation: scrollText 25s linear infinite;
        }

        /* Media Queries */

        @media (max-width: 768px) {
            .navbar-nav {
                gap: 0 !important;
            }

            .nav-item {
                margin: 0 !important;
                padding: 0 !important;
            }

            .dropdown-menu {
                padding: 0 !important;
            }
        }
    }
}







/* Show the mobile image only on small screens */
/* Hide the mobile image on larger screens */
/* .mobile-img {
    display: none;
} */

/* Show the mobile image only on small screens */
/* Mobile view adjustments */
@media (max-width: 768px) {
    #careerCarousel .carousel-item {
        height: 100vh;
        /* Full viewport height on mobile */
    }

    /* .desktop-img {
        display: none;
    } */

    .mobile-img {
        display: block;
        width: 100%;
        height: 100%;
        /* Full height */
        object-fit: cover;
        /* Fill the container */
    }
}


/* logo carousel */
.logo-carousel-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.logo-carousel {
    display: inline-block;
    animation: scroll 10s linear infinite;
}

.logo-carousel img {
    display: inline-block;
    margin: 0 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}


@media (max-width: 768px) {
    #careerCarousel .carousel-item .col-lg-6 img {
        margin-bottom: 20px;
    }
}


/* highlights */

.highlight-card {
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.highlight-card:hover {
    background-color: #A051F5;
    color: #fff;
    transform: translateX(10px);
    /* Slide right on hover */
}

.highlight-card:hover .icon-wrapper {
    background-color: #fff;
}

.highlight-card:hover .icon-wrapper i {
    color: #000;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #A051F5;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.icon-wrapper i {
    color: #fff;
    transition: color 0.3s ease;
}


/* about imgs */
.about-imgs {
    width: 100%;
    /* Make it responsive */
    max-width: 400px;
    /* Limit maximum width */
    height: auto;
    /* Maintain aspect ratio */
    border-radius: 10px;
    /* Optional: rounded corners */
}



.marquee-container {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 20s linear infinite;
}

.marquee-container {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 20s linear infinite;
}

.testimonial-card {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 0 0 auto;
    width: 100%;
    max-width: 400px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stars {
    color: #ffc107;
    font-size: 1.5rem;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause scrolling on hover */
.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

/* Duplicate content for seamless scrolling */
.marquee-content::after {
    content: attr(data-duplicate);
    display: inline-flex;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        max-width: 90%;
        min-height: 300px;
    }
}




@media (max-width: 576px) {
    section {
        padding: 0 !important;
        margin: 0 !important;
        min-height: auto !important;
    }

    .about-hero {
        padding: 0 !important;
        margin: 0 !important;
        height: auto !important;
    }

    .container-fluid,
    .row,
    .col-12 {
        padding: 0 !important;
        margin: 0 !important;
    }

    .text-light {
        padding: 1rem !important;
        /* Add a small padding for readability */
    }
}


/* about card */
.about-icon-circle {
    width: 70px;
    height: 70px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-card {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


/* contact us  */
.btn-purple {
    background-color: #6f42c1;
    color: #fff;
    border: none;
}

.btn-purple:hover {
    background-color: #5a35a0;
}

.bg-purple {
    background-color: #6f42c1;
}


/* skills */
.skill-item {
    text-align: center;
    margin: 10px;
}

.skill-item img {
    width: 100px;
    height: 100px;
    border: 4px solid #FFC107;
    border-radius: 50%;
    padding: 10px;
}

.skill-item p {
    margin-top: 10px;
    font-weight: bold;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #FFC107;
    text-align: center;
    margin-bottom: 20px;
}

/* 

managment program skills covered */
.icon-circle {
    width: 100px;
    height: 100px;
    border: 2px solid #f0b13e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    /* Center horizontally */
}

.icon-circle img {
    max-width: 60%;
    max-height: 60%;
}

.skill-title {
    font-weight: bold;
    margin-top: 10px;
}

h2 {
    color: #f0b13e;
    font-weight: bold;
}


/* Our Technical Expertise */
.icon-section i {
    font-size: 24px;
    color: #333;
    margin-right: 10px;
}

.service-card {
    border: 2px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}


/* 

request homepage section */
/* Ensure padding works in mobile view */
/* @media (max-width: 768px) {
    .content-container {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }

    .carousel-item {
        padding-top: 1.5rem !important;
        padding-bottom: 1.5rem !important;
    }
} */



/* Remove no-underline rule only on mobile screens */
@media (max-width: 768px) {
    .nav-link.no-underline::after {
        display: block;
    }
}

/* 
our placed student cards  */
.scroll-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.scrolling-wrapper {
    display: inline-flex;
    animation: scroll 20s linear infinite;
    min-width: calc(200px * 6 + 20px * 5);
    /* 6 cards with margin */
}

.scrolling-wrapper .col {
    flex: 0 0 auto;
    margin-right: 20px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Scroll halfway, then loop */
    }
}


/*  righ t to left placed card[ */
.scroll-container-custom {
    overflow: hidden;
    white-space: nowrap;
    position: relative;

}

.scrolling-wrapper-placed {
    display: inline-flex;
    animation: scrollRightToLeft 40s linear infinite;
}

@keyframes scrollRightToLeft {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}






.custom-box {
    border: 2px solid #A051F5;
    border-radius: 10px;
    padding: 12px;
    text-align: center;
    font-weight: bold;
    color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.custom-box:hover {
    background-color: #A051F5;
    color: #fff;
    box-shadow: 0 4px 10px rgba(160, 81, 245, 0.4);
}


/* power bi course hover effect prerequisites */
.power-bi-button {
    border: 2px solid #A051F5;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    min-height: 80px;
    /* Ensures uniform height */
}

.power-bi-button:hover {
    background-color: #A051F5;
    color: #fff;
    border-color: #7A32D1;
    box-shadow: 0 4px 10px rgba(160, 81, 245, 0.4);
    transform: translateY(-2px);
}


.react-button {
    border: 2px solid #A051F5;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    /* Ensures uniform height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-wrap: balance;
    /* Keeps text layout clean */
}

.react-button:hover {
    background-color: #A051F5;
    color: #fff;
    border-color: #7A32D1;
    box-shadow: 0 4px 10px rgba(160, 81, 245, 0.4);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .react-button {
        min-height: 60px;
        /* Adjust height for smaller screens */
        font-size: 14px;
        /* Reduce text size */
    }
}

@media (max-width: 480px) {
    .react-button {
        min-height: 50px;
        padding: 10px;
        font-size: 12px;
    }
}


.python-dev-button {
    border: 2px solid #A051F5;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    /* Ensures uniform height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-wrap: balance;
    /* Keeps text layout clean */
}

.python-dev-button:hover {
    background-color: #A051F5;
    color: #fff;
    border-color: #7A32D1;
    box-shadow: 0 4px 10px rgba(160, 81, 245, 0.4);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .python-dev-button {
        min-height: 60px;
        /* Adjust height for smaller screens */
        font-size: 14px;
        /* Reduce text size */
    }
}

@media (max-width: 480px) {
    .python-dev-button {
        min-height: 50px;
        padding: 10px;
        font-size: 12px;
    }
}



.azure-button {
    border: 2px solid #A051F5;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    /* Ensures uniform height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-wrap: balance;
    /* Keeps text layout clean */
}

.azure-button:hover {
    background-color: #A051F5;
    color: #fff;
    border-color: #7A32D1;
    box-shadow: 0 4px 10px rgba(160, 81, 245, 0.4);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .azure-button {
        min-height: 60px;
        /* Adjust height for smaller screens */
        font-size: 14px;
        /* Reduce text size */
    }
}

@media (max-width: 480px) {
    .azure-button {
        min-height: 50px;
        padding: 10px;
        font-size: 12px;
    }
}


.business-analyst-button {
    border: 2px solid #A051F5;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    /* Ensures uniform height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-wrap: balance;
}

.business-analyst-button:hover {
    background-color: #A051F5;
    color: #fff;
    border-color: #7A32D1;
    box-shadow: 0 4px 10px rgba(160, 81, 245, 0.4);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .business-analyst-button {
        min-height: 60px;
        /* Adjust height for smaller screens */
        font-size: 14px;
        /* Reduce text size */
    }
}

@media (max-width: 480px) {
    .business-analyst-button {
        min-height: 50px;
        padding: 10px;
        font-size: 12px;
    }
}



.data-analyst-button {
    border: 2px solid #A051F5;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    /* Ensures uniform height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-wrap: balance;
}

.data-analyst-button:hover {
    background-color: #A051F5;
    color: #fff;
    border-color: #7A32D1;
    box-shadow: 0 4px 10px rgba(160, 81, 245, 0.4);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .data-analyst-button {
        min-height: 60px;
        /* Adjust height for smaller screens */
        font-size: 14px;
        /* Reduce text size */
    }
}

@media (max-width: 480px) {
    .data-analyst-button {
        min-height: 50px;
        padding: 10px;
        font-size: 12px;
    }
}



.aws-devops-button {
    border: 2px solid #A051F5;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
    /* Ensures uniform height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-wrap: balance;
}

.aws-devops-button:hover {
    background-color: #A051F5;
    color: #fff;
    border-color: #7A32D1;
    box-shadow: 0 4px 10px rgba(160, 81, 245, 0.4);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .aws-devops-button {
        min-height: 60px;
        /* Adjust height for smaller screens */
        font-size: 14px;
        /* Reduce text size */
    }
}

@media (max-width: 480px) {
    .aws-devops-button {
        min-height: 50px;
        padding: 10px;
        font-size: 12px;
    }
}



.java-dev-button {
    border: 2px solid #A051F5;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    /* Ensures uniform height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-wrap: balance;
}

.java-dev-button:hover {
    background-color: #A051F5;
    color: #fff;
    border-color: #7A32D1;
    box-shadow: 0 4px 10px rgba(160, 81, 245, 0.4);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .java-dev-button {
        min-height: 80px;
        /* Adjust height for tablets */
        font-size: 14px;
        /* Reduce text size */
    }
}

@media (max-width: 480px) {
    .java-dev-button {
        min-height: 70px;
        padding: 10px;
        font-size: 12px;
    }
}


.full-stack-webdev-button {
    border: 2px solid #A051F5;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    /* Ensures uniform height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-wrap: balance;
}

.full-stack-webdev-button:hover {
    background-color: #A051F5;
    color: #fff;
    border-color: #7A32D1;
    box-shadow: 0 4px 10px rgba(160, 81, 245, 0.4);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .full-stack-webdev-button {
        min-height: 80px;
        /* Adjust height for tablets */
        font-size: 14px;
        /* Reduce text size */
    }
}

@media (max-width: 480px) {
    .full-stack-webdev-button {
        min-height: 70px;
        padding: 10px;
        font-size: 12px;
    }
}


.pl-sql-button {
    border: 2px solid #A051F5;
    border-radius: 10px;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    color: #000;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
    /* Ensures uniform height */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-wrap: balance;
}

.pl-sql-button:hover {
    background-color: #A051F5;
    color: #fff;
    border-color: #7A32D1;
    box-shadow: 0 4px 10px rgba(160, 81, 245, 0.4);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .pl-sql-button {
        min-height: 80px;
        /* Adjust height for tablets */
        font-size: 14px;
        /* Reduce text size */
    }
}

@media (max-width: 480px) {
    .pl-sql-button {
        min-height: 70px;
        padding: 10px;
        font-size: 12px;
    }
}