:root {
    --motion-ease: cubic-bezier(.2, .8, .2, 1);
    --float-duration: 6s;
    --card-raise: 20px;
    --pulse-duration: 3s;
    --custom-bg-primary: linear-gradient(90deg, #10b981 0%, #00ffb0 100%);
}

/* gradient text animation  */
.animated-gradient-text {
    background: linear-gradient(270deg,
            #001b58ff,
            /* slate-900 */
            #001affff,
            /* indigo-700 */
            #b300ffff,
            /* cyan-400 */
            #ff0000ff
            /* pink-500 */
        );
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* gradient text animation end  */


/* Prevent accidental horizontal overflow on small screens */

html {
    overflow-x: hidden;
}

body {
    background-color: #0a0a0a;
    color: #e5e5e5;
    scrollbar-width: none;
    -ms-overflow-style: none;

}
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}
/* Hide scrollbar for Chrome, Edge, Safari */
body::-webkit-scrollbar {
    display: none;
}
.section-title {
    font-size: 2.25rem;
    font-weight: 500;
    color: #111827;
    line-height: 1.2;
}
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}


@media (max-width: 767px) {
    .section-title {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .section-title {
        font-size: 24px;
    }
}
.title-part1 {
    color: #111827;
}

.title-part2 {
    color: #059669;
}

/* browse recorded courses start */
        .__dt_feature-item {
            display: flex;
            align-items: center;
            width: 100%;
        }
        
        .__dt_feature-text {
            flex: 1;
            text-align: justify;
            text-justify: inter-word;
        }
        
        /* Ensure right side card covers full area */
        @media (min-width: 768px) {
            .mobile-mockup-container {
                height: 500px;
            }
        }
/* browse recorded courses end */

/* Enhanced 3D Card with continuous subtle movement */
.card-3d {
    transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateZ(0);
    transition: transform 0.6s var(--motion-ease), box-shadow 0.4s var(--motion-ease);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(34, 197, 94, 0.1);
    animation: gentleFloat 8s var(--motion-ease) infinite;
    background: #111111;
}

.card-3d:hover {
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg) translateZ(var(--card-raise)) scale(1.02);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(34, 197, 94, 0.3);
    animation-play-state: paused;
}

@keyframes gentleFloat {

    0%,
    100% {
        transform: perspective(1000px) rotateX(5deg) rotateY(-5deg) translateZ(0) translateY(0px);
    }

    50% {
        transform: perspective(1000px) rotateX(4deg) rotateY(-6deg) translateZ(0) translateY(-8px);
    }
}

/* Glass Effect */
.glass {
    backdrop-filter: blur(10px);
    background: rgba(17, 24, 39);
    /* border: 1px solid rgba(34, 197, 94, 0.2); */
}






/* Pulsing glow effect */
.glow {
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
}

.pulse-glow {
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(34, 197, 94, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(34, 197, 94, 0.6);
    }
}

/* Vehicle showcase grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.vehicle-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    background: #111111;
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Stats grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

/* Compact pricing cards */
.pricing-card {
    background: #111111;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: #22c55e;
    transform: translateY(-5px);
}

/* Compact instructor cards */
.instructor-card {
    background: #111111;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.instructor-card:hover {
    border-color: #22c55e;
    transform: translateY(-5px);
}

/* Compact testimonial cards */
.testimonial-card {
    background: #111111;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #22c55e;
}

/* Compact FAQ */
.faq-item {
    background: #111111;
    border: 1px solid #1a1a1a;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #22c55e;
}

.faq-item[open] {
    border-color: #22c55e;
    background: rgba(34, 197, 94, 0.05);
}

/* Improved mobile menu */
.mobile-menu {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
}

/* Improved form styling */
.form-input {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    color: #e5e5e5;
}

.form-input:focus {
    border-color: #22c55e;
    box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}

/* Improved footer */
.footer-link:hover {
    color: #22c55e;
}

/* Small screens (e.g., up to 640px) */
@media (max-width: 640px) {

    /* Horizontal scroll container utility: convert grid -> single-row scrollable list */
    .horizontal-scroll {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 1rem !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scroll-behavior: smooth !important;
        scroll-snap-type: x proximity !important;
        padding-bottom: 0.625rem !important;
        margin-left: 0.25rem !important;
        margin-right: 0.25rem !important;
    }

    /* Each child becomes a snap-aligned card with fixed relative width */
    .horizontal-scroll>* {
        scroll-snap-align: start !important;
        flex: 0 0 80% !important;
        min-width: 260px !important;
        max-width: 420px !important;
        box-sizing: border-box !important;
        transform: none !important;
        /* cancel earlier blanket scaling */
    }

    /* Tweak padding so cards fit better in the viewport */
    .horizontal-scroll>* .p-6,
    .horizontal-scroll>* .p-5,
    .horizontal-scroll>* .p-4 {
        padding: 0.6rem !important;
    }

    /* Improve scrollbar appearance (light, narrow) */
    .horizontal-scroll::-webkit-scrollbar {
        height: 8px;
    }

    .horizontal-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

    .horizontal-scroll::-webkit-scrollbar-thumb {
        background: rgba(34, 197, 94, 0.25);
        border-radius: 8px;
    }

    /* Prevent page horizontal overflow */
    html,
    body {
        overflow-x: hidden !important;
    }
}

@media (max-width: 767px) {

    /* The camera-controls attribute enables interaction */
    /* By removing the attribute via CSS, interaction is disabled. */
    model-viewer[camera-controls] {
        pointer-events: none;
        /* Prevents all mouse/touch interaction */
    }
}

/* signals sign scroll  */
.infinite-scroll-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    background-color: white;
}

.scrolling-content {
    display: inline-block;
    animation: scroll 30s linear infinite;
    padding: 10px 0;
}

.scrolling-content img {
    display: inline-block;
    height: 80px;
    /* Adjust as needed */
    margin: 0 0px;
    vertical-align: middle;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-200%);
    }
}

/* Pause on hover */
.scrolling-content:hover {
    animation-play-state: paused;
}

