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

/* Hide scrollbar for all browsers */
html::-webkit-scrollbar {
    display: none;
}

html {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

body::-webkit-scrollbar {
    display: none;
}

body {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    height: 100%;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    overflow-x: hidden;
}

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(90deg, #1a2a4e, #2d4a7c);
    color: #ffd700;
    padding: 6px 20px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    border-bottom: 2px solid #4a90e2;
    width: 100%;
}

.announcement-banner-track {
    display: flex;
    white-space: nowrap;
    animation: scroll 6s linear infinite;
}

.announcement-banner-track:hover {
    animation-play-state: paused;
}

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

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

.announcement-banner p {
    font-size: 16px;
    font-weight: 600;
    padding: 0 50px;
    display: inline-block;
}

.announcement-banner i {
    margin-right: 10px;
}

/* Navigation */
nav {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #4a90e2;
    width: 100%;
}

.navbar-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.nav-left-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-item {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* Right Logos */
.nav-right-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.right-logo {
    height: 90px;
    width: 90px;
    object-fit: contain;
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
}

/* Hide mobile close button on desktop */
.mobile-close-btn {
    display: none !important;
}

.hamburger-menu span {
    width: 30px;
    height: 3px;
    background: #60a5fa;
    border-radius: 3px;
    transition: 0.3s;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Navigation Menu */
.nav-center-section {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border-radius: 30px;
    white-space: nowrap;
    transition: 0.2s;
}

.nav-link:hover {
    background: linear-gradient(90deg, #4a90e2, #60a5fa);
    color: #fff;
}

/* Badge */
.badge-new {
    background: linear-gradient(135deg, #ff6b6b, #ff8e53);
    color: white;
    font-size: 10px;
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: 700;
}

/* Dropdown */
.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 42, 78, 0.98);
    border-radius: 15px;
    padding: 12px 0;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: 0.2s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid #4a90e2;
    margin-top: 10px;
}

.dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
}

.dropdown-menu-custom a {
    display: block;
    padding: 12px 24px;
    color: #e5e7eb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.2s;
}

.dropdown-menu-custom a:hover {
    background: rgba(74, 144, 226, 0.2);
    color: #60a5fa;
    padding-left: 30px;
}

/* Hamburger Menu */
@media (max-width: 992px) {
    .hamburger-menu {
        display: flex;
    }

    .nav-center-section {
        position: fixed;
        top: 0;
        left: -100%;
        width: 90%;
        max-width: 360px;
        height: 100vh;
        background: #0a1628;
        transition: 0.3s;
        padding: 80px 0 30px;
        overflow-y: auto;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .nav-center-section.active {
        left: 0;
    }

    /* Close button inside mobile menu */
    .mobile-close-btn {
        display: block !important;
        position: absolute;
        top: 20px;
        right: 20px;
        background: transparent;
        border: none;
        color: #60a5fa;
        font-size: 32px;
        cursor: pointer;
        width: 40px;
        height: 40px;
        padding: 0;
        line-height: 1;
        z-index: 1001;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
        align-items: stretch;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        justify-content: flex-start;
        padding: 20px 24px;
        border-radius: 0;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        border-bottom: 1px solid rgba(74, 144, 226, 0.15);
        white-space: normal;
        line-height: 1.5;
        letter-spacing: 0.3px;
    }

    .nav-link:hover {
        background: rgba(74, 144, 226, 0.2);
        border-radius: 0;
        padding-left: 28px;
    }

    .dropdown-menu-custom {
        position: static;
        opacity: 0;
        visibility: hidden;
        max-height: 0;
        overflow: hidden;
        margin-top: 0;
        background: rgba(30, 58, 90, 0.4);
        border: none;
        border-radius: 0;
        padding: 0;
        box-shadow: none;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .dropdown.active .dropdown-menu-custom {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
        padding: 10px 0;
    }

    .dropdown-menu-custom a {
        padding: 16px 24px 16px 44px;
        font-size: 15px;
        font-weight: 500;
        line-height: 1.5;
        border-bottom: 1px solid rgba(74, 144, 226, 0.08);
        color: #e0e7ff;
    }

    .dropdown-menu-custom a:hover {
        background: rgba(74, 144, 226, 0.18);
        padding-left: 48px;
        color: #fff;
    }

    .nav-right-section {
        gap: 10px;
    }

    .right-logo {
        height: 70px;
        width: 70px;
    }
    
    .logo-item {
        width: 70px;
        height: 70px;
    }
}

@media (max-width: 768px) {
    .announcement-banner p {
        font-size: 14px;
    }

    .navbar-container {
        padding: 12px 20px;
    }

    .logo-item {
        width: 55px;
        height: 55px;
    }
    
    .right-logo {
        height: 55px;
        width: 55px;
    }
}

@media (max-width: 480px) {
    .announcement-banner p {
        font-size: 12px;
    }

    .logo-item {
        width: 45px;
        height: 45px;
    }

    .nav-right-section {
        display: none;
    }
}

/* ============================================ */
/* HERO SECTION STYLES - OPTIMIZED FOR 13" LAPTOPS */
/* ============================================ */

.hero-section {
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 5% 30px;
    overflow: visible;
    min-height: fit-content;
    width: 100%;
}

/* Background Animated Shapes */
.shape-circle-1,
.shape-circle-2,
.shape-blob-1,
.shape-blob-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.shape-circle-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    top: -100px;
    left: -100px;
    animation: float 20s ease-in-out infinite;
}

.shape-circle-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    bottom: -50px;
    right: 10%;
    animation: float 15s ease-in-out infinite reverse;
}

.shape-blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #1e40af, #60a5fa);
    top: 20%;
    right: -150px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 12s ease-in-out infinite;
}

.shape-blob-2 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #3730a3, #818cf8);
    bottom: 10%;
    left: 5%;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
}

/* Hero Content */
.hero-left,
.hero-right {
    position: relative;
    z-index: 10;
}

.hero-left {
    flex: 1;
    max-width: 600px;
    animation: slideInLeft 1s ease-out;
    padding: 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a8a;
    line-height: 1.2;
    margin-bottom: 12px;
}

