/* ============================================
   Data Science & Analyst Page Styles
   ============================================ */

/* Hero Section */
.data-science-hero {
    position: relative;
    background: linear-gradient(135deg, #dde9f7 0%, #c8ddf2 50%, #f0f5fa 100%);
    padding: 0;
    overflow: hidden;
}

.data-science-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle, rgba(61, 78, 122, 0.05) 2px, transparent 2px),
        radial-gradient(circle at 20% 50%, rgba(61, 78, 122, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(41, 98, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(0, 200, 215, 0.1) 0%, transparent 50%);
    background-size: 30px 30px, 100% 100%, 100% 100%, 100% 100%;
    background-position: 0 0, 0 0, 0 0, 0 0;
    pointer-events: none;
}

.data-science-hero::after {
    content: '';
    position: absolute;
    top: -30%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(41, 98, 255, 0.2) 0%, rgba(61, 78, 122, 0.15) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

/* Glowing Animation */
@keyframes pulseGlow {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-overlay {
    padding: 120px 0 80px;
    position: relative;
    z-index: 1;
}

/* Additional Glowing Orbs */
.hero-overlay::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 200, 215, 0.25) 0%, rgba(0, 200, 215, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulseGlowCyan 10s ease-in-out infinite 2s;
    z-index: 0;
}

@keyframes pulseGlowCyan {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.08);
    }
}

/* Decorative Elements */
.data-science-hero .hero-overlay::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(61, 78, 122, 0.5) 20%,
        rgba(41, 98, 255, 0.6) 40%, 
        rgba(0, 200, 215, 0.7) 50%,
        rgba(41, 98, 255, 0.6) 60%, 
        rgba(61, 78, 122, 0.5) 80%, 
        transparent 100%);
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 200, 215, 0.3);
}

/* Floating Shapes Animation - Removed */

/* Light Beams Effect */
.data-science-hero .hero-content::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: 
        conic-gradient(from 0deg at 50% 50%, 
            transparent 0deg,
            rgba(41, 98, 255, 0.08) 45deg,
            transparent 90deg,
            rgba(0, 200, 215, 0.08) 180deg,
            transparent 225deg,
            rgba(61, 78, 122, 0.06) 270deg,
            transparent 360deg);
    border-radius: 50%;
    animation: rotateBeams 30s linear infinite;
    z-index: -1;
    opacity: 0.7;
}

@keyframes rotateBeams {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Sparkle Effects */
@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

.data-science-hero .hero-content::after {
    content: '';
    position: absolute;
    top: 15%;
    right: 10%;
    width: 8px;
    height: 8px;
    background: radial-gradient(circle, rgba(0, 200, 215, 0.9) 0%, transparent 70%);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    z-index: -1;
    box-shadow: 
        0 0 10px rgba(0, 200, 215, 0.6),
        20px 30px 0 0 rgba(41, 98, 255, 0.6),
        -25px 15px 0 0 rgba(61, 78, 122, 0.5),
        40px -10px 0 0 rgba(0, 200, 215, 0.5);
}

/* Floating Data Science Icons */
.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.floating-icon {
    position: absolute;
    color: rgba(61, 78, 122, 0.35);
    font-size: 35px;
    opacity: 0.85;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 15px rgba(41, 98, 255, 0.5));
    animation-timing-function: ease-in-out;
}

/* Individual Icon Animations */
@keyframes float1 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.85;
    }
    25% {
        transform: translateY(-30px) translateX(10px) rotate(5deg) scale(1.1);
        opacity: 1;
    }
    50% {
        transform: translateY(-50px) translateX(-10px) rotate(-5deg) scale(1);
        opacity: 0.85;
    }
    75% {
        transform: translateY(-30px) translateX(10px) rotate(3deg) scale(1.05);
        opacity: 0.95;
    }
}

@keyframes float2 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.85;
    }
    33% {
        transform: translateY(-40px) translateX(-15px) rotate(-7deg) scale(1.12);
        opacity: 1;
    }
    66% {
        transform: translateY(-60px) translateX(15px) rotate(7deg) scale(1.05);
        opacity: 0.92;
    }
}

@keyframes float3 {
    0%, 100% {
        transform: translateY(0px) translateX(0px) rotate(0deg) scale(1);
        opacity: 0.85;
    }
    50% {
        transform: translateY(-45px) translateX(20px) rotate(10deg) scale(1.15);
        opacity: 1;
    }
}

/* Icon Positions and Styles */
.icon-1 {
    top: 15%;
    left: 10%;
    color: rgba(41, 98, 255, 0.5);
    font-size: 38px;
    animation: float1 8s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(41, 98, 255, 0.7));
}

.icon-2 {
    top: 20%;
    right: 15%;
    color: rgba(0, 200, 215, 0.55);
    font-size: 32px;
    animation: float2 10s ease-in-out infinite 1s;
    filter: drop-shadow(0 0 25px rgba(0, 200, 215, 0.8));
}