/* Responsive speed adjustment */
@media (max-width: 768px) {
    .scrolling-content {
        animation: scroll 20s linear infinite;
    }

    .scrolling-content img {
        height: 65px;
    }
}


/* header section extra code */
/* Desktop Header Buttons */
.gc-desktop-login-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 2px 5px rgba(30, 64, 175, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.gc-desktop-login-btn:hover {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(30, 64, 175, 0.3);
    border-color: rgba(59, 130, 246, 0.5);
}

.gc-desktop-enquiry-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 5px rgba(16, 185, 129, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
}

.gc-desktop-enquiry-btn:hover {
    background: linear-gradient(90deg, #059669 0%, #047857 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
    border-color: rgba(16, 185, 129, 0.5);
}

/* Mobile Header Buttons (Smaller) */
.gc-mobile-header-login-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 18px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 2px 4px rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    min-width: 70px;
}

.gc-mobile-header-enquiry-btn {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 18px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    min-width: 75px;
}

/* Mobile Menu Buttons (Full width) */
.gc-mobile-menu-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 2px 6px rgba(30, 64, 175, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.gc-mobile-menu-enquiry-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: linear-gradient(90deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 6px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

/* Hover effects for all buttons */
.gc-mobile-header-login-btn:hover,
.gc-mobile-header-enquiry-btn:hover,
.gc-mobile-menu-login-btn:hover,
.gc-mobile-menu-enquiry-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Active state */
.gc-mobile-header-login-btn:active,
.gc-mobile-header-enquiry-btn:active,
.gc-mobile-menu-login-btn:active,
.gc-mobile-menu-enquiry-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* FIXED: Responsive adjustments - DO NOT HIDE TEXT */
@media (max-width: 480px) {

    .gc-mobile-header-login-btn,
    .gc-mobile-header-enquiry-btn {
        padding: 5px 10px;
        font-size: 11px;
        gap: 3px;
        min-width: 65px;
    }

    /* REMOVED THIS: Don't hide text on mobile */
    /*
    .gc-mobile-header-login-btn span,
    .gc-mobile-header-enquiry-btn span {
        display: none;
    }
    */

    .gc-mobile-header-login-btn i,
    .gc-mobile-header-enquiry-btn i {
        font-size: 11px;
    }
}

/* For very small screens, adjust but keep text visible */
@media (max-width: 380px) {

    .gc-mobile-header-login-btn,
    .gc-mobile-header-enquiry-btn {
        padding: 4px 8px;
        font-size: 10px;
        min-width: 60px;
    }

    .gc-mobile-header-login-btn span,
    .gc-mobile-header-enquiry-btn span {
        font-size: 10px;
    }
}

/* For extremely small screens, show icons only */
@media (max-width: 320px) {

    .gc-mobile-header-login-btn span,
    .gc-mobile-header-enquiry-btn span {
        display: none;
    }

    .gc-mobile-header-login-btn,
    .gc-mobile-header-enquiry-btn {
        padding: 6px;
        min-width: 40px;
        justify-content: center;
    }

    .gc-mobile-header-login-btn i,
    .gc-mobile-header-enquiry-btn i {
        margin-right: 0;
    }
}

/* Focus states for accessibility */
.gc-desktop-login-btn:focus-visible,
.gc-desktop-enquiry-btn:focus-visible,
.gc-mobile-header-login-btn:focus-visible,
.gc-mobile-header-enquiry-btn:focus-visible,
.gc-mobile-menu-login-btn:focus-visible,
.gc-mobile-menu-enquiry-btn:focus-visible {
    outline: 2px solid rgba(59, 130, 246, 0.6);
    outline-offset: 2px;
}

/* Ensure text is always visible by default */
.gc-mobile-header-login-btn span,
.gc-mobile-header-enquiry-btn span {
    display: inline !important;
}

/* Add margin between icon and text */
.gc-mobile-header-login-btn i,
.gc-mobile-header-enquiry-btn i {
    margin-right: 3px;
}

.tag-line {
    font-size: 0.75rem;
}

@media(max-width:767px) {
    .tag-line {
        font-size: 0.75rem;
    }
}

@media(max-width:412px) {
    .tag-line {
        font-size: 0.65rem;
    }
}

.topbar-contact {
    background: var(--custom-bg-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

/* header section extra code End*/



/* Hero section Start */
/* Glass Card Styles */
.glass-instructor-card {
    backdrop-filter: blur(10px);
    background: rgba(17, 24, 39, 0.9);
    border: 1px solid rgba(34, 197, 94, 0.3);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(34, 197, 94, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-instructor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.4),
        0 0 20px rgba(34, 197, 94, 0.2);
}

/* Floating animation for the card */
@keyframes floatCard {

    0%,
    100% {
        transform: translate(-50%, 0);
    }

    50% {
        transform: translate(-50%, -5px);
    }
}

.glass-instructor-card {
    animation: floatCard 4s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .glass-instructor-card {
        max-width: 280px;
        padding: 12px;
    }

    .glass-instructor-card h4 {
        font-size: 13px;
    }

    .glass-instructor-card p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .glass-instructor-card {
        max-width: 240px;
        padding: 10px;
    }
}

/* Add to your existing CSS */
.bg-gray-900\/80 {
    transition: all 0.3s ease;
}

.bg-gray-900\/80:hover {
    background: rgba(17, 24, 39, 0.9);
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-2px);
}

/* Enhanced Trainer Glass Card */
.absolute.-bottom-4.left-1\/2.transform.-translate-x-1\/2.z-10.w-4\/5.max-w-sm {
    position: absolute;
    bottom: -3rem;
    left: 50%;
    width: 20rem;
    max-width: 20rem;
    transform: translateX(-50%);
    padding: 0;
    border-radius: 16px;
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: white;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    z-index: 20;
    overflow: hidden;
}

/* Card content styling */
.absolute.-bottom-4.left-1\/2.transform.-translate-x-1\/2.z-10.w-4\/5.max-w-sm .bg-gray-900\/80 {
    background: transparent !important;
    border: none !important;
    padding: 12px 22px !important;
}

.absolute.-bottom-4.left-1\/2.transform.-translate-x-1\/2.z-10.w-4\/5.max-w-sm .text-center {
    background: transparent;
}

.absolute.-bottom-4.left-1\/2.transform.-translate-x-1\/2.z-10.w-4\/5.max-w-sm h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.absolute.-bottom-4.left-1\/2.transform.-translate-x-1\/2.z-10.w-4\/5.max-w-sm .text-green-400 {
    color: rgba(34, 197, 94, 0.95) !important;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Optional hover effect */
.absolute.-bottom-4.left-1\/2.transform.-translate-x-1\/2.z-10.w-4\/5.max-w-sm {
    transition: all 0.3s ease;
}

.absolute.-bottom-4.left-1\/2.transform.-translate-x-1\/2.z-10.w-4\/5.max-w-sm:hover {
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transform: translateX(-50%) translateY(-5px);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .absolute.-bottom-4.left-1\/2.transform.-translate-x-1\/2.z-10.w-4\/5.max-w-sm {
        width: 16rem;
        max-width: 16rem;
        bottom: -2.5rem;
    }

    .absolute.-bottom-4.left-1\/2.transform.-translate-x-1\/2.z-10.w-4\/5.max-w-sm h4 {
        font-size: 1rem;
    }

    .absolute.-bottom-4.left-1\/2.transform.-translate-x-1\/2.z-10.w-4\/5.max-w-sm .text-green-400 {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .absolute.-bottom-4.left-1\/2.transform.-translate-x-1\/2.z-10.w-4\/5.max-w-sm {
        width: 14rem;
        max-width: 14rem;
        bottom: -2rem;
        padding: 0;
    }

    .absolute.-bottom-4.left-1\/2.transform.-translate-x-1\/2.z-10.w-4\/5.max-w-sm .bg-gray-900\/80 {
        padding: 10px 16px !important;
    }
}

/* Mobile Service Icon Cards */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(17, 24, 39, 0.8);
    /* Gray-900 with transparency */
    border: 1px solid rgba(34, 197, 94, 0.1);
    /* Subtle green border */
    border-radius: 12px;
    padding: 9px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.service-card:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
}

.icon-wrapper svg {
    color: white;
    width: 1.25rem;
    /* h-5 */
    height: 1.25rem;
    /* w-5 */
}

.card-content {
    width: 100%;
}

.feature-title {
    font-size: 0.875rem;
    /* text-sm */
    font-weight: 600;
    color: #f9fafb;
    /* Gray-50 */
    margin-bottom: 0.25rem;
    line-height: 1.2;
}

.feature-desc {
    font-size: 0.75rem;
    /* text-xs */
    color: #9ca3af;
    /* Gray-400 */
    line-height: 1.2;
}


/* Mobile Service Grid - Car Services Style */
.service-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-item {
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    padding: 0.4rem 0.40rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.service-item:hover {
    border-color: rgba(34, 197, 94, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.service-icon {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    height: 1.5rem;
    /* h-6 */
    width: 1.5rem;
    /* w-6 */
    fill: currentColor !important;
}

.service-name {
    font-size: 0.70rem;
    /* text-sm */
    font-weight: 600;
    color: #f9fafb;
    /* Gray-50 */
    text-align: center;
    line-height: 1.2;
}

@media(max-width:767px) {
    .service-name {
        font-size: 0.70rem;
    }
}

@media(max-width:412px) {
    .service-name {
        font-size: 0.65rem;
    }
}

/* Hero section End */



/* section 1  */
/* Scoped styles only for this recorded courses section */
#recorded-courses .courses-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Mobile-first layout */
#recorded-courses .mobile-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
    #recorded-courses .mobile-header {
        display: none;
    }
}

/* Desktop Grid Layout - Content left, Image right */
#recorded-courses .courses-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

@media (min-width: 1024px) {
    #recorded-courses .courses-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    /* On desktop: Content comes first (left), Image second (right) */
    #recorded-courses .courses-content {
        order: 1;
    }

    #recorded-courses .courses-image-container {
        order: 2;
    }
}

@media (min-width: 512px) {
    #recorded-courses .courses-grid {
        gap: 0rem;
    }
}

@media (min-width: 367px) {
    #recorded-courses .courses-grid {
        gap: 0rem;
    }
}

/* Desktop Content */
#recorded-courses .courses-content {
    padding: 0.5rem;
}

@media (min-width: 768px) {
    #recorded-courses .courses-content {
        padding: 1rem;
    }
}