.hero-title span {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.5;
    margin-bottom: 18px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 32px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6, #1e40af);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6);
}

.btn-secondary {
    background: white;
    color: #1e3a8a;
    border: 2px solid #3b82f6;
}

.btn-secondary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Right Side - Person Container */
.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out;
    padding: 0;
}

.person-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    height: auto;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.gradient-shape-1,
.gradient-shape-2,
.gradient-shape-3 {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.gradient-shape-1 {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(30, 64, 175, 0.15));
    animation: pulse 3s ease-in-out infinite;
}

.gradient-shape-2 {
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(6, 182, 212, 0.2));
    animation: pulse 3s ease-in-out infinite 0.5s;
}

.gradient-shape-3 {
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.25), rgba(59, 130, 246, 0.25));
    animation: pulse 3s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.person-image {
    position: relative;
    z-index: 5;
    width: 90%;
    height: auto;
    border-radius: 20px;
    animation: floatImage 4s ease-in-out infinite;
    max-width: 100%;
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Floating Tech Icons */
.tech-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
    pointer-events: none;
    z-index: 8;
}

.tech-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 9;
    border: 1px solid rgba(59, 130, 246, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0);
}

.tech-icon.show {
    opacity: 1;
    transform: scale(1);
    animation: floatIcon 4s ease-in-out infinite;
}

.tech-icon:hover {
    transform: scale(1.15) translateY(-5px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.tech-icon i,
.tech-icon svg {
    font-size: 28px;
}

.tech-icon.react {
    top: 5%;
    left: 10%;
    animation-delay: 0s;
}

.tech-icon.python {
    top: 7%;
    left: 42%;
    animation-delay: 0.5s;
}

.tech-icon.javascript {
    top: 5%;
    right: 10%;
    animation-delay: 1s;
}

.tech-icon.nodejs {
    top: 30%;
    right: 0%;
    animation-delay: 1.5s;
}

.tech-icon.database {
    bottom: 18%;
    right: 0%;
    animation-delay: 2s;
}

.tech-icon.html {
    bottom: 5%;
    right: 10%;
    animation-delay: 2.5s;
}

.tech-icon.css {
    bottom: 7%;
    left: 42%;
    animation-delay: 3s;
}

.tech-icon.php {
    bottom: 5%;
    left: 10%;
    animation-delay: 3.5s;
}

.tech-icon.vue {
    top: 30%;
    left: 0%;
    animation-delay: 4s;
}

@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(6deg);
    }
}

/* Navigation Arrow - HIDDEN */
.nav-arrow {
    display: none !important;
}