.icon-3 {
    top: 45%;
    left: 8%;
    color: rgba(61, 78, 122, 0.45);
    font-size: 42px;
    animation: float3 12s ease-in-out infinite 2s;
    filter: drop-shadow(0 0 18px rgba(61, 78, 122, 0.6));
}

.icon-4 {
    top: 35%;
    right: 12%;
    color: rgba(41, 98, 255, 0.48);
    font-size: 35px;
    animation: float1 9s ease-in-out infinite 3s;
    filter: drop-shadow(0 0 22px rgba(41, 98, 255, 0.7));
}

.icon-5 {
    top: 60%;
    left: 15%;
    color: rgba(0, 200, 215, 0.5);
    font-size: 37px;
    animation: float2 11s ease-in-out infinite 4s;
    filter: drop-shadow(0 0 25px rgba(0, 200, 215, 0.75));
}

.icon-6 {
    top: 55%;
    right: 10%;
    color: rgba(61, 78, 122, 0.5);
    font-size: 33px;
    animation: float3 10s ease-in-out infinite 5s;
    filter: drop-shadow(0 0 20px rgba(61, 78, 122, 0.65));
}

.icon-7 {
    top: 25%;
    left: 25%;
    color: rgba(41, 98, 255, 0.45);
    font-size: 30px;
    animation: float1 13s ease-in-out infinite 1.5s;
    filter: drop-shadow(0 0 18px rgba(41, 98, 255, 0.65));
}

.icon-8 {
    top: 50%;
    right: 25%;
    color: rgba(0, 200, 215, 0.52);
    font-size: 34px;
    animation: float2 9.5s ease-in-out infinite 2.5s;
    filter: drop-shadow(0 0 24px rgba(0, 200, 215, 0.75));
}

.icon-9 {
    top: 70%;
    left: 20%;
    color: rgba(61, 78, 122, 0.48);
    font-size: 36px;
    animation: float3 11.5s ease-in-out infinite 3.5s;
    filter: drop-shadow(0 0 20px rgba(61, 78, 122, 0.6));
}

.icon-10 {
    top: 65%;
    right: 20%;
    color: rgba(41, 98, 255, 0.5);
    font-size: 32px;
    animation: float1 10.5s ease-in-out infinite 4.5s;
    filter: drop-shadow(0 0 22px rgba(41, 98, 255, 0.7));
}

/* Organization Header */
.organization-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.org-logo img {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 2px 8px rgba(61, 78, 122, 0.15));
}

.org-name {
    font-size: 18px;
    font-weight: 700;
    color: #3d4e7a;
    letter-spacing: 2px;
    margin: 0;
    text-transform: uppercase;
}

/* Hero Content */
.hero-content {
    text-align: center;
    padding: 40px 0 60px;
    position: relative;
    z-index: 2;
}

.main-title {
    font-size: 56px;
    font-weight: 800;
    color: #3d4e7a;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: capitalize;
    text-shadow: 
        0 0 30px rgba(41, 98, 255, 0.15),
        0 0 60px rgba(0, 200, 215, 0.1);
}