@media (max-width: 1023px) {
    #recorded-courses .courses-content {
        padding-top: 0;
    }

    /* Hide desktop heading in mobile */
    #recorded-courses .desktop-heading {
        display: none;
    }
}

@media (min-width: 1024px) {
    #recorded-courses .desktop-heading {
        display: block;
    }
}

/* Dual Color Heading */
#recorded-courses .courses-title {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    #recorded-courses .courses-title {
        font-size: 2.25rem;
    }
}

@media (min-width: 1024px) {
    #recorded-courses .courses-title {
        font-size: 2.5rem;
    }
}

#recorded-courses .title-part1 {
    color: #111827;
}

#recorded-courses .title-part2 {
    color: #059669;
}

/* Compact Description */
#recorded-courses .courses-subtitle {
    font-size: 1rem;
    color: #4B5563;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

@media (min-width: 640px) {
    #recorded-courses .courses-subtitle {
        font-size: 1.125rem;
    }
}

/* Image Section */
#recorded-courses .courses-image-container {
    position: relative;
    padding: 0.5rem;
    margin: 1rem 0;
}

@media (min-width: 1024px) {
    #recorded-courses .courses-image-container {
        margin: 0;
        padding: 1rem;
    }
}

@media (min-width: 512px) {
    #recorded-courses .courses-image-container {
        margin: 0;
    }
}

@media (min-width: 367px) {
    #recorded-courses .courses-image-container {
        margin: 0;
    }
}

#recorded-courses .courses-image {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    object-fit: cover;
    min-height: 220px;
    max-height: 280px;
}

@media (min-width: 768px) {
    #recorded-courses .courses-image {
        min-height: 280px;
        max-height: 350px;
    }
}

@media (min-width: 1024px) {
    #recorded-courses .courses-image {
        min-height: 350px;
        max-height: 400px;
    }
}