/* Hide any carousel/slider arrows in hero section */
.hero-section .slick-prev,
.hero-section .slick-next,
.hero-section .carousel-control-prev,
.hero-section .carousel-control-next,
.hero-section .swiper-button-prev,
.hero-section .swiper-button-next,
.hero-section .owl-prev,
.hero-section .owl-next,
.hero-section .arrow,
.hero-section .arrow-left,
.hero-section .arrow-right,
.hero-section .prev,
.hero-section .next,
.hero-section button[class*="arrow"],
.hero-section button[class*="prev"],
.hero-section button[class*="next"],
.hero-section a[class*="arrow"],
.hero-section a[class*="prev"],
.hero-section a[class*="next"] {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* 13-INCH LAPTOP OPTIMIZATION (1366px and below) */
@media (max-width: 1366px) {
    .hero-section {
        padding: 20px 4% 25px;
        min-height: fit-content;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 16px;
    }

    .person-container {
        max-width: 500px;
    }

    .tech-icon {
        width: 54px;
        height: 54px;
    }

    .tech-icon i,
    .tech-icon svg {
        font-size: 24px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-section {
        padding: 20px 4% 25px;
        min-height: fit-content;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .person-container {
        max-width: 460px;
    }

    .tech-icon {
        width: 50px;
        height: 50px;
    }

    .tech-icon i,
    .tech-icon svg {
        font-size: 22px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 20px 5% 25px;
        gap: 20px;
        min-height: fit-content;
    }

    .hero-left {
        max-width: 100%;
        margin-bottom: 0;
    }

    .hero-title {
        font-size: 1.85rem;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .person-container {
        max-width: 420px;
    }

    .tech-icon {
        width: 48px;
        height: 48px;
    }

    .tech-icon i,
    .tech-icon svg {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 20px 5% 25px;
        gap: 18px;
    }

    .hero-title {
        font-size: 1.65rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .person-container {
        max-width: 350px;
    }

    .tech-icon {
        width: 44px;
        height: 44px;
    }

    .tech-icon i,
    .tech-icon svg {
        font-size: 19px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 11px 22px;
        font-size: 0.88rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 18px 5% 22px;
        gap: 16px;
    }

    .hero-title {
        font-size: 1.45rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.82rem;
    }

    .person-container {
        max-width: 300px;
    }

    .tech-icon {
        width: 38px;
        height: 38px;
    }

    .tech-icon i,
    .tech-icon svg {
        font-size: 17px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.3rem;
        margin-bottom: 6px;
    }

    .hero-subtitle {
        font-size: 0.75rem;
        margin-bottom: 10px;
    }

    .person-container {
        max-width: 270px;
    }

    .tech-icon {
        width: 36px;
        height: 36px;
    }

    .tech-icon i,
    .tech-icon svg {
        font-size: 16px;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 9px 18px;
        font-size: 0.8rem;
    }
}

/* ===============================
   CONTAINER
================================= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================
   HEADER
================================= */
.academy-header {
    background-color: #0b2a4a;
    padding: 9px 0;
}

.academy-header .header-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    text-align: center;
}

.academy-subheader {
    background-color: #143d66;
    padding: 10px 0;
}

.academy-subheader .subheader-title {
    color: #e6eef7;
    font-size: 16px;
    text-align: center;
}

/* ===============================
   APPLY SECTION
================================= */
.apply-section {
    background-color: #f4f7fb;
    padding: 50px 0;
    overflow: hidden;
}

/* Row */
.apply-row {
    display: flex;
    gap: 15px;
    justify-content: space-between;
}

/* Columns */
.apply-col {
    flex: 1;
    min-width: 0;
}

/* Anchor Link */
.apply-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* Card */
.apply-box {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 30px 15px;
    text-align: center;
    height: 100%;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

/* Hover background effect */
.apply-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b2a4a;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Icon */
.apply-box i {
    font-size: 32px;
    color: #0b2a4a;
    margin-bottom: 12px;
    display: block;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Text */
.apply-box p {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #0b2a4a;
    line-height: 1.4;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

/* Hover */
.apply-box:hover {
    transform: translateY(-6px);
}

.apply-box:hover::before {
    transform: translateY(0);
}

.apply-box:hover i,
.apply-box:hover p {
    color: #ffffff;
}

/* Dark Highlight Card */
.dark-box {
    background-color: #0b2a4a;
}

.dark-box i,
.dark-box p {
    color: #ffffff;
}

/* Dark box hover effect - lighter blue */
.dark-box::before {
    background-color: #1a4d7a;
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 1200px) {
    .apply-row {
        gap: 12px;
    }

    .apply-box {
        padding: 28px 12px;
    }

    .apply-box i {
        font-size: 30px;
    }

    .apply-box p {
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .apply-row {
        flex-wrap: wrap;
    }

    .apply-col {
        flex: 0 1 calc(33.333% - 10px);
    }

    .academy-header .header-title {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .apply-col {
        flex: 0 1 calc(50% - 10px);
    }
}

@media (max-width: 576px) {
    .apply-row {
        flex-direction: column;
    }

    .apply-col {
        flex: 1 1 100%;
    }

    .academy-header .header-title {
        font-size: 24px;
    }

    .apply-section {
        padding: 40px 0;
    }

    .apply-box {
        padding: 35px 25px;
    }

    .apply-box i {
        font-size: 36px;
    }

    .apply-box p {
        font-size: 14px;
    }
}

/* ==================Program Section========================== */

.program-section {
    padding: 30px 0;
    background: #f4f7fb;
}

/* ===== Center Row with 3 Cards ===== */
.program-section .row {
    display: flex !important;
    flex-wrap: nowrap !important;
    justify-content: center;
    gap: 20px;
    overflow-x: visible;
}

/* ===== Card Width ===== */
.program-section .col-md-4 {
    flex: 0 0 auto !important;
    width: 350px;
    max-width: 350px !important;
    padding: 0 !important;
}

/* ===== Card Link Wrapper ===== */
.program-card-link {
    text-decoration: none;
    display: block;
    height: 100%;
}

/* ===== Card ===== */
.program-card {
    height: 100%;
    min-height: 400px;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(6px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    position: relative;
    transition: 0.35s;
    overflow: hidden;
}

.program-card-link:hover .program-card {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(13, 110, 253, 0.18);
}

/* ===== Gradient Border ===== */
.program-card::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 2px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: 0.3s;
}

.program-card-link:hover .program-card::before {
    opacity: 1;
}

/* ===== Icon Base ===== */
.program-icon {
    width: 76px;
    height: 76px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 34px;
    background: #fff;
    animation: float 4s ease-in-out infinite;
    flex-shrink: 0;
}

/* ===== Icon Colors ===== */
.icon-blue {
    color: #0d6efd;
    box-shadow: 0 0 0 9px rgba(13, 110, 253, 0.1);
}

.icon-pink {
    color: #e83e8c;
    box-shadow: 0 0 0 9px rgba(232, 62, 140, 0.12);
}

.icon-green {
    color: #198754;
    box-shadow: 0 0 0 9px rgba(25, 135, 84, 0.12);
}

/* ===== Text ===== */
.program-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #001c4a;
    margin-bottom: 14px;
    line-height: 1.3;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-card p {
    font-size: 14px;
    line-height: 1.65;
    color: #555;
    margin-bottom: 24px;
    flex-grow: 1;
}

/* ===== Button ===== */
.apply-btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 30px;
    background: linear-gradient(135deg, #0d6efd, #6f42c1);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(13, 110, 253, 0.35);
    transition: 0.3s;
    margin-top: auto;
}

.program-card-link:hover .apply-btn {
    transform: translateY(-3px);
    box-shadow: 0 10px 22px rgba(13, 110, 253, 0.45);
}

/* ===== Mobile & Tablet ===== */
@media (max-width: 1200px) {
    .program-section .row {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .program-section .row::-webkit-scrollbar {
        display: none;
    }

    .program-section .col-md-4 {
        min-width: 300px;
        width: 300px;
        max-width: 300px !important;
    }
}

@media (max-width: 768px) {
    .program-section {
        padding: 20px 0;
    }

    .program-section .container {
        padding: 0 15px;
    }

    .program-section .col-md-4 {
        min-width: 280px;
        width: 280px;
        max-width: 280px !important;
    }

    .program-card {
        padding: 28px 20px;
        min-height: 380px;
    }

    .program-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }

    .program-card h4 {
        font-size: 18px;
        min-height: 48px;
    }

    .program-card p {
        font-size: 13.5px;
    }
}

/* ============================================ */

/* =========================
   GLOBAL FONT
========================= */
.about-notice-section,
.about-notice-section * {
    font-family: "Poppins", "Segoe UI", Roboto, Arial, sans-serif;
}

/* =========================
   KEYFRAMES
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(15, 42, 102, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(15, 42, 102, 0.5);
    }
    100% {
        box-shadow: 0 0 0 rgba(15, 42, 102, 0.3);
    }
}

/* =========================
   SECTION WRAPPER
========================= */
.about-notice-section {
    padding: 40px 0;
    background: #f4f6fb;
    animation: fadeUp 0.8s ease forwards;
}

/* =========================
   ROW ALIGNMENT
========================= */
.about-notice-row {
    display: flex;
    gap: 25px;
    align-items: stretch;
}

/* =========================
   CARD BASE
========================= */
.notice-card,
.about-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    animation: fadeUp 0.9s ease forwards;
}

/* =========================
   NOTICE SECTION
========================= */
.notice-card {
    flex: 1;
}

.notice-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #0f2a66;
    border-bottom: 3px solid #0f2a66;
    display: inline-block;
    padding-bottom: 6px;
}

.notice-body {
    max-height: 320px;
    overflow: hidden;
    position: relative;
}

/* Notice Items */
.notice-item {
    padding: 16px;
    border-left: 4px solid #c7d2fe;
    margin-bottom: 14px;
    background: #f8faff;
    border-radius: 8px;
    transition: all 0.3s ease;
    opacity: 0;
    animation: fadeIn 0.6s ease forwards;
}

/* Stagger animation */
.notice-item:nth-child(1) {
    animation-delay: 0.2s;
}

.notice-item:nth-child(2) {
    animation-delay: 0.35s;
}

.notice-item:nth-child(3) {
    animation-delay: 0.5s;
}

.notice-item:nth-child(4) {
    animation-delay: 0.65s;
}

.notice-item:nth-child(5) {
    animation-delay: 0.8s;
}

.notice-item:nth-child(6) {
    animation-delay: 0.95s;
}

.notice-item:hover {
    background: #eef2ff;
    transform: translateY(-2px);
}

.notice-item.highlight {
    border-left-color: #0f2a66;
    background: #eef2ff;
}

.notice-item .date {
    font-size: 13px;
    font-weight: 500;
    color: #0f2a66;
    display: block;
    margin-bottom: 6px;
}

.notice-item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* =========================
   ABOUT SECTION
========================= */
.about-card {
    flex: 1.2;
    display: flex;
    flex-direction: column;
}

.about-card h2 {
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #0f2a66;
}

.about-card p {
    font-size: 14px;
    line-height: 1.8;
    color: #333;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
}

/* =========================
   APPLY BUTTON
========================= */
.about-actions {
    margin-top: 25px;
}

.about-card .apply-btn {
    display: inline-block;
    background: #0f2a66;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: pulseGlow 3s infinite;
}

.about-card .apply-btn:hover {
    background: #081c4a;
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .about-notice-row {
        flex-direction: column;
    }

    .about-card h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .notice-card,
    .about-card {
        padding: 22px;
    }

    .about-card h2 {
        font-size: 24px;
    }

    .about-card p,
    .notice-item p {
        text-align: left;
        text-align: justify;
        hyphens: none;
    }

    .about-card .apply-btn {
        width: 100%;
        text-align: center;
    }
}

/* ===================Industrial Training / Internship Programs======================== */

/* ==========Why Academy of Skill Development (ASD)? */

/* Section Layout */
.asd-section {
    position: relative;
    padding: 30px 20px;
    overflow: hidden;
    background: white;
}

/* Animated gradient background */
.asd-bg-animation {
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #0a3d62, #3c6382, #60a3bc, #82ccdd);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
    opacity: 0.12;
    z-index: 0;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Container */
.asd-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
    align-items: center;
}

/* Left Content */
.asd-left {
    flex: 1;
}

.asd-left h2 {
    font-size: clamp(22px, 4vw, 30px);
    margin-bottom: 20px;
}

/* Accordion (UPDATED CLASS NAMES) */
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}

.faq-title {
    background: none;
    border: none;
    font-size: clamp(16px, 3vw, 18px);
    font-weight: 600;
    padding: 15px 0;
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Accordion Content */
.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: #555;
    font-size: clamp(14px, 2.5vw, 16px);
}

/* Active State */
.faq-item.active .faq-content {
    max-height: 1000px;
    padding-bottom: 15px;
}

/* Icon */
.faq-icon {
    font-size: 22px;
    font-weight: bold;
}

/* Right Image */
.asd-right {
    flex: 1;
    text-align: center;
}

.asd-right img {
    width: 100%;
    max-width: 520px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: floatUpDown 4s ease-in-out infinite;
}

/* Floating Image Keyframes */
@keyframes floatUpDown {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Pause animation on hover */
.asd-right img:hover {
    animation-play-state: paused;
}

/* ---------- RESPONSIVE BREAKPOINTS ---------- */

/* Large Tablets */
@media (max-width: 1024px) {
    .asd-container {
        gap: 25px;
    }
}

/* Tablets */
@media (max-width: 900px) {
    .asd-container {
        flex-direction: column;
        text-align: center;
    }

    .faq-title {
        text-align: left;
    }

    .asd-right {
        margin-top: 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .asd-section {
        padding: 50px 15px;
    }

    .faq-title {
        padding: 12px 0;
    }

    .asd-right img {
        max-width: 100%;
    }
}

/* Small Mobile */
@media (max-width: 400px) {
    .asd-left h2 {
        font-size: 20px;
    }

    .faq-icon {
        font-size: 18px;
    }
}

/* ========== workshop and webinar + partner  */

.workshop-section {
    padding: 30px 0;
    text-align: center;
    background: #fff;
}

.section-title {
    font-size: 36px;
    color: #0b2c4a;
    margin-bottom: 10px;
}

.section-desc {
    max-width: 850px;
    margin: 0 auto 40px;
    color: #555;
    line-height: 1.7;
}

/* ===== SLIDER ===== */
.slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
}

.slider {
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
    overflow-x: auto;
    scrollbar-width: none;
}

.slider::-webkit-scrollbar {
    display: none;
}

.slider img {
    min-width: 280px;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 5;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

/* ===== PARTNER ===== */
.partners-title {
    margin-top: 30px;
    text-align: center;
}

.single-partner {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Responsive Image */
.single-partner img {
    width: 100%;          /* full width of container */
    max-width: 800px;     /* control logo size */
    height: auto;         /* keep aspect ratio */
    object-fit: contain;
    transition: 0.3s ease;
    filter: grayscale(100%);
}

/* Hover Effect */
.single-partner img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* ===== GRID LAYOUT FOR ALL SCREEN ===== */
.partners-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    align-items: center;
}

/* ===== TABLET ===== */
@media (max-width: 1024px) {
    .single-partner img {
        max-width: 180px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 24px;
    }

    .single-partner img {
        max-width: 150px;
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 480px) {
    .section-title {
        font-size: 20px;
    }

    .single-partner img {
        max-width: 400px;
    }
}


/* ===========vision and mission========== */

/* ===== Section ===== */
.vision-mission {
    position: relative;
    padding: 60px 20px;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, #0f2a66 0%, #1a3d8f 50%, #0f2a66 100%);
}

/* Animated Background Pattern */
.vision-mission::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 30, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 30, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 40%);
    z-index: 1;
    animation: backgroundPulse 15s ease-in-out infinite;
}

.vision-mission::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.02) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    z-index: 1;
    opacity: 0.3;
}

@keyframes backgroundPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* Background Image (optional fallback) */
.vm-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.2;
    display: none; /* Hidden by default, no image required */
}

/* Overlay */
.vm-overlay {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: auto;
    background: linear-gradient(135deg, 
        rgba(0, 0, 0, 0.45) 0%, 
        rgba(15, 42, 102, 0.35) 50%, 
        rgba(0, 0, 0, 0.45) 100%
    );
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 50px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInScale 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Grid */
.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* LEFT CARDS */
.vm-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.vm-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.12) 0%, 
        rgba(255, 255, 255, 0.06) 100%
    );
    border-left: 4px solid #ff1e00;
    padding: 25px;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.vm-card:hover::before {
    left: 100%;
}

.vm-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: #ffd700;
    transition: height 0.4s ease;
    border-radius: 0 2px 2px 0;
}

.vm-card:hover::after {
    height: 100%;
}

.vm-card:hover {
    transform: translateY(-8px) translateX(4px);
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.18) 0%, 
        rgba(255, 255, 255, 0.10) 100%
    );
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 30, 0, 0.3);
    border-left-color: #ff4500;
}