.financing-scheme {
    font-size: 22px;
    font-weight: 600;
    color: #0d3e6e;
    margin-bottom: 40px;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.btn-hero {
    padding: 16px 45px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #3d4e7a;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: capitalize;
}

.btn-register {
    background-color: transparent;
    color: #3d4e7a;
}

.btn-register:hover {
    background: linear-gradient(135deg, #3d4e7a 0%, #2962ff 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(61, 78, 122, 0.4),
        0 0 30px rgba(41, 98, 255, 0.3);
    border-color: #2962ff;
}

.btn-contact {
    background-color: transparent;
    color: #3d4e7a;
}

.btn-contact:hover {
    background: linear-gradient(135deg, #00c8d7 0%, #0ea5b5 100%);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 25px rgba(0, 200, 215, 0.4),
        0 0 30px rgba(0, 200, 215, 0.3);
    border-color: #00c8d7;
}

/* Hero Image Section */
.hero-image-section {
    position: relative;
    width: 100%;
    margin-top: 0;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
}

.image-item {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Program Overview Section */
.program-overview {
    background: #ffffff;
}

.section-heading h5 {
    color: #3d4e7a;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-heading h2 {
    color: #0d3e6e;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
}

/* Why Join Us Section */
.why-join-us {
    padding: 0;
    margin: 0;
}

.why-join-us .section-title {
    background-color: #f5f7fa;
    padding: 50px 20px;
    text-align: center;
    margin: 0;
}

.why-join-us .section-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #000000;
    margin: 0;
    text-transform: capitalize;
}

.benefits-list {
    width: 100%;
}

.benefit-item {
    width: 100%;
    padding: 45px 20px;
    text-align: center;
    margin: 0;
    border: none;
}

.benefit-item h3 {
    color: #ffffff;
    font-size: 26px;
    font-weight: 600;
    margin: 0;
    text-transform: capitalize;
}

/* Benefit Color Variations */
.benefit-cyan {
    background-color: #00c8d7;
}

.benefit-teal {
    background-color: #1b7f8e;
}

.benefit-dark-blue {
    background-color: #0a4272;
}

.benefit-darker-blue {
    background-color: #0a2f52;
}

.benefit-very-dark {
    background-color: #0d1b2a;
}

.benefit-purple {
    background-color: #4158d0;
}

.benefit-cyan-2 {
    background-color: #0ea5b5;
}

.benefit-dark-teal {
    background-color: #0f5257;
}

.benefit-blue {
    background-color: #2962ff;
}

/* Eligibility Section */
.eligibility-section {
    padding: 0;
    margin: 0;
    background-color: #e8eef5;
}

.eligibility-left-section {
    width: 100%;
    height: 100%;
    background-color: #e8eef5;
    padding: 60px 40px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.eligibility-title {
    font-size: 52px;
    font-weight: 800;
    color: #3d4e7a;
    margin-bottom: 30px;
    font-style: italic;
}

.eligibility-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.eligibility-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
}

.eligibility-content {
    padding: 60px 40px 60px 60px;
    background-color: #e8eef5;
}

.eligibility-header {
    margin-bottom: 40px;
}

.eligibility-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #3d4e7a;
    line-height: 1.6;
    margin: 0;
}

.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.requirement-item {
    padding: 30px 40px;
    margin-bottom: 0;
}

.requirement-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.requirement-dark {
    background: linear-gradient(135deg, #0a1f44 0%, #1e3a6e 100%);
    color: #ffffff;
}

.requirement-dark h3 {
    color: #ffffff;
}

.requirement-light {
    background-color: #ffffff;
    color: #000000;
}

.requirement-light h3 {
    color: #000000;
}

.requirement-gradient {
    background: linear-gradient(135deg, #0a1f44 0%, #2962ff 100%);
    color: #ffffff;
}

.requirement-gradient h3 {
    color: #ffffff;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
    position: relative;
}

.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.1) 10px,
        rgba(255, 255, 255, 0.1) 20px
    );
    pointer-events: none;
}

.courses-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.courses-title {
    font-size: 48px;
    font-weight: 800;
    color: #3d4e7a;
    margin-bottom: 50px;
    text-transform: capitalize;
}

.courses-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
}

.course-item {
    padding: 30px 40px;
    margin-bottom: 0;
    text-align: center;
}

.course-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.course-gradient {
    background: linear-gradient(135deg, #000000 0%, #2962ff 100%);
    color: #ffffff;
}

.course-gradient h3 {
    color: #ffffff;
}

.course-plain {
    background-color: #ffffff;
    color: #000000;
}

.course-plain h3 {
    color: #000000;
}

/* Details Programme Section */
.details-programme {
    background: linear-gradient(135deg, #000000 0%, #0a1f44 30%, #1e3a6e 60%, #3d4e7a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.programme-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.programme-image {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.programme-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.social-media-icons {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #ffffff;
    font-size: 32px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.2);
    color: #00c8d7;
}

/* TikTok Icon Special Styling */
.tiktok-icon {
    background: #000000;
    border-radius: 15%;
    padding: 8px;
}

.tiktok-icon i {
    background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 50%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 32px;
}

.tiktok-icon:hover {
    background: linear-gradient(135deg, #25F4EE 0%, #FE2C55 100%);
}

.tiktok-icon:hover i {
    -webkit-text-fill-color: #ffffff;
    color: #ffffff;
}

.programme-content {
    padding: 60px 80px 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.programme-title {
    font-size: 56px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    text-transform: capitalize;
}

.programme-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 3px;
    margin-bottom: 60px;
}

.programme-buttons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    width: 100%;
    max-width: 500px;
}

.btn-programme {
    padding: 20px 40px;
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: block;
}

.btn-programme:hover {
    background-color: #ffffff;
    color: #1e3a6e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .main-title {
        font-size: 48px;
    }

    .org-name {
        font-size: 16px;
    }

    .org-logo img {
        height: 50px;
    }
}