#recorded-courses .courses-image:hover {
    transform: scale(1.02);
}

#recorded-courses .image-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 0.375rem 1rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.75rem;
    z-index: 10;
}

/* Compact Features List */
#recorded-courses .courses-list {
    margin: 1.5rem 0;
    list-style: none;
    padding: 0;
}

#recorded-courses .courses-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.4;
}

@media (min-width: 640px) {
    #recorded-courses .courses-list li {
        font-size: 0.95rem;
    }
}

#recorded-courses .list-icon {
    color: #059669;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Compact Button */
#recorded-courses .explore-button {
    display: inline-block;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    width: 100%;
    max-width: 280px;
    margin-top: 1rem;
}

@media (min-width: 640px) {
    #recorded-courses .explore-button {
        padding: 0.875rem 2.5rem;
        font-size: 1rem;
    }
}

#recorded-courses .explore-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
    background: linear-gradient(135deg, #047857 0%, #065F46 100%);
}

#recorded-courses .explore-button:active {
    transform: translateY(0);
}

/* Mobile specific adjustments - Centered button */
@media (max-width: 767px) {
    #recorded-courses .mobile-header {
        text-align: left;
        padding: 0 0.5rem;
    }

    #recorded-courses .courses-content {
        text-align: left;
        padding: 0 0.5rem;
    }

    #recorded-courses .courses-list {
        max-width: 100%;
    }

    /* Centered button for mobile */
    #recorded-courses .explore-button {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    #recorded-courses .image-badge {
        top: 0.75rem;
        right: 0.75rem;
        padding: 0.25rem 0.75rem;
        font-size: 0.7rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    #recorded-courses .mobile-header {
        text-align: center;
    }

    #recorded-courses .courses-content {
        text-align: center;
    }

    #recorded-courses .explore-button {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Hide stats section */
#recorded-courses .stats-container {
    display: none;
}

/* section 1 end */

/* section 2 */
/* Scoped styles for live classes section only - FIXED VERSION */
#live-classes .courses-container {
    max-width: 1265px;
    margin: 0 auto;
}

#live-classes .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#live-classes .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}


@media (min-width: 640px) {
    #live-classes .section-title {
        font-size: 2rem;
    }
}

#live-classes .section-subtitle {
    font-size: 1.125rem;
    color: #4B5563;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 640px) {
    #live-classes .section-subtitle {
        font-size: 1rem;
    }
}

#live-classes .highlight-text {
    color: #059669;
    font-weight: 600;
}

/* Slider Container - FIXED */
#live-classes .slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

#live-classes .courses-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
}


/* Course Card - FIXED Design */
#live-classes .course-card {
    flex: 0 0 calc(25% - 1.125rem);
    background: white;
    border: 1px solid #E5E7EB;
    border-radius: .5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 380px;
}


@media (max-width: 767px) {
    #live-classes .course-card {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;

    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    #live-classes .course-card {
        flex: 0 0 calc(50% - 1rem);
        min-height: 360px;
    }
}

#live-classes .course-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-radius: .5rem;
}

/* Course Image */
#live-classes .course-image {
    height: 160px;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Badge */
#live-classes .course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Course Content */
#live-classes .course-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

#live-classes .course-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Language Info */
#live-classes .language-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6B7280;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

/* Buttons */
#live-classes .course-buttons {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
}

#live-classes .syllabus-btn {
    flex: 1;
    padding: 0.5rem .5rem;
    border: 1.5px solid #D1D5DB;
    border-radius: 0.25rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.875rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

#live-classes .syllabus-btn:hover {
    border-color: #059669;
    color: #059669;
    background-color: #F0FDF4;
}

#live-classes .details-btn {
    flex: 1;
    padding: 0.5rem .5rem;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    border: none;
    border-radius: 0.25rem;
    color: white;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

#live-classes .details-btn:hover {
    background: linear-gradient(135deg, #047857 0%, #065F46 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
}

/* Slider Navigation - FIXED */
#live-classes .slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

#live-classes .nav-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #E5E7EB;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

#live-classes .nav-btn:hover {
    border-color: #059669;
    color: #059669;
    transform: scale(1.1);
}

#live-classes .nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#live-classes .nav-btn.disabled:hover {
    border-color: #E5E7EB;
    color: #6B7280;
    transform: none;
}

/* Dots Indicator - FIXED */
#live-classes .dots-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1rem;
}

#live-classes .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

#live-classes .dot.active {
    background-color: #059669;
    transform: scale(1.2);
}

/* Explore All Button */
#live-classes .explore-all-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 0.75rem 2rem;
    border: 2px solid #9CA3AF;
    border-radius: 0.75rem;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

#live-classes .explore-all-btn:hover {
    border-color: #059669;
    color: #059669;
    background-color: #F0FDF4;
}

/* Dual color title */
#live-classes .title-part1 {
    color: #111827;
}

#live-classes .title-part2 {
    color: #059669;
}

/* Image backgrounds */
#live-classes .course-img-1 {
    background-image: url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&auto=format&fit=crop&w=2065&q=80');
}

#live-classes .course-img-2 {
    background-image: url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=2070&q=80');
}


#live-classes .course-img-3 {
    background-image: url('https://images.unsplash.com/photo-1517077304055-6e89abbf09b0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
}

#live-classes .course-img-4 {
    background-image: url('https://images.unsplash.com/photo-1561070791-2526d30994b5?ixlib=rb-4.0.3&auto=format&fit=crop&w=2064&q=80');
}

#live-classes .course-img-5 {
    background-image: url('https://images.unsplash.com/photo-1551650975-87deedd944c3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2067&q=80');
}

#live-classes .course-img-6 {
    background-image: url('https://images.unsplash.com/photo-1517077304055-6e89abbf09b0?ixlib=rb-4.0.3&auto=format&fit=crop&w=2069&q=80');
}

/* Hide scrollbar */
#live-classes .slider-container::-webkit-scrollbar {
    display: none;
}

#live-classes .slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    #live-classes .section-title {
        font-size: 1.875rem;
    }

    #live-classes .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    #live-classes .slider-container {
        padding: 0 0.5rem;
    }

    #live-classes .course-card {
        padding-bottom: 0;
    }

    #live-classes .course-content {
        padding: 1.25rem;
    }

    #live-classes .course-badge {
        top: 0.75rem;
        right: 0.75rem;
        font-size: 0.7rem;
        padding: 0.2rem 0.6rem;
    }
}

/* section 2 End */



/* section 3 */
/* Scoped styles for final year projects section */
#final-year-projects .projects-container {
    max-width: 1200px;
    margin: 0 auto;
}

#final-year-projects .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#final-year-projects .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    #final-year-projects .section-title {
        font-size: 3rem;
    }
}

#final-year-projects .section-subtitle {
    font-size: 1.125rem;
    color: #4B5563;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 640px) {
    #final-year-projects .section-subtitle {
        font-size: 1.25rem;
    }
}

#final-year-projects .highlight-text {
    color: #059669;
    font-weight: 600;
}

/* Slider Container */
#final-year-projects .slider-container {
    position: relative;
    overflow: hidden;
    padding: 0 1rem;
}

#final-year-projects .projects-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 1.5rem;
}

/* Project Card - Compact Design */
#final-year-projects .project-card {
    flex: 0 0 calc(33.333% - 1rem);
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    border: 1px solid #E5E7EB;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

@media (max-width: 767px) {
    #final-year-projects .project-card {
        flex: 0 0 100%;
        max-width: 100%;
        justify-content: center;
    }


}

@media (min-width: 768px) and (max-width: 1024px) {
    #final-year-projects .project-card {
        flex: 0 0 calc(50% - 1rem);
        min-height: 300px;
    }
}

#final-year-projects .project-card:hover {
    transform: translateY(-5px);
    border-color: #059669;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Compact Header with Icon on Left */
#final-year-projects .project-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

/* Small Icon Container on Left */
#final-year-projects .icon-container {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#final-year-projects .icon-ai {
    background: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
}

#final-year-projects .icon-web {
    background: linear-gradient(135deg, #059669 0%, #10B981 100%);
}

#final-year-projects .icon-iot {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

#final-year-projects .icon-ml {
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
}

#final-year-projects .icon-data {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

#final-year-projects .icon-blockchain {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

#final-year-projects .icon-container i {
    color: white;
    font-size: 1.25rem;
}

/* Project Title and Description */
#final-year-projects .project-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin: 0;
}

#final-year-projects .project-description {
    color: #4B5563;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* Tech Stack - Compact */
#final-year-projects .tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

#final-year-projects .tech-tag {
    background-color: #E5E7EB;
    color: #374151;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Features List - Compact */
#final-year-projects .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

#final-year-projects .features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.4rem;
    color: #374151;
    font-size: 0.8rem;
}

#final-year-projects .feature-icon {
    color: #059669;
    margin-right: 0.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
    font-size: 0.8rem;
}

/* View Button - Compact */
#final-year-projects .view-project-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

#final-year-projects .view-project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
    background: linear-gradient(135deg, #047857 0%, #065F46 100%);
}

#final-year-projects .view-project-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

#final-year-projects .view-project-btn:hover i {
    transform: translateX(4px);
}

/* Slider Navigation */
#final-year-projects .slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

#final-year-projects .nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #E5E7EB;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6B7280;
    cursor: pointer;
    transition: all 0.3s ease;
}

#final-year-projects .nav-btn:hover {
    border-color: #059669;
    color: #059669;
    transform: scale(1.1);
}

#final-year-projects .nav-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

#final-year-projects .nav-btn.disabled:hover {
    border-color: #E5E7EB;
    color: #6B7280;
    transform: none;
}

/* Dots Indicator */
#final-year-projects .dots-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 1rem;
}

#final-year-projects .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

#final-year-projects .dot.active {
    background-color: #059669;
    transform: scale(1.2);
}

/* CTA Section */
#final-year-projects .cta-section {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 1rem;
    border: 1px solid #BBF7D0;
}

#final-year-projects .cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

#final-year-projects .cta-description {
    color: #4B5563;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

#final-year-projects .cta-button {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

#final-year-projects .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
    background: linear-gradient(135deg, #047857 0%, #065F46 100%);
}

/* Stats Section */
#final-year-projects .stats-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

#final-year-projects .stat-item {
    text-align: center;
    padding: 1rem;
    min-width: 120px;
}

#final-year-projects .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    line-height: 1;
}

#final-year-projects .stat-label {
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 0.25rem;
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    #final-year-projects .section-title {
        font-size: 1.875rem;
    }

    #final-year-projects .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    #final-year-projects .slider-container {
        padding: 0 0.5rem;
    }

    #final-year-projects .project-card {
        padding: 1.25rem;
    }

    #final-year-projects .icon-container {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    #final-year-projects .icon-container i {
        font-size: 1rem;
    }

    #final-year-projects .project-title {
        font-size: 1rem;
    }

    #final-year-projects .cta-section {
        margin: 3rem 1rem 0;
        padding: 1.5rem;
    }
}

/* Hide scrollbar */
#final-year-projects .slider-container::-webkit-scrollbar {
    display: none;
}

#final-year-projects .slider-container {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Dual color title - same as Live Classes */
#final-year-projects .title-part1 {
    color: #111827;
    /* Dark */
}

#final-year-projects .title-part2 {
    color: #059669;
    /* Green */
}

/* section 3 End */


/* placed student section  */
.plcd__card-overlay {
    background: linear-gradient(to top, rgb(0 0 0), rgb(0 0 0 / 0%), rgba(0, 0, 0, 0.1));
}

.plcd__card-bg {
    background-size: cover;
    background-position: center;
}

/* placed student section end */

/* Section 4 */
/* Scoped styles for internship section */
#fresher-internship .internship-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styling */
#fresher-internship .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

#fresher-internship .section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 640px) {
    #fresher-internship .section-title {
        font-size: 3rem;
    }
}

#fresher-internship .section-subtitle {
    font-size: 1.125rem;
    color: #4B5563;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

@media (min-width: 640px) {
    #fresher-internship .section-subtitle {
        font-size: 1.25rem;
    }
}