.vm-card h3 {
    color: #dbd7af;
    margin-bottom: 12px;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(255, 30, 0, 0.3);
}

.vm-card h3::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ecec63, #e8f05a);
    transition: width 0.4s ease;
}

.vm-card:hover h3::after {
    width: 100%;
}

.vm-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #f0f0f0;
    text-align: justify;
    position: relative;
    z-index: 1;
}

/* RIGHT BANNER */
.vm-banner {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    height: 320px;
    box-shadow: 
        0 12px 35px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.banner-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-track img {
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.4s ease;
}

.vm-banner:hover .banner-track img {
    filter: brightness(1) contrast(1.15);
}

/* Banner Navigation Dots (optional) */
.vm-banner::after {
    content: '';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

/* Floating Animation for Cards */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.vm-card:nth-child(1) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0s;
}

.vm-card:nth-child(2) {
    animation: float 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

/* Responsive */
@media (max-width: 992px) {
    .vm-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vm-banner {
        height: 280px;
    }

    .vm-overlay {
        padding: 35px;
    }

    .vm-card:hover {
        transform: translateY(-6px) translateX(0);
    }
}

@media (max-width: 576px) {
    .vision-mission {
        padding: 40px 15px;
    }

    .vm-overlay {
        padding: 25px;
        border-radius: 12px;
    }

    .vm-card {
        padding: 20px;
    }

    .vm-card h3 {
        font-size: 20px;
    }

    .vm-card p {
        font-size: 14px;
        text-align: left;
    }

    .vm-banner {
        height: 220px;
    }

    .vm-card:nth-child(1),
    .vm-card:nth-child(2) {
        animation: none; /* Disable float on mobile */
    }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus States */
.vm-card:focus-within {
    outline: 3px solid #ff1e00;
    outline-offset: 3px;
}



/* ============================================ */
/* COURSE SECTION STYLES */
/* ============================================ */


.course-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a1929 0%, #0f2744 100%);
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

/* PARTICLE CANVAS */
#particleCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.container {
  position: relative;
  z-index: 1;
}

/* SEARCH BAR STYLES */
.search-bar-wrapper {
  position: relative;
  max-width: 600px;
  margin: 0 auto 60px;
}

.course-search-bar {
  width: 100%;
  padding: 16px 50px 16px 24px;
  border: 2px solid #1e3a5f;
  border-radius: 50px;
  font-size: 16px;
  outline: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  background: rgba(19, 35, 55, 0.9);
  backdrop-filter: blur(10px);
  color: #fff;
}

.course-search-bar::placeholder {
  color: #8899aa;
}

.course-search-bar:focus {
  border-color: #3b82f6;
  box-shadow: 0 8px 30px rgba(59,130,246,0.4);
  transform: translateY(-2px);
}

.search-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: #8899aa;
  pointer-events: none;
  transition: all 0.3s ease;
}

.course-search-bar:focus + .search-icon {
  color: #3b82f6;
}

/* SLIDER WRAPPER WITH NAVIGATION */
.course-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}