@media (max-width: 991px) {
    .main-title {
        font-size: 42px;
    }

    .financing-scheme {
        font-size: 20px;
    }

    .btn-hero {
        padding: 14px 35px;
        font-size: 16px;
    }

    .organization-header {
        flex-direction: column;
        gap: 15px;
    }

    .org-name {
        font-size: 14px;
        text-align: center;
    }

    .why-join-us .section-title h2 {
        font-size: 36px;
    }

    .benefit-item h3 {
        font-size: 22px;
    }

    .eligibility-left-section {
        padding: 55px 35px 35px;
    }

    .eligibility-title {
        font-size: 44px;
        margin-bottom: 28px;
    }

    .eligibility-subtitle {
        font-size: 16px;
    }

    .requirement-item h3 {
        font-size: 22px;
    }

    .eligibility-content {
        padding: 50px 30px;
    }

    .courses-title {
        font-size: 40px;
    }

    .course-item h3 {
        font-size: 22px;
    }

    .course-item {
        padding: 25px 30px;
    }

    .programme-image {
        width: 350px;
        height: 350px;
    }

    .programme-title {
        font-size: 48px;
    }

    .programme-content {
        padding: 50px 40px;
    }

    .social-icon {
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .hero-overlay {
        padding: 100px 0 60px;
    }

    .main-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    /* Reduce number of floating icons on mobile */
    .icon-2, .icon-4, .icon-6, .icon-8, .icon-10 {
        display: none;
    }

    .floating-icon {
        font-size: 28px !important;
        opacity: 0.75 !important;
    }

    .financing-scheme {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-hero {
        width: 100%;
        max-width: 300px;
        padding: 14px 30px;
        font-size: 16px;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .image-item {
        height: 200px;
    }

    .org-logo img {
        height: 40px;
    }

    .org-name {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .why-join-us .section-title h2 {
        font-size: 32px;
    }

    .why-join-us .section-title {
        padding: 40px 15px;
    }

    .benefit-item {
        padding: 35px 15px;
    }

    .benefit-item h3 {
        font-size: 20px;
    }

    .eligibility-left-section {
        padding: 50px 30px 30px;
    }

    .eligibility-image img {
        max-width: 350px;
    }

    .eligibility-content {
        padding: 40px 20px;
    }

    .eligibility-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .courses-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .course-item h3 {
        font-size: 20px;
    }

    .course-item {
        padding: 25px 20px;
    }

    .eligibility-subtitle {
        font-size: 15px;
    }

    .eligibility-header {
        margin-bottom: 30px;
    }

    .requirement-item {
        padding: 25px 20px;
    }

    .requirement-item h3 {
        font-size: 20px;
    }

    .details-programme {
        padding: 60px 0;
    }

    .programme-left {
        padding: 30px 20px;
    }

    .programme-image {
        width: 280px;
        height: 280px;
        margin-bottom: 30px;
    }

    .social-media-icons {
        gap: 30px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 24px;
    }

    .programme-content {
        padding: 40px 20px;
        align-items: center;
        text-align: center;
    }

    .programme-title {
        font-size: 40px;
    }

    .programme-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }

    .programme-buttons {
        max-width: 100%;
    }

    .btn-programme {
        padding: 18px 30px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .main-title {
        font-size: 28px;
    }

    .financing-scheme {
        font-size: 16px;
    }

    .btn-hero {
        padding: 12px 25px;
        font-size: 15px;
    }

    .org-name {
        font-size: 11px;
    }

    .why-join-us .section-title h2 {
        font-size: 28px;
    }

    .benefit-item h3 {
        font-size: 18px;
    }

    .benefit-item {
        padding: 30px 15px;
    }

    .eligibility-left-section {
        padding: 40px 20px 20px;
    }

    .eligibility-image img {
        max-width: 300px;
    }

    .eligibility-content {
        padding: 30px 15px;
    }

    .eligibility-title {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .eligibility-subtitle {
        font-size: 14px;
    }

    .courses-title {
        font-size: 32px;
        margin-bottom: 35px;
    }

    .course-item h3 {
        font-size: 18px;
    }

    .course-item {
        padding: 20px 15px;
    }

    .requirement-item {
        padding: 20px 15px;
    }

    .requirement-item h3 {
        font-size: 18px;
    }

    .programme-image {
        width: 250px;
        height: 250px;
        margin-bottom: 25px;
    }

    .social-media-icons {
        gap: 25px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 22px;
    }

    .programme-content {
        padding: 30px 15px;
    }

    .programme-title {
        font-size: 34px;
    }

    .programme-subtitle {
        font-size: 16px;
        letter-spacing: 2px;
        margin-bottom: 35px;
    }

    .btn-programme {
        padding: 16px 25px;
        font-size: 15px;
    }
}

/* Additional Styling for Course Details Section */
.course-details-area .top-info h2 {
    color: #0d3e6e;
    font-weight: 700;
}

.course-details-area .highlight {
    color: #3d4e7a;
    font-weight: 700;
}

/* Enhance sidebar */
.sidebar .course-preview .content ul li {
    border-bottom: 1px solid #eeeeee;
    padding: 12px 0;
}

.sidebar .course-preview .content ul li:last-child {
    border-bottom: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.organization-header {
    animation: fadeInUp 0.6s ease-out;
}