#fresher-internship .highlight-text {
    color: #059669;
    font-weight: 600;
}

/* Internship Cards Grid */
#fresher-internship .internship-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    #fresher-internship .internship-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    #fresher-internship .internship-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Internship Card */
#fresher-internship .internship-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    height: 100%;
}

#fresher-internship .internship-card:hover {
    transform: translateY(-5px);
    border-color: #059669;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Card Header with Icon */
#fresher-internship .card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

#fresher-internship .card-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

#fresher-internship .icon-webdev {
    background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
}

#fresher-internship .icon-data {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
}

#fresher-internship .icon-ai {
    background: linear-gradient(135deg, #8B5CF6 0%, #7C3AED 100%);
}

#fresher-internship .icon-uiux {
    background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
}

#fresher-internship .card-icon i {
    color: white;
    font-size: 1.25rem;
}

#fresher-internship .card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.3;
    margin: 0;
}

/* Duration Info - Plain text without pill */
#fresher-internship .duration-info {
    color: #6B7280;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
}

#fresher-internship .duration-text {
    color: #059669;
    font-weight: 600;
}

/* Features List */
#fresher-internship .features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

#fresher-internship .features-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    color: #4B5563;
    font-size: 0.9rem;
    line-height: 1.4;
}

#fresher-internship .feature-icon {
    color: #059669;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
    font-size: 0.9rem;
}

/* Internship Fee Info - Updated */
#fresher-internship .fee-info {
    background-color: #F0FDF4;
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #BBF7D0;
}

#fresher-internship .fee-label {
    color: #374151;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

#fresher-internship .fee-amount {
    color: #059669;
    font-size: 1.25rem;
    font-weight: 700;
}

#fresher-internship .fee-note {
    color: #6B7280;
    font-size: 0.75rem;
    margin-top: 0.25rem;
}

/* Apply Button */
#fresher-internship .apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-top: auto;
}

#fresher-internship .apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
    background: linear-gradient(135deg, #047857 0%, #065F46 100%);
}

#fresher-internship .apply-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

#fresher-internship .apply-btn:hover i {
    transform: translateX(4px);
}

/* CTA Section */
#fresher-internship .cta-section {
    margin-top: 4rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border-radius: 1rem;
    border: 1px solid #BBF7D0;
}

#fresher-internship .cta-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

#fresher-internship .cta-description {
    color: #4B5563;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
    line-height: 1.5;
}

#fresher-internship .cta-button {
    display: inline-block;
    padding: 0.875rem 2.5rem;
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

#fresher-internship .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
    background: linear-gradient(135deg, #047857 0%, #065F46 100%);
}

/* Mobile Adjustments */
@media (max-width: 767px) {
    #fresher-internship .section-title {
        font-size: 1.875rem;
    }

    #fresher-internship .section-subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    #fresher-internship .internship-grid {
        padding: 0 1rem;
        gap: 1rem;
    }

    #fresher-internship .internship-card {
        padding: 1.25rem;
    }

    #fresher-internship .card-icon {
        width: 44px;
        height: 44px;
        min-width: 44px;
    }

    #fresher-internship .card-icon i {
        font-size: 1.1rem;
    }

    #fresher-internship .cta-section {
        margin: 3rem 1rem 0;
        padding: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1023px) {
    #fresher-internship .internship-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Dual color section title - same as other sections */
#fresher-internship .title-part1 {
    color: #111827;
    /* Dark */
}

#fresher-internship .title-part2 {
    color: #059669;
    /* Green */
}


/* Section 4 End */


/* Prevent scrollbar flash */


/* Hide scrollbar but keep scrolling */
.scrollbar-hide {
    -ms-overflow-style: none;
    /* IE & Edge */
    scrollbar-width: none;
    /* Firefox */
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

/* Make default date picker icon white */
input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    cursor: pointer;
}

.top-bar-contact {
    padding-left: 1rem;
    padding-right: 1rem;
}

@media(max-width:768px) {
    .top-bar-contact {
        padding-left: 0px;
        padding-right: 0px;
    }

    .footer-logo {
        margin-top: 19px;
    }

    .footer-logo img {
        height: 31px;
    }
}

.infinite-scroll-container {
    overflow: hidden;
    width: 100%;
}

.scrolling-content {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-left-to-right 25s linear infinite;
}

@keyframes scroll-left-to-right {
    from {
        transform: translateX(-50%);
    }

    to {
        transform: translateX(0);
    }
}


/* extra css code */
.logo-text {
    line-height: 1.1;
    display: inline-flex;
    align-items: center;
}

.i-wrapper {
    position: relative;
    display: inline-block;
}

/* green dot */
.i-dot {
    position: absolute;
    top: 3px;
    /* RESPONSIVE — scales with font */
    left: 50%;
    transform: translateX(-50%);
    width: 0.2em;
    height: 0.2em;
    background-color: #22c55e;
    /* green */
    border-radius: 50%;
}

/* extra css code */


/* extra css code */

/* Perfect Crossfade Animation Styles */
.heading-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: opacity, transform;
}

.heading-inactive {
    opacity: 0 !important;
    transform: translateY(15px) !important;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.7s cubic-bezier(0.4, 0, 0.2, 1) !important;
    will-change: opacity, transform;
}