/* NAVIGATION BUTTONS */
.slider-nav-btn {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  border: none;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(59,130,246,0.4);
  z-index: 10;
  position: relative;
  overflow: hidden;
}

.slider-nav-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.slider-nav-btn:hover::before {
  width: 100px;
  height: 100px;
}

.slider-nav-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(59,130,246,0.6);
}

.slider-nav-btn:active {
  transform: scale(0.95);
}

.slider-nav-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

/* AUTO-SCROLL CONTAINER */
.course-scroll-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  flex: 1;
  padding: 10px 0;
}

.course-cards-wrapper {
  display: flex;
  gap: 24px;
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* COURSE CARD STYLES */
.course-card {
  flex: 0 0 320px;
  background: rgba(19, 35, 55, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(59,130,246,0.2);
  position: relative;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59,130,246,0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.course-card:hover::before {
  opacity: 1;
}

.course-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 16px 50px rgba(59,130,246,0.4);
  border-color: #3b82f6;
}

.card-image-wrapper {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #1e3a5f 0%, #0f2744 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.card-image-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at center, rgba(59,130,246,0.15) 0%, transparent 70%);
}

.card-image-wrapper img {
  width: 90px;
  height: 90px;
  object-fit: contain;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card:hover .card-image-wrapper img {
  transform: scale(1.1);
}

.card-content {
  padding: 24px;
}

.course-card h2 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
  min-height: 54px;
  line-height: 1.5;
  transition: color 0.3s ease;
}

.course-card:hover h2 {
  color: #60a5fa;
}

.rating {
  font-size: 14px;
  color: #8899aa;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.rating i {
  color: #fbbf24;
  font-size: 16px;
}

.rating strong {
  color: #fff;
  font-size: 15px;
}

.price {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.price .old {
  text-decoration: line-through;
  color: #6b7280;
  font-size: 14px;
}

.price .discount {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(16,185,129,0.4);
}

.price .new {
  color: #3b82f6;
  font-size: 22px;
  font-weight: 700;
}

.enroll-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.enroll-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.enroll-btn:hover::before {
  width: 300px;
  height: 300px;
}

.enroll-btn:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59,130,246,0.5);
}

.enroll-btn i {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.enroll-btn:hover i {
  transform: translateX(6px);
}

/* PROGRESS DOTS */
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  padding: 15px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(59,130,246,0.3);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
}

.slider-dot:hover {
  background: rgba(59,130,246,0.6);
  transform: scale(1.2);
}

.slider-dot.active {
  width: 30px;
  border-radius: 5px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 2px 10px rgba(59,130,246,0.5);
}

/* RESPONSIVE */

/* Large Tablets and Below */
@media (max-width: 1024px) {
  .course-section {
    padding: 70px 20px;
  }

  .search-bar-wrapper {
    max-width: 550px;
  }

  .course-card {
    flex: 0 0 300px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .course-section {
    padding: 60px 15px;
  }

  .search-bar-wrapper {
    margin-bottom: 40px;
    max-width: 90%;
  }

  .slider-nav-btn {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .course-slider-wrapper {
    gap: 12px;
  }

  .course-card {
    flex: 0 0 280px;
  }
  
  .course-search-bar {
    font-size: 15px;
    padding: 14px 45px 14px 20px;
  }
  
  .card-image-wrapper {
    height: 150px;
  }
  
  .card-image-wrapper img {
    width: 75px;
    height: 75px;
  }

  .course-card h2 {
    font-size: 16px;
    min-height: 48px;
  }

  .price .new {
    font-size: 20px;
  }

  .enroll-btn {
    padding: 12px;
    font-size: 14px;
  }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 640px) {
  .course-section {
    padding: 50px 10px;
  }

  .search-bar-wrapper {
    max-width: 95%;
    margin-bottom: 35px;
  }

  .course-search-bar {
    padding: 12px 40px 12px 18px;
    font-size: 14px;
  }

  .search-icon {
    right: 18px;
    font-size: 18px;
  }

  .slider-nav-btn {
    width: 44px;
    height: 44px;
    font-size: 19px;
  }

  .course-card {
    flex: 0 0 260px;
  }

  .card-content {
    padding: 20px;
  }

  .slider-dots {
    margin-top: 25px;
    padding: 10px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }

  .slider-dot.active {
    width: 24px;
  }
}

/* Mobile Portrait */
@media (max-width: 480px) {
  .course-section {
    padding: 40px 10px;
  }

  .search-bar-wrapper {
    max-width: 100%;
    margin-bottom: 30px;
  }

  .course-search-bar {
    padding: 11px 38px 11px 16px;
    font-size: 13px;
  }

  .slider-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .course-slider-wrapper {
    gap: 8px;
  }

  .course-card {
    flex: 0 0 240px;
  }

  .card-image-wrapper {
    height: 130px;
    padding: 20px;
  }

  .card-image-wrapper img {
    width: 65px;
    height: 65px;
  }

  .card-content {
    padding: 18px;
  }

  .course-card h2 {
    font-size: 15px;
    min-height: 45px;
    margin-bottom: 12px;
  }

  .rating {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .rating i {
    font-size: 14px;
  }

  .rating strong {
    font-size: 13px;
  }

  .price {
    margin-bottom: 16px;
    gap: 8px;
  }

  .price .old {
    font-size: 12px;
  }

  .price .discount {
    padding: 3px 8px;
    font-size: 10px;
  }

  .price .new {
    font-size: 18px;
  }

  .enroll-btn {
    padding: 11px;
    font-size: 13px;
  }

  .enroll-btn i {
    font-size: 13px;
  }

  .slider-dots {
    margin-top: 20px;
    padding: 8px;
    gap: 8px;
  }

  .slider-dot {
    width: 7px;
    height: 7px;
  }

  .slider-dot.active {
    width: 20px;
  }
}

/* Small Mobile (iPhone SE, etc.) */
@media (max-width: 375px) {
  .course-section {
    padding: 35px 8px;
  }

  .course-card {
    flex: 0 0 220px;
  }

  .slider-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .course-search-bar {
    padding: 10px 36px 10px 14px;
    font-size: 12px;
  }

  .search-icon {
    right: 14px;
    font-size: 16px;
  }

  .card-image-wrapper {
    height: 120px;
  }

  .card-image-wrapper img {
    width: 60px;
    height: 60px;
  }

  .course-card h2 {
    font-size: 14px;
    min-height: 42px;
  }

  .price .new {
    font-size: 16px;
  }

  .enroll-btn {
    padding: 10px;
    font-size: 12px;
  }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
  .slider-nav-btn:hover {
    transform: scale(1);
  }

  .slider-nav-btn:active {
    transform: scale(0.9);
  }

  .course-card:hover {
    transform: none;
  }

  .enroll-btn:hover {
    transform: none;
  }

  .enroll-btn:active {
    transform: scale(0.95);
  }

  /* Better tap targets for mobile */
  .slider-nav-btn {
    min-width: 44px;
    min-height: 44px;
  }

  .enroll-btn {
    min-height: 44px;
  }

  .slider-dot {
    min-width: 32px;
    min-height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-dot::after {
    content: '';
    width: 100%;
    height: 100%;
    border-radius: 50%;
  }
}
/* ============================================ */
/* ADDITIONAL ENHANCEMENTS */
/* ============================================ */

/* Filter clear button */
.filter-clear-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: transparent;
    border: 2px solid #3b82f6;
    color: #3b82f6;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-size: 0.95rem;
}

.filter-clear-btn:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Loading state */
.course-card.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Empty state */
.no-courses {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
    grid-column: 1 / -1;
}

.no-courses h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #475569;
}

/* Hidden class for filtering */
.hidden {
    display: none !important;
}

/* ================= BUSINESS CARD FOOTER ================= */
.business-card-footer {
    background: #e8eef3;
    padding: 60px 20px 0;
    position: relative;
    overflow: hidden;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 280px 1fr 1fr 320px;
    gap: 60px;
    align-items: start;
    padding-bottom: 130px;
    position: relative;
    z-index: 1;
}

/* ================= LOGO SECTION ================= */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 10px;
}

.logo-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 6px solid #2d4a6f;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(45, 74, 111, 0.15);
    position: relative;
    overflow: hidden;
}

.logo-image {
    width: 85%;
    height: 85%;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 60px;
    font-weight: 800;
    color: #2d4a6f;
    margin: 0;
    letter-spacing: 3px;
    display: none;
}

.logo-circle:not(:has(img[src])) .logo-text,
.logo-image:not([src]) + .logo-text {
    display: block;
}

/* ================= HEADING STYLES ================= */
.footer-heading {
    font-size: 17px;
    font-weight: 700;
    color: #2d4a6f;
    margin-bottom: 30px;
    letter-spacing: 1.5px;
}

/* ================= CONTACT SECTION ================= */
.footer-contact-section {
    padding-top: 10px;
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    background: #3d5a7f;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-wrapper i {
    color: #ffffff;
    font-size: 20px;
}

/* ================= OFFICE SECTION ================= */
.footer-office-section {
    padding-top: 10px;
}

.office-details p {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 10px;
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
}

/* ================= SOCIAL SECTION ================= */
.footer-social-section {
    padding-top: 10px;
}

.social-icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.social-link {
    width: 58px;
    height: 58px;
    background: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 10px rgba(45, 74, 111, 0.12);
}

.social-link i {
    font-size: 28px;
    color: #2d4a6f;
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(45, 74, 111, 0.25);
}

.social-link.facebook:hover {
    background: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(135deg, #e4405f 0%, #c13584 50%, #833ab4 100%);
}

.social-link.youtube:hover {
    background: #ff0000;
}

.social-link:hover i {
    color: #ffffff;
}

/* Quality Badge */
.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #3d5a7f;
    color: #ffffff;
    padding: 15px 28px;
    border-radius: 35px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 3px 12px rgba(61, 90, 127, 0.25);
}

.quality-badge i {
    font-size: 24px;
    color: #fbbf24;
}

/* ================= WAVE DECORATION ================= */
.footer-wave {
    position: absolute;
    bottom: 62px;
    left: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    z-index: 0;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ================= FOOTER BOTTOM - COPYRIGHT SECTION ================= */
.footer-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #1e3142;
    padding: 20px 30px;
    z-index: 1;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.copyright-left p {
    margin: 0;
    font-size: 14px;
    color: #cbd5e1;
    line-height: 1.7;
}

.company-name {
    font-weight: 600;
    color: #ffffff;
    margin-top: 2px;
}

.copyright-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.copyright-right a {
    font-size: 14px;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-right a:hover {
    color: #ffffff;
}

.separator {
    color: #5a6c7d;
    font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1200px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
        padding-bottom: 150px;
    }

    .footer-logo-section {
        grid-column: 1 / -1;
    }

    .logo-circle {
        width: 220px;
        height: 220px;
    }

    .footer-wave {
        bottom: 72px;
    }
}

@media (max-width: 768px) {
    .business-card-footer {
        padding: 40px 20px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        padding-bottom: 170px;
    }

    .logo-circle {
        width: 200px;
        height: 200px;
    }

    .logo-text {
        font-size: 50px;
    }

    .footer-heading {
        font-size: 16px;
    }

    .contact-details p,
    .office-details p {
        font-size: 15px;
    }

    .icon-wrapper {
        width: 44px;
        height: 44px;
    }

    .icon-wrapper i {
        font-size: 18px;
    }

    .social-link {
        width: 54px;
        height: 54px;
    }

    .social-link i {
        font-size: 26px;
    }

    .footer-wave {
        bottom: 82px;
        height: 100px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .copyright-left p {
        font-size: 13px;
    }

    .copyright-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .copyright-right a {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        padding-bottom: 190px;
    }

    .logo-circle {
        width: 180px;
        height: 180px;
    }

    .logo-text {
        font-size: 44px;
    }

    .quality-badge {
        padding: 13px 24px;
        font-size: 14px;
    }

    .quality-badge i {
        font-size: 22px;
    }

    .footer-bottom {
        padding: 18px 20px;
    }

    .footer-wave {
        bottom: 92px;
        height: 90px;
    }
}


/* popup css code from here */

        .modal-backdrop-wrapper {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.75);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1000;
            animation: fadeIn 0.3s ease-in;
            padding: 8px;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                transform: translateY(20px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .dialog-box-main {
            background: white;
            border-radius: 10px;
            max-width: 500px;
            width: 100%;
            max-height: 98vh;
            overflow-y: auto;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.5);
            animation: slideUp 0.4s ease-out;
            position: relative;
        }

        .dismiss-button-circle {
            position: absolute;
            top: 6px;
            right: 6px;
            background: white;
            border: 2px solid #1e3c72;
            cursor: pointer;
            color: #1e3c72;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            transition: all 0.3s ease;
            z-index: 10;
            font-size: 16px;
        }

        .dismiss-button-circle:hover {
            background: #1e3c72;
            color: white;
            transform: rotate(90deg);
        }

        .banner-top-section {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
            padding: 14px 10px;
            text-align: center;
            border-radius: 10px 10px 0 0;
        }

        .banner-top-section h1 {
            font-size: 0.95rem;
            margin-bottom: 6px;
            font-weight: 700;
            line-height: 1.3;
        }

        .banner-top-section .program-types {
            font-size: 0.62rem;
            opacity: 0.95;
            line-height: 1.2;
        }

        .certification-ribbon-container {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 8px 6px;
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 4px;
            border-bottom: 2px solid #1e3c72;
        }

        .certification-badge-single {
            text-align: center;
            padding: 4px;
            transition: transform 0.2s;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 6px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .certification-badge-single:hover {
            transform: translateY(-2px);
            box-shadow: 0 3px 8px rgba(30, 60, 114, 0.2);
        }

        .badge-symbol-icon {
            font-size: 1.4rem;
            color: #1e3c72;
            margin-bottom: 2px;
        }

        .badge-title-text {
            color: #1e3c72;
            font-weight: 700;
            font-size: 0.6rem;
            line-height: 1.1;
        }

        .badge-subtitle-text {
            color: #666;
            font-size: 0.5rem;
            line-height: 1;
        }

        .main-content-area {
            padding: 14px 10px;
        }

        .heading-primary-large {
            text-align: center;
            color: #1e3c72;
            font-size: 1rem;
            margin-bottom: 3px;
            font-weight: 700;
        }

        .heading-secondary-small {
            text-align: center;
            color: #666;
            font-size: 0.75rem;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .image-slider-container {
            position: relative;
            margin: 12px 0;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
        }

        .slider-viewport-wrapper {
            overflow: hidden;
            position: relative;
        }

        .slides-track-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .single-slide-item {
            min-width: 100%;
            position: relative;
        }

        .single-slide-item img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            display: block;
        }

        .partnership-label-tag {
            position: absolute;
            bottom: 10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, rgba(30, 60, 114, 0.95) 0%, rgba(42, 82, 152, 0.95) 100%);
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-size: 0.62rem;
            font-weight: 600;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.4);
            display: flex;
            align-items: center;
            gap: 4px;
            z-index: 2;
            backdrop-filter: blur(5px);
        }

        .navigation-control-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.95);
            border: 2px solid #1e3c72;
            color: #1e3c72;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            transition: all 0.3s ease;
            font-size: 16px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }

        .navigation-control-button:hover,
        .navigation-control-button:active {
            background: #1e3c72;
            color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .nav-button-left {
            left: 8px;
        }

        .nav-button-right {
            right: 8px;
        }

        .slide-position-markers {
            display: flex;
            justify-content: center;
            gap: 5px;
            padding: 8px 0;
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
        }

        .position-marker-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.6);
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 1px 3px rgba(0,0,0,0.3);
        }

        .position-marker-dot.selected-marker {
            background: white;
            width: 20px;
            border-radius: 4px;
        }

        .cta-buttons-row {
            display: flex;
            gap: 6px;
            margin-top: 12px;
            padding-bottom: 12px;
        }

        .interactive-button-styled {
            flex: 1;
            padding: 8px 12px;
            font-size: 0.65rem;
            font-weight: 600;
            border: none;
            border-radius: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.3px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 4px;
        }

        .interactive-button-styled:hover,
        .interactive-button-styled:active {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }

        .interactive-button-styled i {
            font-size: 0.85rem;
        }

        .button-theme-blue {
            background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
            color: white;
        }

        .button-theme-green {
            background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
            color: white;
        }

        .button-theme-cyan {
            background: linear-gradient(135deg, #17a2b8 0%, #20c9e3 100%);
            color: white;
        }

        .countdown-progress-indicator {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 3px;
            background: linear-gradient(90deg, #28a745 0%, #17a2b8 100%);
            width: 100%;
            animation: timerProgress 30s linear;
            z-index: 11;
            border-radius: 0 0 10px 10px;
        }

        @keyframes timerProgress {
            from { width: 100%; }
            to { width: 0%; }
        }

        /* Mobile optimizations */
        @media (max-width: 768px) {
            .dialog-box-main {
                max-width: 96%;
                max-height: 96vh;
            }

            .banner-top-section h1 {
                font-size: 0.85rem;
            }

            .banner-top-section .program-types {
                font-size: 0.58rem;
            }

            .single-slide-item img {
                height: 140px;
            }

            .heading-primary-large {
                font-size: 0.9rem;
            }

            .heading-secondary-small {
                font-size: 0.7rem;
            }
        }

        @media (max-width: 480px) {

            .modal-backdrop-wrapper {
                padding: 5px;
            }

            .dialog-box-main {
                max-width: 98%;
                border-radius: 8px;
            }

            .banner-top-section {
                padding: 10px 8px;
                border-radius: 8px 8px 0 0;
            }

            .banner-top-section h1 {
                font-size: 0.78rem;
            }

            .banner-top-section .program-types {
                font-size: 0.54rem;
            }

            .main-content-area {
                padding: 10px 8px;
            }

            .single-slide-item img {
                height: 120px;
            }

            .interactive-button-styled {
                font-size: 0.6rem;
                padding: 7px 10px;
                gap: 3px;
            }

            .interactive-button-styled i {
                font-size: 0.75rem;
            }

            .partnership-label-tag {
                font-size: 0.56rem;
                padding: 3px 10px;
            }

            .badge-symbol-icon {
                font-size: 1.2rem;
            }

            .badge-title-text {
                font-size: 0.55rem;
            }

            .badge-subtitle-text {
                font-size: 0.48rem;
            }
        }

        @media (max-width: 360px) {
            .banner-top-section h1 {
                font-size: 0.72rem;
            }

            .banner-top-section .program-types {
                font-size: 0.5rem;
            }

            .single-slide-item img {
                height: 100px;
            }

            .interactive-button-styled {
                font-size: 0.55rem;
                padding: 6px 8px;
            }

            .interactive-button-styled i {
                font-size: 0.7rem;
            }

            .navigation-control-button {
                width: 26px;
                height: 26px;
                font-size: 14px;
            }

            .badge-symbol-icon {
                font-size: 1rem;
            }
        }

        /* Scrollbar styling */
        .dialog-box-main::-webkit-scrollbar {
            width: 5px;
        }

        .dialog-box-main::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        .dialog-box-main::-webkit-scrollbar-thumb {
            background: #1e3c72;
            border-radius: 3px;
        }

        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }