/* =========================================
   1. Variables & Reset
   ========================================= */
:root {
    /* Colors */
    --primary-blue: #1a237e;    /* blue-900 */
    --secondary-blue: #283593;  /* blue-800 */
    --light-blue: #e8eaf6;      /* blue-50 */
    --accent-orange: #ff6f00;   /* orange-500 */
    --accent-orange-hover: #e65100; /* orange-600 */
    --text-dark: #1f2937;       /* gray-800 */
    --text-gray: #4b5563;       /* gray-600 */
    --text-light: #9ca3af;      /* gray-400 */
    --white: #ffffff;
    --bg-light: #f9fafb;        /* gray-50 */ 
    
    /* Fonts */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    /* Spacing */
    --container-width: 1200px;
    --header-height: 80px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.5;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* =========================================
   2. Utility Classes
   ========================================= */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.hidden { display: none !important; }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
    font-family: var(--font-body);
}

.btn-primary {
    background-color: #F37D1F;
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background-color: var(--accent-orange-hover);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.btn-full {
    width: 100%;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: #1D1D1D;
    margin-bottom: 1rem;
    line-height: 50px;
}

.section-title-blue {
    font-family: var(--font-heading);
    font-size: 60px;
    font-weight: 700;
    color: #252771;
    margin-bottom: 1rem;
    line-height: 70px;
}

.section-title-blue1 {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    color: #252771;
    margin-bottom: 1rem;
    line-height: 60px;
}

.section-subtitle {
    color: #2B2C89;
    font-size: 20px;
    line-height: 30px;
    max-width: 48rem;
    margin: 0 auto 3rem;
}

/* =========================================
   3. Navbar
   ========================================= */
.navbar {
    background-color: #2F3092;
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-lg);
}

.navbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand img {
    width: 200px;
}

.brand-logo {
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--white);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
}

.brand-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
}

.nav-links {
    font-size: 16px;
    font-weight: 400;
    display: none; /* Hidden on mobile */
}

.nav-links a:hover {
    color: var(--accent-orange);
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 2rem;
        font-weight: 400;
    }

    
}

/* =========================================
   4. Hero Section
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: 0; /* Reset */
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: -webkit-center;
    text-center;
    padding-top: 4rem;
}