.dot-active {
    background-color: #22c55e !important;
    width: 20px !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.dot-inactive {
    background-color: #374151 !important;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Ensure heading container has proper stacking context */
.relative.h-16.overflow-hidden,
.relative.h-24.md\\:h-28.lg\\:h-32.overflow-hidden {
    position: relative;
    min-height: 4rem;
    /* For mobile */
}

.relative.h-24.md\\:h-28.lg\\:h-32.overflow-hidden {
    min-height: 6rem;
    /* For desktop */
}

/* Custom Gradient Text Classes */
.gradient-text-primary {
    background: linear-gradient(90deg, #10b981 0%, #00ffb0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-blue {
    background: linear-gradient(90deg, #2563eb 0%, #00c2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-orange-green {
    background: linear-gradient(to right, #f97316, #ffffff, #22c55e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* extra css code */

/* extra css code */
/* Enhanced Rotating Heading Styles */
.heading-active {
    opacity: 1 !important;
    transform: translateY(0) !important;
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out !important;
}

.heading-inactive {
    opacity: 0 !important;
    transform: translateY(10px) !important;
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out !important;
}

.dot-active {
    background-color: #22c55e !important;
    width: 20px !important;
    transition: all 0.5s ease-in-out !important;
}

.dot-inactive {
    background-color: #374151 !important;
    transition: all 0.5s ease-in-out !important;
}

/* extra css code */


/* extra css code */
/* Custom styles */
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

#blogSlider {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

/* Modal Sidebar Styles */
@media (max-width: 1023px) {
    #blogModal .lg\\:block {
        display: none !important;
    }
}

/* Modal Content Height */
#modalContent {
    max-height: calc(85vh - 120px);
}

/* Image without overlay */
#modalContent .relative>img {
    filter: brightness(1);
}

/* Navigation button states */
button.opacity-50 {
    opacity: 0.5;
    pointer-events: none;
}

/* extra css code */

.rounded-2xl.overflow-hidden img {
    transition: transform 0.5s ease;
}

.rounded-2xl.overflow-hidden:hover img {
    transform: scale(1.05);
}


/* Add this to your modal CSS */
#enquiry-modal {
    z-index: 9999 !important;
    /* Very high value */
}

/* Or ensure backdrop is higher */
.bg-black\/70 {
    z-index: 9998;
}


#rotating-heading,
#desktop-heading-2,
#mobile-rotating-heading,
#mobile-rotating-heading-2 {
    transform: none !important;
}

/* Ai section start */
/* Added unique prefix __quantex to all CSS classes */
.__quantex__body-scroll-fix {
    width: 100%;
    overflow-x: hidden;
}

.__quantex__base-styling {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
}

.__quantex__premium-card {
    background: linear-gradient(135deg, #1e293b 0%, #1e3a8a 50%, #1e293b 100%);
    position: relative;
    overflow: visible;
}

.__quantex__premium-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

.__quantex__feature-card {
    background:
        linear-gradient(rgba(255,255,255,0.98), rgba(255,255,255,0.98)),
        linear-gradient(90deg, rgba(0,0,0,0.1) 1px, transparent 1px),
        linear-gradient(rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 100% 100%, 15px 15px, 15px 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(226,232,240,0.5);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.__quantex__ai-text-animation {
    animation: __quantex__squishBig 2s ease-in-out infinite;
    display: inline-block;
}

/* Ai section end */


/*tech stack logo section  */

.tech-title-part1 {
    color: #eeeeee;
    /* Dark */
}

.title-part2 {
    color: #059669;
    /* Green */
}
    /* Main grid container */
    .__enhanced-grid-container {
      display: grid;
      grid-template-columns: repeat(14, 72px);
      gap: 16px;
      justify-content: center;
      max-width: 100%;
      padding: 8px;
      margin: 0 auto;
      transition: all 0.3s ease;
    }

    /* Box styling */
    .__enhanced-grid-box {
      width: 72px;
      height: 72px;
      border-radius: 14px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 12px;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      position: relative;
      overflow: hidden;
    }

    .__enhanced-grid-box::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at center, transparent 30%, rgba(255, 255, 255, 0.03) 100%);
      opacity: 0;
      transition: opacity 0.3s;
    }

    .__enhanced-grid-box img {
      width: 28px;
      height: 28px;
      position: relative;
      z-index: 1;
      transition: all 0.3s;
      object-fit: contain;
    }

    /* Special logo sizes */
    .__enhanced-grid-java-logo img {
      width: 50px;
      height: 42px;
    }
    
    .__enhanced-grid-ofc-logo img {
      width: 32px;
      height: 32px;
    }

    /* Image opacity states */
    .__enhanced-grid-dark-box img {
      opacity: 0;
      filter: grayscale(0.8);
    }

    .__enhanced-grid-mid-box img {
      opacity: 1;
    }

    /* Hover effects for desktop */
    @media (min-width: 769px) {
      .__enhanced-grid-box:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 0 12px rgba(0, 0, 0, 0.3),
          0 0 20px var(--glow);
        transform: translateY(-4px);
      }

      .__enhanced-grid-box:hover::before {
        opacity: 1;
      }

      .__enhanced-grid-box:hover img {
        transform: scale(1.15);
      }
    }

    /* Touch-friendly hover for mobile */
    @media (max-width: 768px) {
      .__enhanced-grid-box:active {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        transform: scale(0.95);
      }
    }

    /* Vignette effect */
    .__enhanced-grid-vignette::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, transparent 15%, transparent 85%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, transparent 15%, transparent 85%, rgba(0, 0, 0, 0.9) 100%);
      pointer-events: none;
      z-index: 1;
    }


    /* Background gradient */
    .__enhanced-grid-background {
      position: absolute;
      inset-y: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      max-width: 100vw;
      background: linear-gradient(to right, rgba(0, 0, 150, 0.2) 0%, rgba(128, 0, 128, 0.2) 50%, rgba(0, 150, 200, 0.2) 100%);
      filter: blur(180px);
      pointer-events: none;
      z-index: 1;
    }
    
    /* Main body styling */
    .__enhanced-grid-main-body {
      margin: 0;
      padding: 0;
      min-height: 90vh;
      background-color: #000;
      color: #fff;
    }
    
    /* Black section styling */
    .__enhanced-grid-black-section {
      background-color: #000;
      width: 100%;
      min-height: 90vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow-x: hidden;
      padding-left: 8px;
      padding-right: 8px;
      padding-bottom: 32px;
    }
    
    /* Heading styling */
    .__enhanced-grid-heading {
      font-size: 32px;
      font-weight: 600;
      margin-bottom: 40px;
      text-align: center;
      padding-left: 16px;
      padding-right: 16px;
      padding-top: 25px;
      position: relative;
      z-index: 2;
    }
    


    /* Responsive adjustments */
    @media (max-width: 1200px) {
      .__enhanced-grid-container {
        grid-template-columns: repeat(12, 68px);
        gap: 14px;
      }
      
      .__enhanced-grid-box {
        width: 68px;
        height: 68px;
      }
    }

    @media (max-width: 1024px) {
      .__enhanced-grid-container {
        grid-template-columns: repeat(10, 64px);
        gap: 12px;
      }
      
      .__enhanced-grid-box {
        width: 64px;
        height: 64px;
      }
    }

    @media (max-width: 768px) {
      .__enhanced-grid-container {
        grid-template-columns: repeat(8, 56px);
        gap: 12px;
      }
      
      .__enhanced-grid-box {
        width: 56px;
        height: 56px;
        border-radius: 12px;
      }
      
      .__enhanced-grid-box img {
        width: 24px;
        height: 24px;
      }
      
      .__enhanced-grid-java-logo img {
        width: 42px;
        height: 36px;
      }
      
      .__enhanced-grid-vignette::before {
        background:
          linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, transparent 10%, transparent 90%, rgba(0, 0, 0, 0.9) 100%);
      }
      
      .__enhanced-grid-heading {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 20px;
        padding: 0 16px;
      }
      
      /* Simplify grid for mobile */
      .__enhanced-grid-mobile-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
        padding: 16px;
        max-width: 100%;
      }
      
      /* Reduce empty boxes on mobile */
      .__enhanced-grid-dark-box {
        display: none;
      }
    }

    @media (max-width: 640px) {
      .__enhanced-grid-container {
        grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
      }
      
      .__enhanced-grid-box {
        width: 52px;
        height: 52px;
      }
    }

    @media (max-width: 480px) {
      .__enhanced-grid-container {
        gap: 10px;
        padding: 12px 6px;
      }
      
      .__enhanced-grid-box {
        width: 48px;
        height: 48px;
        border-radius: 10px;
        padding: 8px;
      }
      
      .__enhanced-grid-box img {
        width: 22px;
        height: 22px;
      }
      
      .__enhanced-grid-java-logo img {
        width: 38px;
        height: 32px;
      }
      
      .__enhanced-grid-heading {
        font-size: 1.25rem;
        margin-bottom: 16px;
      }
    }

    @media (max-width: 380px) {
      .__enhanced-grid-box {
        width: 44px;
        height: 44px;
      }
      
      .__enhanced-grid-box img {
        width: 20px;
        height: 20px;
      }
    }

    /* Mobile-specific optimizations */
    @media (max-width: 768px) {
      .__enhanced-grid-mobile-body {
        -webkit-overflow-scrolling: touch;
        overflow-x: hidden;
      }
    }

    /* Alternative mobile layout */
    .__enhanced-grid-mobile-slider {
      display: none;
    }

    @media (max-width: 768px) {
      .__enhanced-grid-mobile-slider {
        display: block;
      }
      
      .__enhanced-grid-desktop-version {
        display: none;
      }
    }