.hero-label {
    font-size: 24px;
    font-weight: 400;
    line-height: 43px;
    letter-spacing: 0.05em;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 74px;
    text-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.hero-desc {
    font-size: 28px;
    line-height: 38px;
    font-weight: 400;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero-title { font-size: 3.75rem; }
    .hero-desc { font-size: 1.5rem; }
}

/* =========================================
   5. Scholarship Cards (Floating)
   ========================================= */
.scholarship-section {
    position: relative;
    z-index: 20;
    margin-top: -100px; /* Pull up to overlap hero */
    padding-bottom: 80px;
}

.scholarship-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .scholarship-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.card {
    background-color: #2F3092;
    color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card.highlight {
    background-color: var(--secondary-blue);
    transform: scale(1.05);
    z-index: 25;
}

.card.highlight:hover {
    transform: scale(1.05) translateY(-10px);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 28px;
    line-height: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.card-badge {
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    text-align: center;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.card-list {
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.card-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.check-icon {
    color: var(--accent-orange);
    margin-right: 0.5rem;
    font-weight: bold;
}

.card-footer {
    font-size: 12px;
    text-align: center;
    margin-top: 1rem;
    color: #fff;
    opacity: 0.6;
}

/* Grid layout for list items in cards */
.grid-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

/* =========================================
   6. Features Section (Why Choose Us)
   ========================================= */
.features-section {
    padding: 80px 0px 150px 0px;
    background-color: #F5F5F5;
    text-align: center;
}

.divider {
    width: 6rem;
    height: 0.25rem;
    background-color: var(--accent-orange);
    margin: 0 auto 2rem;
    border-radius: 9999px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--white);
    padding: 2rem 2rem 0rem 2rem;
    border-radius: 0px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--bg-light);
    transition: box-shadow 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-xl);
}

.feature-card.offset {
    transform: translateY(0);
}

@media (min-width: 768px) {
    .feature-card.offset {
        transform: translateY(-1rem);
    }
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: #000;
    line-height: 32px;
    margin-bottom: 1rem;
}

.feature-desc {
    color: #000;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 2rem;
}

.feature-img-wrapper {
    width: 170px;
    height: 170px;
    margin: 0 auto;
    margin-bottom: -90px;
    border-radius: 50%;
    overflow: hidden;
    
}

.feature-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   7. Programs Section
   ========================================= */
.programs-section {
    padding: 80px 0px 80px 0px;
    background-color: var(--bg-light);
}

.program-card {
    background-color: var(--white);
    border-radius: 0px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.program-header {
    padding: 2rem;
    background-color: var(--bg-light);
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.program-title {
    font-family: var(--font-heading);
    font-size: 26px;
    line-height: 36px;
    font-weight: 700;
    color: #2F3092;
    margin-bottom: 0.5rem;
}

.program-price {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--accent-orange);
}

.program-price span {
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-light);
}

.program-body {
    padding: 2rem;
    background-color: #2F3092;
    color: var(--white);
    flex-grow: 1;
    text-align: -webkit-left;
}

.program-body.secondary {
    background-color: #2F3092;
}

.program-subtitle {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.5rem;
}

.program-list {
    font-size: 0.875rem;
}

.program-list li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.sub-list {
    margin-left: 6px;
    margin-top: 0.25rem;
    font-size: 0.75rem;
    color: #c5cae9;
    list-style: disc;
}

.program-footer {
    padding: 1rem;
    background-color: #F37D1F;
    color: var(--white);
    text-align: center;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 20px;
}

.program-footer:hover {
    background-color: var(--accent-orange-hover);
}

/* =========================================
   8. Partners Section (Kerjasama)
   ========================================= */
.partners-section {
    padding: 5rem 0;
    background-color: var(--white);
    text-align: center;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    border-bottom: 1px solid #e5e7eb;
    max-width: 24rem;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    background: none;
    border: none;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    padding-bottom: 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--primary-blue);
    font-weight: 700;
    border-bottom-color: var(--primary-blue);
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: center;
    opacity: 0.8;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.logos-grid:hover {
    filter: grayscale(0%);
    opacity: 1;
}

@media (min-width: 768px) {
    .logos-grid { grid-template-columns: repeat(6, 1fr); }
}

@media (min-width: 1024px) {
    .logos-grid { grid-template-columns: repeat(8, 1fr); }
}

.logo-item {
    height: 3rem; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-light);
}



.quote-icon {
    width: 4rem;
    height: 4rem;
    background-color: var(--accent-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-lg);
}

.testimonials-nav {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    margin-left: 12px;
}

.nav-btn {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    transition: background-color 0.3s ease;
}

.nav-btn.prev {
    background-color: #F37D1F;
    color: var(--white);
}

.nav-btn.next {
    background-color: #F37D1F;
    color: var(--white);
}

.testimonials-slider-wrapper {
    flex: 2;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card-wrapper {
    width: 100%;
    flex-shrink: 0;
    padding: 0 0.75rem;
}

@media (min-width: 768px) {
    .testimonial-card-wrapper { width: 50%; }
}

@media (min-width: 1024px) {
    .testimonial-card-wrapper { width: 33.333%; }
}

.testimonial-card {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-xl);
    height: 100%;
}

.user-profile {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.user-img {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 0.75rem;
    border: 2px solid var(--primary-blue);
}

.user-info h4 {
    font-weight: 700;
    font-size: 0.875rem;
}

.user-info p {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.user-quote {
    font-size: 0.75rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* =========================================
   10. Internship Section
   ========================================= */
.internship-section {
    padding: 5rem 0;
    background-color: var(--bg-light);
}

.internship-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .internship-container {
        flex-direction: row;
    }
}

.internship-content {
    flex: 1;
}

.tag-grid {
    display: ruby;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    max-width: 33rem;
}

.tag {
    background-color: #F37D1F;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 0px;
    text-align: center;
    margin-bottom: 15px;
    margin-right: 12px;
    font-weight: 600;
    font-size: 20px;
    box-shadow: var(--shadow-md);
    cursor: default;
    transition: background-color 0.3s ease;
}

.internship-image {
    flex: 1;
    position: relative;
}

.blob {
    position: absolute;
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    z-index: 0;
}

.blob-1 {
    top: -2.5rem;
    right: -2.5rem;
    background-color: #fde047; /* yellow-300 */
}

.blob-2 {
    bottom: -2.5rem;
    left: -2.5rem;
    background-color: #93c5fd; /* blue-300 */
}

.internship-img-main {
    position: relative;
    z-index: 10;
    border-radius: 1rem;
    box-shadow: var(--shadow-2xl);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* =========================================
   11. FAQ Section
   ========================================= */
.faq-section {
    padding: 5rem 0;
    background-color: var(--white);
}

.faq-container {
    max-width: 56rem;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 0.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #f3f4f6;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-btn {
    width: 100%;
    padding: 1.5rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.faq-question {
    font-weight: 700;
    font-size: 24px;
    color: #000;
}

.faq-icon {
    color: var(--accent-orange);
    transition: transform 0.3s ease;
}

.faq-icon.rotate {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #000;
    font-size: 18px;
    line-height: 28px;
    display: none;
}
 
.faq-answer.show {
    display: block;
}
 
.faq-answer a {
    color: var(--secondary-blue);
    text-decoration: underline;
}

/* =========================================
   12. Footer
   ========================================= */
.footer {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 3rem 0;
    border-top: 1px solid var(--secondary-blue);
    text-align: center;
}

.footer p {
    opacity: 0.7;
}

/* =========================================
   13. Icons (SVG replacements)
   ========================================= */
.icon {
    width: 1.5rem;
    height: 1.5rem;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* ===== CTA SECTION STYLES ===== */
.cta-section {
       background-image:  url('{{ asset('storage/img-cta.webp') }}');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 80px 0px 80px 0px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    display: grid;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 50%;
}

.cta-text {
    color: white;
}

.cta-title {
    font-size: 62px;
    font-weight: 700;
    line-height: 72px;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-desc {
    font-size: 24px;
    font-weight: 500;
    line-height: 34px;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-button {
    background: #3742fa;
    color: white;
    border: none;
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(55, 66, 250, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: #2f3542;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(55, 66, 250, 0.4);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.cta-image img:hover {
    transform: scale(1.02);
}

/* ===== FOOTER SECTION STYLES ===== */
.footer-section {
    background: #2E3191;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    color: white;
    padding: 80px 0px 80px 0px;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="50" height="50" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* Footer Left */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.logo-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-icon p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.logo-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
}

.logo-text p {
    font-size: 0.9rem;
    margin: 5px 0 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.google-play-badge {
    margin: 10px 0;
}

.play-store-link img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    filter: brightness(1.1);
}

.play-store-link:hover img {
    transform: scale(1.05);
}

.footer-copyright {
    margin-top: auto;
}

.footer-copyright p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 22px;
    font-weight: 300;
    margin: 0;
}

.footer-copyright strong {
    color: #fff;
    font-weight: 600;
}

/* Footer Center */
.footer-center {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #FEA560;
    position: relative;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 1px;
    background: #e67e22;
    border-radius: 1px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-menu li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-menu li a:hover {
    color: #e67e22;
    transform: translateX(5px);
}

.footer-menu li a::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #e67e22;
    transition: width 0.3s ease;
}

.footer-menu li a:hover::before {
    width: 10px;
}

/* Footer Right */
.footer-right {
    display: flex;
    flex-direction: column;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 25px;
}

.contact-item svg {
    color: #fff;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item.address {
    align-items: flex-start;
}

.contact-item.address svg {
    margin-top: 4px;
}

.contact-item span {
    flex: 1;
}

.contact-item:hover {
    color: white;
}

.contact-item:hover svg {
    color: #f39c12;
}

.social-icons-container {
    display: flex;
    margin-top: -35px;
    margin-left: -10px;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 0;
    transition: all 0.3s ease;
}

.social-icons:hover {
    transform: translateY(0px);
    background: none;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon svg {
    width: 20px;
    height: 20px;
    z-index: 1;
    position: relative;
}


@media (max-width: 768px) {
    .brand img {
        width: 150px;
    }

    .btn-primary {
        font-size: 14px;
    }

    .hero-label {
        font-size: 18px;
        line-height: 28px;
    }

    .hero-title {
        font-size: 39px;
        line-height: 49px;
    }

    .hero-desc {
        font-size: 18px;
        line-height: 28px;
    }

    .card-list li {
        align-items: flex-start;
    }

    .hero {
        height: 85vh;
    }

    .scholarship-section {
        padding-bottom: 30px;
    }

    .features-section {
        padding: 30px 20px 120px 20px;
    }

    .section-title {
        font-size: 32px;
        line-height: 42px;
    }

    .programs-section {
        padding: 30px 20px 120px 20px;
     }

     .program-title {
        font-size: 21px;
        line-height: 31px;
    }

    .partners-section {
        padding: 0px 20px 30px 20px;
    }

    .testimonials-section {
        padding: 30px 20px 30px 20px;
    }

    .testimonials-container {
        gap: 0rem;
    }

    .internship-section {
        padding: 30px 20px 30px 20px;
    }

    .section-title-blue {
        font-size: 34px;
        line-height: 44px;
    }

    .section-subtitle {
        font-size: 16px;
        line-height: 26px;
    }

    .tag {
        font-size: 16px;
    }

    .section-title-blue1 {
        font-size: 32px;
        line-height: 42px;
    }

    .faq-section {
        padding: 30px 20px 30px 20px;
    }

    .faq-question {
        font-size: 18px;
        line-height: 28px;
    }

    .faq-answer {
        font-size: 16px;
        line-height: 26px;
    }

    .footer-content {
        display: block;
    }

    .footer-heading {
        margin-top: 20px;
    }

    .cta-title {
        font-size: 26px;
        line-height: 36px;
    }

    .cta-content {
        width: 100%;
    }

    .cta-desc {
        font-size: 16px;
        line-height: 26px;
    }
}

/* Hamburger Button (Hidden on Desktop) */
.hamburger-btn {
    display: block;
    background: none;
    border: none;
    color: white; /* Adjust color if needed */
    cursor: pointer;
    padding: 0.5rem;
    margin-right: -60px;
}

/* Hide Hamburger on Desktop */
@media (min-width: 768px) {
    .hamburger-btn {
        display: none;
    }
}

/* Mobile Menu Styles */
@media (max-width: 767px) {
    .nav-links {
        display: none; /* Hidden by default */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2f3091; /* Match your navbar color */
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        border-top: 1px solid rgba(255,255,255,0.1);
    }

    /* Class added by JS to show menu */
    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        padding: 1rem 2rem;
        width: 100%;
        display: block;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        color: white;
        text-decoration: none;
    }

    .nav-links a:hover {
        background-color: #2f3091;
    }
}

.hidden {
    display: none !important;
}

/* =========================================
   Content Formatting untuk Rich Text Editor
   Override Bootstrap dengan !important
   ========================================= */
.content-formatted {
    font-family: var(--font-body) !important;
    color: var(--text-dark) !important;
    line-height: 1.8 !important;
    font-size: 16px !important;
}

.content-formatted p {
    margin-bottom: 1.2rem !important;
    text-align: justify !important;
    line-height: 1.8 !important;
}

.content-formatted h1,
.content-formatted h2,
.content-formatted h3,
.content-formatted h4,
.content-formatted h5,
.content-formatted h6 {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    margin-top: 1.5rem !important;
    margin-bottom: 1rem !important;
    color: var(--primary-blue) !important;
    line-height: 1.3 !important;
}

.content-formatted h1 {
    font-size: 2rem !important;
}

.content-formatted h2 {
    font-size: 1.75rem !important;
}

.content-formatted h3 {
    font-size: 1.5rem !important;
}

.content-formatted h4 {
    font-size: 1.25rem !important;
}

.content-formatted h5 {
    font-size: 1.1rem !important;
}

.content-formatted h6 {
    font-size: 1rem !important;
}

.content-formatted ul,
.content-formatted ol {
    margin-left: 2rem !important;
    margin-bottom: 1.2rem !important;
    padding-left: 1.5rem !important;
}

.content-formatted ul li,
.content-formatted ol li {
    margin-bottom: 0.5rem !important;
    line-height: 1.8 !important;
}

.content-formatted ul {
    list-style-type: disc !important;
    list-style-position: outside !important;
}

.content-formatted ol {
    list-style-type: decimal !important;
    list-style-position: outside !important;
}

.content-formatted blockquote {
    border-left: 4px solid var(--accent-orange) !important;
    padding-left: 1.5rem !important;
    margin: 1.5rem 0 !important;
    font-style: italic !important;
    color: var(--text-gray) !important;
    background-color: var(--light-blue) !important;
    padding: 1rem 1.5rem !important;
    border-radius: 4px !important;
}

.content-formatted strong,
.content-formatted b {
    font-weight: 600 !important;
    color: var(--primary-blue) !important;
}

.content-formatted em,
.content-formatted i {
    font-style: italic !important;
}

.content-formatted a {
    color: var(--accent-orange) !important;
    text-decoration: underline !important;
    transition: color 0.3s ease !important;
}

.content-formatted a:hover {
    color: var(--accent-orange-hover) !important;
}

.content-formatted img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    margin: 1rem 0 !important;
    box-shadow: var(--shadow-md) !important;
}

.content-formatted table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 1.5rem 0 !important;
    box-shadow: var(--shadow-sm) !important;
}

.content-formatted table th,
.content-formatted table td {
    padding: 0.75rem 1rem !important;
    border: 1px solid #e5e7eb !important;
    text-align: left !important;
}

.content-formatted table th {
    background-color: var(--primary-blue) !important;
    color: white !important;
    font-weight: 600 !important;
}

.content-formatted table tr:nth-child(even) {
    background-color: #f9fafb !important;
}

.content-formatted table tr:hover {
    background-color: var(--light-blue) !important;
}

.content-formatted code {
    background-color: #f3f4f6 !important;
    padding: 0.2rem 0.4rem !important;
    border-radius: 4px !important;
    font-family: 'Courier New', monospace !important;
    font-size: 0.9rem !important;
    color: #e11d48 !important;
}

.content-formatted pre {
    background-color: #1f2937 !important;
    color: #f9fafb !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    overflow-x: auto !important;
    margin: 1.5rem 0 !important;
}

.content-formatted pre code {
    background-color: transparent !important;
    color: inherit !important;
    padding: 0 !important;
}

.content-formatted hr {
    border: none !important;
    border-top: 2px solid #e5e7eb !important;
    margin: 2rem 0 !important;
}

/* =========================================
   Prodi Page Specific Styles
   ========================================= */

/* Modern Cards for Visi Misi Tujuan Section */
.content-wrapper {
    position: relative;
}

.modern-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
}

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

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    transition: width 0.4s ease;
}

.modern-card:hover::before {
    width: 8px;
}

/* Visi Card - Blue Gradient */
.visi-card::before {
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.visi-card .icon-visi {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* Misi Card - Orange Gradient */
.misi-card::before {
    background: linear-gradient(180deg, #f093fb 0%, #f5576c 100%);
}

.misi-card .icon-misi {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

/* Tujuan Card - Cyan Gradient */
.tujuan-card::before {
    background: linear-gradient(180deg, #4facfe 0%, #00f2fe 100%);
}

.tujuan-card .icon-tujuan {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* Profil Card - Green Gradient */
.profil-card::before {
    background: linear-gradient(180deg, #43e97b 0%, #38f9d7 100%);
}

.profil-card .icon-profil {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.card-header-modern {
    padding: 2rem 2rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(249, 250, 251, 0.9) 100%);
    position: relative;
}

.card-header-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 2rem;
    right: 2rem;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.modern-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
}

.card-title-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.card-body-modern {
    padding: 2rem;
    background: white;
}

.card-body-modern .content-formatted {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.8;
}

/* Info Cards Sidebar Styling */
.info-cards-wrapper {
    position: sticky;
    top: 100px;
}

.info-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    position: relative;
}

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

.info-card-inner {
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    top: -50px;
    right: -50px;
    opacity: 0.1;
    transition: all 0.6s ease;
}

.info-card:hover .card-decoration {
    transform: scale(1.5) rotate(90deg);
    opacity: 0.15;
}

/* Akreditasi Card */
.akreditasi-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.akreditasi-card .card-decoration {
    background: white;
}

.akreditasi-card .icon-circle-info {
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: white;
}

/* Durasi Card */
.durasi-card {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.durasi-card .card-decoration {
    background: white;
}

.durasi-card .icon-circle-warning {
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: white;
}

/* Lokasi Card */
.lokasi-card {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.lokasi-card .card-decoration {
    background: white;
}

.lokasi-card .icon-circle-success {
    background: rgba(255, 255, 255, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.info-card:hover .icon-circle {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.icon-circle i {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.info-label {
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

.info-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-value-small {
    font-size: 1.5rem;
    line-height: 1.3;
}

.info-unit {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    margin-top: 0.5rem;
    opacity: 0.9;
}

/* Pulse Animation for Icon */
@keyframes pulse-ring {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.info-card:hover .icon-circle {
    animation: pulse-ring 1.5s infinite;
}

/* Hero Section Enhanced Styling */
.hero-section {
    background: linear-gradient(135deg, #0a023e 0%, #1e3c72 50%, #2a5298 100%);
    min-height: 600px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(52, 152, 219, 0.1) 0%, transparent 50%);
    animation: pulse 10s ease-in-out infinite;
}

/* Floating Background Elements */
.hero-bg-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.element-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.element-2 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: -50px;
    animation-delay: 3s;
}

.element-3 {
    width: 150px;
    height: 150px;
    bottom: -50px;
    left: 30%;
    animation-delay: 6s;
}

.element-4 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 20%;
    animation-delay: 9s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-30px) translateX(30px) rotate(90deg);
    }
    50% {
        transform: translateY(-60px) translateX(-30px) rotate(180deg);
    }
    75% {
        transform: translateY(-30px) translateX(-60px) rotate(270deg);
    }
}

/* Hero Content Animations */
.animate-fade-in-up {
    animation: fadeInUp 1s ease-out;
}

.animate-fade-in {
    animation: fadeIn 1.2s ease-out;
}

.animate-slide-in {
    animation: slideIn 1.2s ease-out 0.3s both;
}

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

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

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Title Effect */
.hero-title {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.text-white-80 {
    color: rgba(255, 255, 255, 0.9);
}

/* Button Hover Effects */
.btn-hover-effect {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

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

.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.btn-warning.btn-hover-effect:hover {
    background: #ffcd39;
    border-color: #ffcd39;
}

.btn-outline-light.btn-hover-effect:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Hero Image Styling */
.hero-image {
    position: relative;
}

.hero-img {
    max-height: 450px;
    object-fit: cover;
    width: 100%;
    border: 5px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.hero-img:hover {
    transform: scale(1.02);
    border-color: rgba(255, 193, 7, 0.3);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 50%;
    opacity: 0.2;
    animation: rotate 15s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

/* Badge Styling */
.badge {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    animation: bounceIn 1s ease-out;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

/* Prospek Kerja Carousel Styling */
.prospect-card {
    background: linear-gradient(135deg, #0360bd 0%, #013364 100%) !important;
    border-radius: 15px !important;
    transition: all 0.3s ease;
    min-height: 280px;
}

.prospect-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) !important;
}

.prospect-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
}

/* Carousel Navigation Styling */
.prospect-nav-btn {
    background: rgba(0, 75, 187, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    cursor: pointer;
    pointer-events: auto;
}

.prospect-nav-btn:hover {
    background: rgba(0, 75, 187, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev.prospect-nav-btn {
    left: -25px;
}

.carousel-control-next.prospect-nav-btn {
    right: -25px;
}

/* Mengapa Harus SI Section Styling */
#mengapa-si {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.why-si-card {
    background: linear-gradient(135deg,#0360bd 0%, #013364 100%) !important;
    border-radius: 20px !important;
    transition: all 0.3s ease;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.why-si-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3) !important;
}

.why-si-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(52, 73, 94, 0.1) 0%, rgba(44, 62, 80, 0.1) 100%);
    z-index: 1;
}

.why-si-card .card-body {
    position: relative;
    z-index: 2;
}

.why-si-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: #ffc107;
    color: #2c3e50;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.3);
}

.why-si-card .card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white !important;
    line-height: 1.4;
}

.why-si-card .card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85) !important;
    margin-bottom: 1rem;
}

.why-si-card .btn-warning {
    background: #ffc107;
    border: none;
    color: #2c3e50;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.why-si-card .btn-warning:hover {
    background: #ffcd39;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    color: #2c3e50;
}

/* Mata Kuliah Unggulan Section Styling */
#mata-kuliah-unggulan {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.featured-course-card {
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    cursor: pointer;
}

.featured-course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.course-image-container {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.course-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.course-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(0);
    transition: all 0.4s ease;
    z-index: 2;
}

.featured-course-card:hover .course-overlay {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.course-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.course-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.featured-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(44, 62, 80, 0.1), rgba(52, 73, 94, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

/* Mata Kuliah Section Styling */
.mata-kuliah-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    background: white;
    height: 100%;
}

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

.card-header-custom {
    padding: 2rem 1.5rem 1.5rem;
    position: relative;
    color: white;
    overflow: hidden;
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.bg-gradient-danger {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.card-header-custom::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.semester-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.card-title-custom {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.semester-subtitle {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

.card-body-custom {
    padding: 1.5rem;
    background: white;
}

.mata-kuliah-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mata-kuliah-list li {
    padding: 0.6rem 0;
    font-size: 0.9rem;
    color: #2c3e50;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.mata-kuliah-list li:last-child {
    border-bottom: none;
}

.mata-kuliah-list li:hover {
    color: #667eea;
    transform: translateX(5px);
}

.mata-kuliah-list li i {
    width: 20px;
    font-size: 0.8rem;
}

/* Semester specific accent colors */
.semester-1-2:hover .card-header-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.semester-3-4:hover .card-header-custom {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.semester-5-6:hover .card-header-custom {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.semester-7-8:hover .card-header-custom {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

/* =========================================
   FAQ Section Professional Styling (Bootstrap 5.3.0)
   ========================================= */
#faq {
    position: relative;
    background: #ffffff;
}

.faq-intro .badge {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.faq-intro .display-5 {
    font-size: 2.5rem;
    line-height: 1.2;
}

.faq-accordion {
    --bs-accordion-border-width: 0;
    --bs-accordion-border-radius: 0;
}

.faq-accordion-item {
    background: #ffffff;
    border: none;
    border-radius: 16px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e9ecef;
}

.faq-accordion-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
    border-color: #2F3092;
}

.faq-accordion-button {
    padding: 1.5rem 1.75rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: #2c3e50;
    background-color: transparent;
    border: none;
    box-shadow: none !important;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
}

.faq-accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #2F3092;
}

.faq-accordion-button::after {
    display: none;
}

.faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2F3092 0%, #1a1f5c 100%);
    color: white;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-accordion-button:not(.collapsed) .faq-number {
    background: linear-gradient(135deg, #F37D1F 0%, #e66a0a 100%);
    transform: scale(1.1);
}

.faq-question-text {
    flex: 1;
    text-align: left;
    line-height: 1.5;
}

.faq-chevron {
    color: #6c757d;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    margin-left: 1rem;
}

.faq-accordion-button:not(.collapsed) .faq-chevron {
    transform: rotate(180deg);
    color: #2F3092;
}

.faq-accordion-body {
    padding: 0 1.75rem 1.5rem 1.75rem;
    padding-left: calc(1.75rem + 40px + 1rem);
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6c757d;
    background-color: #f8f9fa;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.accordion-collapse {
    transition: height 0.35s ease !important;
}

.accordion-collapse.show .faq-accordion-body {
    display: block !important;
}

.faq-accordion-body p {
    position: relative;
    padding-left: 1.5rem;
    display: block !important;
}

.faq-accordion-body p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: calc(100% - 1rem);
    background: linear-gradient(180deg, #2F3092 0%, #F37D1F 100%);
    border-radius: 2px;
}

/* FAQ Responsive Styles */
@media (max-width: 991px) {
    .faq-intro {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .faq-intro .display-5 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .faq-accordion-button {
        padding: 1.25rem 1.25rem;
        font-size: 0.95rem;
        flex-wrap: wrap;
    }
    
    .faq-number {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
        margin-right: 0.75rem;
    }
    
    .faq-question-text {
        flex: 1 1 calc(100% - 35px - 0.75rem - 30px);
    }
    
    .faq-chevron {
        margin-left: auto;
    }
    
    .faq-accordion-body {
        padding: 0 1.25rem 1.25rem 1.25rem;
        padding-left: calc(1.25rem + 35px + 0.75rem);
    }
}

@media (max-width: 576px) {
    .faq-intro .display-5 {
        font-size: 1.75rem;
    }
    
    .faq-accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .faq-number {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        margin-right: 0.5rem;
    }
    
    .faq-accordion-body {
        padding: 0 1rem 1rem 1rem;
        padding-left: calc(1rem + 32px + 0.5rem);
        font-size: 0.875rem;
    }
}

/* =========================================
   Testimoni Section Professional Styling
   ========================================= */
#testimoni {
    position: relative;
}

.testimoni-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimoni-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.testimoni-card:hover::before {
    transform: scaleX(1);
}

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

.testimoni-card .card-body {
    padding: 2.5rem 2rem;
    position: relative;
}

.testimoni-card .card-body::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 5rem;
    color: rgba(0, 75, 187, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimoni-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.testimoni-card .text-muted {
    font-size: 0.95rem;
    color: #667eea !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimoni-card p:last-child {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 0;
}

.testimoni-card i.fa-user-circle {
    margin-bottom: 1rem;
    transition: all 0.4s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 75, 187, 0.2));
}

.testimoni-card:hover i.fa-user-circle {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 6px 12px rgba(0, 75, 187, 0.3));
}

/* Testimoni Navigation Buttons */
.testimoni-nav-btn {
    background: rgba(0, 75, 187, 0.9);
    border: none;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 15px rgba(0, 75, 187, 0.3);
}

.testimoni-nav-btn:hover {
    background: rgba(0, 75, 187, 1);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 75, 187, 0.5);
}

.carousel-control-prev.testimoni-nav-btn {
    left: -30px;
}

.carousel-control-next.testimoni-nav-btn {
    right: -30px;
}

.testimoni-nav-btn .carousel-control-prev-icon,
.testimoni-nav-btn .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Testimoni Indicators */
.carousel-indicators.testimoni-indicators {
    bottom: -55px;
    margin: 0;
}

.carousel-indicators.testimoni-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: none;
    background-color: rgba(0, 75, 187, 0.25);
    margin: 0 6px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.carousel-indicators.testimoni-indicators button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: #004bbb;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.carousel-indicators.testimoni-indicators button.active {
    background-color: #004bbb;
    transform: scale(1.4);
    box-shadow: 0 0 0 4px rgba(0, 75, 187, 0.2);
}

.carousel-indicators.testimoni-indicators button.active::before {
    width: 100%;
    height: 100%;
}

.carousel-indicators.testimoni-indicators button:hover {
    background-color: rgba(0, 75, 187, 0.5);
    transform: scale(1.2);
}

/* Smooth Carousel Transition for Testimoni */
#testimoniCarousel .carousel-item {
    transition: opacity 0.8s ease-in-out;
}

/* Add padding to section for indicators */
#testimoni .container {
    padding-bottom: 70px;
}

/* Ensure carousel container allows button interaction */
.carousel {
    position: relative;
}

.carousel-inner {
    position: relative;
    z-index: 1;
}

.position-relative {
    position: relative;
}

/* Prodi Page Responsive Styles */
@media (max-width: 991px) {
    .info-cards-wrapper {
        position: static;
        margin-top: 2rem;
    }
    
    .modern-card {
        margin-bottom: 1.5rem;
    }
    
    .card-header-modern {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .card-title-modern {
        font-size: 1.3rem;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .card-body-modern {
        padding: 1.5rem;
    }
    
    .info-card {
        margin-bottom: 1rem;
    }
    
    .info-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-section h2 {
        font-size: 1.5rem;
    }
    
    .navbar-nav .nav-link {
        margin: 5px 0;
    }
    
    .prospect-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-control-prev.prospect-nav-btn {
        left: -20px;
    }
    
    .carousel-control-next.prospect-nav-btn {
        right: -20px;
    }
    
    .prospect-card {
        min-height: 250px;
    }
    
    .why-si-card {
        min-height: 350px;
    }
    
    .why-si-number {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
    
    .featured-course-card {
        height: 250px;
        margin-bottom: 1.5rem;
    }
    
    .course-overlay {
        padding: 1.5rem;
    }
    
    .course-title {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .course-description {
        font-size: 0.9rem;
    }
    
    .faq-intro h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .faq-intro p {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .faq-question span {
        margin-right: 0.75rem;
    }
    
    .mata-kuliah-card {
        margin-bottom: 2rem;
    }
    
    .card-header-custom {
        padding: 1.5rem 1rem 1rem;
    }
    
    .card-title-custom {
        font-size: 1.2rem;
    }
    
    .semester-subtitle {
        font-size: 0.8rem;
    }
    
    .semester-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .card-body-custom {
        padding: 1rem;
    }
    
    .mata-kuliah-list li {
        font-size: 0.85rem;
        padding: 0.5rem 0;
    }
    
    .mata-kuliah-list li i {
        font-size: 0.7rem;
    }
    
    .testimoni-card {
        margin-bottom: 1.5rem;
    }
    
    .testimoni-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .carousel-indicators.testimoni-indicators {
        bottom: -40px;
    }
    
    .testimoni-card .card-body {
        padding: 2rem 1.5rem;
    }
    
    .testimoni-card h5 {
        font-size: 1.1rem;
    }
    
    .testimoni-card p:last-child {
        font-size: 0.9rem;
    }
    
    .testimoni-nav-btn {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev.testimoni-nav-btn {
        left: -20px;
    }
    
    .carousel-control-next.testimoni-nav-btn {
        right: -20px;
    }
    
    .carousel-indicators.testimoni-indicators {
        bottom: -45px;
    }
    
    #testimoni .container {
        padding-bottom: 60px;
    }
}

@media (max-width: 576px) {
    .card-header-modern {
        padding: 1.25rem;
    }
    
    .card-title-modern {
        font-size: 1.1rem;
    }
    
    .icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .card-body-modern {
        padding: 1.25rem;
    }
    
    .icon-circle {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    
    .info-value {
        font-size: 1.8rem;
    }
    
    .info-card-inner {
        padding: 2rem 1.5rem;
    }
    
    .testimoni-card .card-body::before {
        font-size: 3.5rem;
        top: 10px;
        left: 10px;
    }
    
    .testimoni-nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .testimoni-nav-btn .carousel-control-prev-icon,
    .testimoni-nav-btn .carousel-control-next-icon {
        width: 20px;
        height: 20px;
    }
    
    .carousel-control-prev.testimoni-nav-btn {
        left: -15px;
    }
    
    .carousel-control-next.testimoni-nav-btn {
        right: -15px;
    }
}