/*tech stack logo section end */




/* faq section start */

    .faq__container {
      min-height: 100vh;
    }

    .faq__card {
      border: 1px solid #0066CC;
      border-radius: 8px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
    }

    .faq__card--expanded {
      background-color: #E8F1FF;
      box-shadow: none;
      transform: translateY(-2px);
    }

    .faq__content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
      opacity: 0;
      transform: translateY(-10px);
    }

    .faq__content--show {
      max-height: 500px;
      opacity: 1;
      transform: translateY(0);
      transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease 0.1s,
        transform 0.3s ease 0.1s;
    }

    .faq__card-header {
      transition: all 0.3s ease;
    }

    .faq__card--expanded .faq__card-header {
      padding-bottom: 0.5rem;
    }

    .faq__sticky-container {
      position: relative;
      height: 100%;
    }

    .faq__sticky-title {
      position: sticky;
      top: 2rem;
      align-self: flex-start;
      margin-bottom: 2rem;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @media (max-width: 1023px) {
      .faq__sticky-title {
        position: static;
        margin-bottom: 1.5rem;
      }

      .faq__main-heading {
        font-size: 1.5rem !important;
        text-align: center !important;
        line-height: 1.2 !important;
      }

      .faq__main-heading br {
        display: none;
      }

      .faq__desktop-image {
        display: none !important;
      }
    }

    .faq__content-wrapper {
      position: relative;
    }

    /* Image styling */
    .faq__desktop-image {
      width: 100%;
      max-width: 480px;
      height: 400px;
      border-radius: 8px;
      margin-top: 2rem;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      object-fit: cover;
      display: block;
    }


    @media (max-width: 768px) {
      .faq__sticky-title {
        margin-bottom: 0.75rem !important;
      }

      .faq__content-wrapper {
        margin-top: -0.5rem;
      }
    }

    /* Smooth scrolling for the whole page */
    html {
      scroll-behavior: smooth;
    }

    /* Button animation */
    .faq__toggle-btn {
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .faq__card--expanded .faq__toggle-btn {
      transform: rotate(180deg);
    }

    /* Smooth icon color transition */
    .faq__icon {
      transition: color 0.3s ease, transform 0.3s ease;
    }

    .faq__card:hover .faq__icon {
      transform: scale(1.1);
    }

    .faq__card--expanded .faq__icon {
      color: #1e40af;
    }

    /* Content fade in */
    .faq__content-text {
      animation: faq__fadeIn 0.5s ease forwards;
    }

    @keyframes faq__fadeIn {
      from {
        opacity: 0;
        transform: translateY(10px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Smooth card expansion animation */
    @keyframes faq__cardExpand {
      0% {
        box-shadow: none;
      }

      100% {
        box-shadow: none;
      }
    }

    .faq__card--expanded {
      animation: faq__cardExpand 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    /* Subtle hover effect on cards */
    .faq__card:not(.faq__card--expanded):hover {
      transform: translateY(-2px);
      box-shadow: none;
      border-color: #1e40af;
    }

    /* Dotted background pattern */
    .faq__body {
      background-color: white;
      background-image: radial-gradient(circle, #e5e7eb 1px, transparent 1px);
      background-size: 20px 20px;
      background-position: 0 0, 10px 10px;
    }

    /* Layout grid */
    .faq__layout-grid {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .faq__layout-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }
/* faq section end */