/* --- Animations (from animations.css) --- */
@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes backgroundFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-5px, 5px) rotate(2deg);
    }

    50% {
        transform: translate(5px, 10px) rotate(-1deg);
    }

    75% {
        transform: translate(-2px, -5px) rotate(1deg);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleShimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes footerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Header (from header.css) --- */
body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 180px;
    background: #ffffff;
}

/* HEADER - Figma style */
#header {
    background: #1B4559;
    border-radius: 100px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    min-height: 100px;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1000px;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    min-height: 100px;
    width: 100%;
}

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    min-height: 80px;
    max-width: 80px;
    border-radius: 50%;
    background: white;
    object-fit: cover;
}

.brand-title span {
    color: white;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-link {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6em 1.1em;
    border-radius: 28px;
    transition: all 0.3s ease;
    background: transparent;
    box-shadow: none;
    display: inline-block;
    white-space: nowrap;
}

.nav-link.active,
.nav-link:hover {
    background: #F5A61C;
    color: #1B4559;
}

/* --- Fixes (from fixes.css) --- */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* --- Founder (from founder.css) --- */
/* TEAM SECTION */
.team-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(27, 69, 89, 0.03);
    border-radius: 50%;
    z-index: -1;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(16, 176, 147, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.team-card {
    background: #ffffff;
    border: 3px solid #1B4559;
    border-radius: 32px;
    padding: 32px 24px 24px 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(27, 69, 89, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 176, 147, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27, 69, 89, 0.15);
}

.team-photo {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    box-shadow: 0 8px 20px rgba(16, 176, 147, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(16, 176, 147, 0.3);
}

.team-info {
    text-align: center;
}

.team-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-position {
    color: #10B093;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(45deg, #E1306C, #C13584, #833AB4, #5851DB);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.team-instagram:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

/* --- Testimonials (from testimonials.css) --- */
/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 0;
    background: rgba(16, 176, 147, 0.05);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(245, 166, 28, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(27, 69, 89, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #10B093, #1B4559);
    border-radius: 3px;
}

.testimonial-card {
    background: #ffffff;
    border: 4px solid #1B4559;
    border-radius: 32px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 176, 147, 0.05), rgba(27, 69, 89, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 69, 89, 0.15);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    margin-bottom: 16px;
}

.testimonial-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.testimonial-role {
    color: #10B093;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.testimonial-content {
    color: #1B4559;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* --- Testimonials Enhanced (from testimonials-enhanced.css) --- */
.enhanced-testimonials-section {
    padding: 80px 0;
    background: rgba(16, 176, 147, 0.05);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.enhanced-testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(245, 166, 28, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.enhanced-testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(27, 69, 89, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.enhanced-testimonials-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.enhanced-testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #10B093, #1B4559);
    border-radius: 3px;
}

.enhanced-testimonial-card {
    background: #ffffff;
    border: 4px solid #1B4559;
    border-radius: 32px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 176, 147, 0.05), rgba(27, 69, 89, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-testimonial-card:hover::before {
    opacity: 1;
}

.enhanced-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 69, 89, 0.15);
}

.enhanced-testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    margin-bottom: 16px;
}

.enhanced-testimonial-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.enhanced-testimonial-role {
    color: #10B093;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.enhanced-testimonial-content {
    color: #1B4559;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* --- Existing Code --- */
body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 180px;
    background: #ffffff;
}

/* HEADER - Figma style */
#header {
    background: #1B4559;
    border-radius: 100px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    min-height: 100px;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1000px;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    min-height: 100px;
    width: 100%;
}

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    min-height: 80px;
    max-width: 80px;
    border-radius: 50%;
    background: white;
    object-fit: cover;
}

.brand-title span {
    color: white;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-link {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6em 1.1em;
    border-radius: 28px;
    transition: all 0.3s ease;
    background: transparent;
    box-shadow: none;
    display: inline-block;
    white-space: nowrap;
}

.nav-link.active,
.nav-link:hover {
    background: #F5A61C;
    color: #1B4559;
}

/* HERO */
.hero-section {
    background: linear-gradient(135deg, #1B4559, #10B093);
    padding: 80px 0 60px 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 30px;
    margin: 20px auto 60px;
    max-width: 95%;
    box-shadow: 0 12px 30px rgba(27, 69, 89, 0.2);
    overflow: hidden;
    animation: heroFadeIn 1s ease-out forwards;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(27, 69, 89, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/aiflogo.png') no-repeat;
    background-size: 30%;
    background-position: 110% 120%;
    opacity: 0.05;
    animation: backgroundFloat 15s ease-in-out infinite;
}

.hero-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5A61C;
    border-radius: 50px;
    padding: 12px 32px 12px 12px;
    margin: 0 auto 40px auto;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(245, 166, 28, 0.3);
    width: fit-content;
    animation: badgePulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #fff;
    object-fit: cover;
    animation: logoSpin 12s linear infinite;
}

.hero-badge-text {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-title {
    font-family: 'Young Serif', serif;
    font-size: 4rem;
    text-align: center;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin: 0 auto 48px auto;
    max-width: 900px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    animation: titleReveal 1.5s ease-out forwards;
    background: linear-gradient(90deg, #ffffff, #F5A61C, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShimmer 6s linear infinite;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-btn {
    background: #10B093;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 32px;
    border: 3px solid #1B4559;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 176, 147, 0.3);
    min-width: 160px;
    text-align: center;
    display: inline-block;
}

.hero-btn:hover {
    background: #1B4559;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 69, 89, 0.4);
}

.hero-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: footerFadeIn 2s ease-out forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.hero-part-of {
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-ibs-logo {
    max-width: 200px;
    height: auto;
    border-radius: 2px;
    object-fit: cover;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.hero-ibs-logo:hover {
    transform: scale(1.05);
}



/* WELCOME */
.welcome-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.welcome-desc {
    color: #10B093;
    font-family: 'Young Serif', serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0;
}

/* LAYANAN */
.layanan-flex {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 15px;
}

.layanan-card {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #1B4559;
    border-radius: 42px;
    padding: 40px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 280px;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(27, 69, 89, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layanan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 69, 89, 0.15);
}

.emoji {
    font-size: 6rem;
    margin-bottom: 16px;
}

.layanan-title {
    color: #10B093;
    font-family: 'Young Serif', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
}

.layanan-desc {
    color: #1B4559;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 90%;
}

.btn-layanan {
    background: #10B093;
    color: #fff;
    border: none;
    border-radius: 32px;
    font-weight: 600;
    padding: 0.7em 2.2em;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

.btn-layanan:hover {
    background: #1B4559;
}

/* KEGIATAN */
.kegiatan-section {
    margin-bottom: 80px;
    /* Added spacing before footer */
}

.kegiatan-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.kegiatan-desc {
    color: #10B093;
    font-family: 'Young Serif', serif;
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 500;
}

.embed-instagram-box {
    min-height: 300px;
    background: rgba(255, 255, 255, 0.85);
    border: 4px solid #1B4559;
    border-radius: 32px;
    margin: 0 auto;
    max-width: 600px;
}

.instagram-embed-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.instagram-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px 30px 0 0;
}

.instagram-profile-link {
    padding: 16px;
    background: #1B4559;
    border-radius: 0 0 20px 20px;
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #F5A61C;
}

.instagram-icon {
    font-size: 1.5rem;
}

/* --- Fixes (from fixes.css) --- */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* --- Founder (from founder.css) --- */
/* TEAM SECTION */
.team-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(27, 69, 89, 0.03);
    border-radius: 50%;
    z-index: -1;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(16, 176, 147, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.team-card {
    background: #ffffff;
    border: 3px solid #1B4559;
    border-radius: 32px;
    padding: 32px 24px 24px 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(27, 69, 89, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 176, 147, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27, 69, 89, 0.15);
}

.team-photo {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    box-shadow: 0 8px 20px rgba(16, 176, 147, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(16, 176, 147, 0.3);
}

.team-info {
    text-align: center;
}

.team-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-position {
    color: #10B093;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(45deg, #E1306C, #C13584, #833AB4, #5851DB);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.team-instagram:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

/* --- Testimonials (from testimonials.css) --- */
/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 0;
    background: rgba(16, 176, 147, 0.05);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(245, 166, 28, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(27, 69, 89, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #10B093, #1B4559);
    border-radius: 3px;
}

.testimonial-card {
    background: #ffffff;
    border: 4px solid #1B4559;
    border-radius: 32px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 176, 147, 0.05), rgba(27, 69, 89, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 69, 89, 0.15);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    margin-bottom: 16px;
}

.testimonial-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.testimonial-role {
    color: #10B093;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.testimonial-content {
    color: #1B4559;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* --- Testimonials Enhanced (from testimonials-enhanced.css) --- */
.enhanced-testimonials-section {
    padding: 80px 0;
    background: rgba(16, 176, 147, 0.05);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.enhanced-testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(245, 166, 28, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.enhanced-testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(27, 69, 89, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.enhanced-testimonials-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.enhanced-testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #10B093, #1B4559);
    border-radius: 3px;
}

.enhanced-testimonial-card {
    background: #ffffff;
    border: 4px solid #1B4559;
    border-radius: 32px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 176, 147, 0.05), rgba(27, 69, 89, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-testimonial-card:hover::before {
    opacity: 1;
}

.enhanced-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 69, 89, 0.15);
}

.enhanced-testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    margin-bottom: 16px;
}

.enhanced-testimonial-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.enhanced-testimonial-role {
    color: #10B093;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.enhanced-testimonial-content {
    color: #1B4559;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* --- Existing Code --- */
body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 180px;
    background: #ffffff;
}

/* HEADER - Figma style */
#header {
    background: #1B4559;
    border-radius: 100px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    min-height: 100px;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1000px;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    min-height: 100px;
    width: 100%;
}

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    min-height: 80px;
    max-width: 80px;
    border-radius: 50%;
    background: white;
    object-fit: cover;
}

.brand-title span {
    color: white;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-link {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6em 1.1em;
    border-radius: 28px;
    transition: all 0.3s ease;
    background: transparent;
    box-shadow: none;
    display: inline-block;
    white-space: nowrap;
}

.nav-link.active,
.nav-link:hover {
    background: #F5A61C;
    color: #1B4559;
}

/* HERO */
.hero-section {
    background: linear-gradient(135deg, #1B4559, #10B093);
    padding: 80px 0 60px 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 30px;
    margin: 20px auto 60px;
    max-width: 95%;
    box-shadow: 0 12px 30px rgba(27, 69, 89, 0.2);
    overflow: hidden;
    animation: heroFadeIn 1s ease-out forwards;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(27, 69, 89, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/aiflogo.png') no-repeat;
    background-size: 30%;
    background-position: 110% 120%;
    opacity: 0.05;
    animation: backgroundFloat 15s ease-in-out infinite;
}

@keyframes backgroundFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-5px, 5px) rotate(2deg);
    }

    50% {
        transform: translate(5px, 10px) rotate(-1deg);
    }

    75% {
        transform: translate(-2px, -5px) rotate(1deg);
    }
}

.hero-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5A61C;
    border-radius: 50px;
    padding: 12px 32px 12px 12px;
    margin: 0 auto 40px auto;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(245, 166, 28, 0.3);
    width: fit-content;
    animation: badgePulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

.hero-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #fff;
    object-fit: cover;
    animation: logoSpin 12s linear infinite;
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-badge-text {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-title {
    font-family: 'Young Serif', serif;
    font-size: 4rem;
    text-align: center;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin: 0 auto 48px auto;
    max-width: 900px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    animation: titleReveal 1.5s ease-out forwards;
    background: linear-gradient(90deg, #ffffff, #F5A61C, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShimmer 6s linear infinite;
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleShimmer {
    to {
        background-position: 200% center;
    }
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-btn {
    background: #10B093;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 32px;
    border: 3px solid #1B4559;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 176, 147, 0.3);
    min-width: 160px;
    text-align: center;
    display: inline-block;
}

.hero-btn:hover {
    background: #1B4559;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 69, 89, 0.4);
}

.hero-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: footerFadeIn 2s ease-out forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.hero-part-of {
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-ibs-logo {
    max-width: 200px;
    height: auto;
    border-radius: 2px;
    object-fit: cover;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.hero-ibs-logo:hover {
    transform: scale(1.05);
}



/* WELCOME */
.welcome-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.welcome-desc {
    color: #10B093;
    font-family: 'Young Serif', serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0;
}

/* LAYANAN */
.layanan-flex {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 15px;
}

.layanan-card {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #1B4559;
    border-radius: 42px;
    padding: 40px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 280px;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(27, 69, 89, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layanan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 69, 89, 0.15);
}

.emoji {
    font-size: 6rem;
    margin-bottom: 16px;
}

.layanan-title {
    color: #10B093;
    font-family: 'Young Serif', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
}

.layanan-desc {
    color: #1B4559;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 90%;
}

.btn-layanan {
    background: #10B093;
    color: #fff;
    border: none;
    border-radius: 32px;
    font-weight: 600;
    padding: 0.7em 2.2em;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

.btn-layanan:hover {
    background: #1B4559;
}

/* KEGIATAN */
.kegiatan-section {
    margin-bottom: 80px;
    /* Added spacing before footer */
}

.kegiatan-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.kegiatan-desc {
    color: #10B093;
    font-family: 'Young Serif', serif;
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 500;
}

.embed-instagram-box {
    min-height: 300px;
    background: rgba(255, 255, 255, 0.85);
    border: 4px solid #1B4559;
    border-radius: 32px;
    margin: 0 auto;
    max-width: 600px;
}

.instagram-embed-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.instagram-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px 30px 0 0;
}

.instagram-profile-link {
    padding: 16px;
    background: #1B4559;
    border-radius: 0 0 20px 20px;
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #F5A61C;
}

.instagram-icon {
    font-size: 1.5rem;
}

* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* --- Founder (from founder.css) --- */
/* TEAM SECTION */
.team-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(27, 69, 89, 0.03);
    border-radius: 50%;
    z-index: -1;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(16, 176, 147, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.team-card {
    background: #ffffff;
    border: 3px solid #1B4559;
    border-radius: 32px;
    padding: 32px 24px 24px 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(27, 69, 89, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 176, 147, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27, 69, 89, 0.15);
}

.team-photo {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    box-shadow: 0 8px 20px rgba(16, 176, 147, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(16, 176, 147, 0.3);
}

.team-info {
    text-align: center;
}

.team-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-position {
    color: #10B093;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(45deg, #E1306C, #C13584, #833AB4, #5851DB);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.team-instagram:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

/* --- Testimonials (from testimonials.css) --- */
/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 0;
    background: rgba(16, 176, 147, 0.05);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(245, 166, 28, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(27, 69, 89, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #10B093, #1B4559);
    border-radius: 3px;
}

.testimonial-card {
    background: #ffffff;
    border: 4px solid #1B4559;
    border-radius: 32px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 176, 147, 0.05), rgba(27, 69, 89, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 69, 89, 0.15);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    margin-bottom: 16px;
}

.testimonial-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.testimonial-role {
    color: #10B093;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.testimonial-content {
    color: #1B4559;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* --- Testimonials Enhanced (from testimonials-enhanced.css) --- */
.enhanced-testimonials-section {
    padding: 80px 0;
    background: rgba(16, 176, 147, 0.05);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.enhanced-testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(245, 166, 28, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.enhanced-testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(27, 69, 89, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.enhanced-testimonials-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.enhanced-testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #10B093, #1B4559);
    border-radius: 3px;
}

.enhanced-testimonial-card {
    background: #ffffff;
    border: 4px solid #1B4559;
    border-radius: 32px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 176, 147, 0.05), rgba(27, 69, 89, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-testimonial-card:hover::before {
    opacity: 1;
}

.enhanced-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 69, 89, 0.15);
}

.enhanced-testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    margin-bottom: 16px;
}

.enhanced-testimonial-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.enhanced-testimonial-role {
    color: #10B093;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.enhanced-testimonial-content {
    color: #1B4559;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/*-----KONTAK----- */

.hero-subtitle {
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    margin-top: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Responsive */
.hero-subtitle {
    font-size: 1.2rem;
}

.section-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.section-description {
    color: #10B093;
    font-family: 'Young Serif', serif;
    font-size: 1.5rem;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 500;
}

.section-desc {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    text-align: center;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e8ecf4;
    position: relative;
    overflow: hidden;
}

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

.contact-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #4fd0cb;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.contact-card:hover::after {
    transform: scaleX(1);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8f9ff, #e8f2ff);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #00a19c;
    ;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: #00a19c;
    color: white;
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form-container {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 60px;
    border: 1px solid #e8ecf4;
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #4fd0cb;
}

.contact-form-container h3 {
    font-family: 'Young Serif', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.contact-form-container h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3498db;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e8ecf4;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: #f8f9ff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #00a19c;
    outline: none;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
    background: white;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    background: #00a19c;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 auto;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.map-section {
    margin-bottom: 60px;
}

.map-section h3 {
    font-family: 'Young Serif', serif;
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.map-section h3::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #3498db;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    border: 1px solid #e8ecf4;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Social Media Section */
.social-media-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
}

.social-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.social-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e8ecf4;
    position: relative;
    overflow: hidden;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    text-decoration: none;
    color: inherit;
}

.social-card.instagram::after {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-card.facebook::after {
    background: #1877f2;
}

.social-card.youtube::after {
    background: #ff0000;
}

.social-card.linkedin::after {
    background: #0077b5;
}

.social-card.whatsapp::after {
    background: #25d366;
}

.social-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.social-card:hover::after {
    transform: scaleX(1);
}

.social-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.social-card.instagram .social-icon {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-card.facebook .social-icon {
    background: #1877f2;
    color: white;
}

.social-card.youtube .social-icon {
    background: #ff0000;
    color: white;
}

.social-card.linkedin .social-icon {
    background: #0077b5;
    color: white;
}

.social-card.whatsapp .social-icon {
    background: #25d366;
    color: white;
}

.social-card:hover .social-icon {
    transform: scale(1.1);
}

.social-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.social-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.follow-btn {
    background: #00a19c;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-card:hover .follow-btn {
    transform: scale(1.05);
}

.success-message {
    background: linear-gradient(135deg, #d4edda, #c3e6cb);
    border: 1px solid #a3d9a4;
    color: #155724;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 20px;
    display: none;
}

.success-message i {
    font-size: 2rem;
    margin-bottom: 10px;
    display: block;
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 30px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-container {
        height: 300px;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .social-media-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* -----FOOTER----- */
.footer-section {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #fff;
}

.footer-top {
    background: #1B4559;
    padding: 20px;
}

.footer-bottom {
    background: #134252;
    padding: 10px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-right {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1;
    flex-shrink: 0;
    background: #fff;
    border: 3px solid #10B093;
}

.footer-brand {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.footer-motto {
    font-size: 1.1rem;
    font-style: italic;
    color: #BEFBF6;
    margin-top: 2px;
}

.footer-info {
    min-width: 200px;
    text-align: center;
}

.footer-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #F5A61C;
    margin-bottom: 16px;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: #BEFBF6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background-color: #10B093;
    border-color: #10B093;
    transform: translateY(-2px);
}

/* -----DONASI----- */
.donasi-section {
    padding: 80px 0;
}

.donasi-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.donasi-intro {
    text-align: center;
    margin-bottom: 60px;
}

.donasi-intro h2 {
    font-family: 'Young Serif', serif;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.donasi-intro p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.payment-methods {
    display: grid;
    gap: 30px;
    margin-bottom: 50px;
}

.payment-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e8ecf4;
}

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

.payment-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 15px;
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.bank-icon {
    background: linear-gradient(135deg, #0070ba, #003087);
}

.paypal-icon {
    background: linear-gradient(135deg, #0070ba, #003087);
}

.payment-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.copy-btn {
    background: #00a19c;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 3px 12px;
    font-size: 0.95rem;
    cursor: pointer;
    margin-left: 8px;
    transition: background 0.2s;
}

.account-details {
    display: grid;
    gap: 8px;
    margin-bottom: 10px;
}

.account-row {
    display: grid;
    grid-template-columns: 120px 1fr auto;
    align-items: center;
    gap: 8px;
    background: #f7fafd;
    border-radius: 8px;
    padding: 6px 10px;
}

.account-label {
    font-weight: 600;
    color: #00a19c;
    font-size: 1rem;
    text-align: left;
}

.account-value {
    font-family: 'Poppins', monospace;
    color: #222;
    font-size: 1rem;
    text-align: left;
    overflow-wrap: anywhere;
}

.copy-btn {
    background: #00a19c;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 3px 12px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.copy-btn:hover {
    background: #0056b3;
}

@media (max-width: 600px) {
    .account-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 8px 6px;
    }

    .copy-btn {
        width: 100%;
        margin-top: 4px;
    }
}

/* Donation Note Section */
.donation-note {
    background: #eaf6ff;
    border-radius: 14px;
    padding: 28px 18px 22px 18px;
    margin-top: 32px;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0, 123, 255, 0.06);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.7s;
}

.donation-note h3 {
    color: #007bff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    letter-spacing: 0.5px;
}

.donation-note h3 i.fas.fa-heart {
    color: #ff4d6d;
    font-size: 1.4em;
    animation: heartBeat 1.5s infinite;
}

.donation-note p {
    color: #333;
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0;
}

/* -----BERANDA----- */
/* --- Animations (from animations.css) --- */
@keyframes heroFadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes backgroundFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(-5px, 5px) rotate(2deg);
    }

    50% {
        transform: translate(5px, 10px) rotate(-1deg);
    }

    75% {
        transform: translate(-2px, -5px) rotate(1deg);
    }
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}

@keyframes logoSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes titleReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes titleShimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes footerFadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Header (from header.css) --- */
body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    padding-top: 180px;
    background: #ffffff;
}

/* HEADER - Figma style */
#header {
    background: #1B4559;
    border-radius: 100px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    min-height: 100px;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1000px;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    min-height: 100px;
    width: 100%;
}

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    min-height: 80px;
    max-width: 80px;
    border-radius: 50%;
    background: white;
    object-fit: cover;
}

.brand-title span {
    color: white;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-link {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6em 1.1em;
    border-radius: 28px;
    transition: all 0.3s ease;
    background: transparent;
    box-shadow: none;
    display: inline-block;
    white-space: nowrap;
}

.nav-link.active,
.nav-link:hover {
    background: #F5A61C;
    color: #1B4559;
}

/* HERO */
.hero-section {
    background: linear-gradient(135deg, #1B4559, #10B093);
    padding: 80px 0 60px 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    position: relative;
    border-radius: 30px;
    margin: 20px auto 60px;
    max-width: 95%;
    box-shadow: 0 12px 30px rgba(27, 69, 89, 0.2);
    overflow: hidden;
    animation: heroFadeIn 1s ease-out forwards;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 40px rgba(27, 69, 89, 0.3);
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('img/aiflogo.png') no-repeat;
    background-size: 30%;
    background-position: 110% 120%;
    opacity: 0.05;
    animation: backgroundFloat 15s ease-in-out infinite;
}

.hero-logo-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F5A61C;
    border-radius: 50px;
    padding: 12px 32px 12px 12px;
    margin: 0 auto 40px auto;
    gap: 16px;
    box-shadow: 0 4px 16px rgba(245, 166, 28, 0.3);
    width: fit-content;
    animation: badgePulse 2s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #fff;
    object-fit: cover;
    animation: logoSpin 12s linear infinite;
}

.hero-badge-text {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.hero-title {
    font-family: 'Young Serif', serif;
    font-size: 4rem;
    text-align: center;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    margin: 0 auto 48px auto;
    max-width: 900px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    animation: titleReveal 1.5s ease-out forwards;
    background: linear-gradient(90deg, #ffffff, #F5A61C, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShimmer 6s linear infinite;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.hero-btn {
    background: #10B093;
    color: #fff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    padding: 16px 32px;
    border-radius: 32px;
    border: 3px solid #1B4559;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 176, 147, 0.3);
    min-width: 160px;
    text-align: center;
    display: inline-block;
}

.hero-btn:hover {
    background: #1B4559;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 69, 89, 0.4);
}

.hero-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: footerFadeIn 2s ease-out forwards;
    opacity: 0;
    animation-delay: 0.5s;
}

.hero-part-of {
    color: #ffffff;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-ibs-logo {
    max-width: 200px;
    height: auto;
    border-radius: 2px;
    object-fit: cover;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.hero-ibs-logo:hover {
    transform: scale(1.05);
}



/* WELCOME */
.welcome-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
}

.welcome-desc {
    color: #10B093;
    font-family: 'Young Serif', serif;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 0;
}

/* LAYANAN */
.layanan-flex {
    display: flex;
    gap: 32px;
    justify-content: center;
    margin-top: 32px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 15px;
}

.layanan-card {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.95);
    border: 4px solid #1B4559;
    border-radius: 42px;
    padding: 40px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-width: 280px;
    max-width: 400px;
    box-shadow: 0 2px 8px rgba(27, 69, 89, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.layanan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(27, 69, 89, 0.15);
}

.emoji {
    font-size: 6rem;
    margin-bottom: 16px;
}

.layanan-title {
    color: #10B093;
    font-family: 'Young Serif', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-align: center;
    width: 100%;
}

.layanan-desc {
    color: #1B4559;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    max-width: 90%;
}

.btn-layanan {
    background: #10B093;
    color: #fff;
    border: none;
    border-radius: 32px;
    font-weight: 600;
    padding: 0.7em 2.2em;
    font-size: 1.1rem;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: fit-content;
}

.btn-layanan:hover {
    background: #1B4559;
}

/* KEGIATAN */
.kegiatan-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 50%, #f0f9f7 100%);
    position: relative;
    overflow: hidden;
}

.kegiatan-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(16, 176, 147, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatAnimation 6s ease-in-out infinite;
}

.kegiatan-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(27, 69, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatAnimation 8s ease-in-out infinite reverse;
}

.kegiatan-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.kegiatan-desc {
    color: #10B093;
    font-family: 'Young Serif', serif;
    font-size: 1.5rem;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.embed-instagram-box {
    background: #ffffff;
    border-radius: 25px;
    margin: 0 auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow:
        0 15px 35px rgba(27, 69, 89, 0.08),
        0 5px 15px rgba(16, 176, 147, 0.05);
    border: 2px solid transparent;
    background-clip: padding-box;
    z-index: 1;
}

.embed-instagram-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10B093 0%, #1B4559 50%, #10B093 100%);
    z-index: 1;
}

.embed-instagram-box:hover {
    transform: translateY(-10px);
    box-shadow:
        0 25px 50px rgba(27, 69, 89, 0.15),
        0 10px 25px rgba(16, 176, 147, 0.1);
    border: 2px solid rgba(16, 176, 147, 0.2);
}

.instagram-embed-wrapper {
    width: 100%;
    height: 500px;
    border-radius: 30px 30px 0 0;
    overflow: hidden;
}

.instagram-embed-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 30px 30px 0 0;
}

.instagram-profile-link {
    padding: 16px;
    background: #1B4559;
    border-radius: 0 0 20px 20px;
}

.instagram-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.instagram-link:hover {
    color: #F5A61C;
}

.instagram-icon {
    font-size: 1.5rem;
}

/* FOOTER */
.footer-section {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #fff;
}

.footer-top {
    background: #1B4559;
    padding: 60px 0 40px;
}

.footer-bottom {
    background: #134252;
    padding: 20px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-left {
    flex: 1;
    min-width: 300px;
}

.footer-right {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    aspect-ratio: 1;
    flex-shrink: 0;
    background: #fff;
    border: 3px solid #10B093;
}

.footer-brand {
    font-family: 'Poppins', Arial, Helvetica, sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.footer-motto {
    font-size: 1.1rem;
    font-style: italic;
    color: #BEFBF6;
    margin-top: 4px;
}

.footer-info {
    min-width: 200px;
    text-align: center;
}

.footer-info h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #F5A61C;
    margin-bottom: 16px;
}

.footer-contact p {
    margin: 8px 0;
    font-size: 1rem;
    color: #fff;
    line-height: 1.5;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.95rem;
    color: #BEFBF6;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.footer-social a:hover {
    background-color: #10B093;
    border-color: #10B093;
    transform: translateY(-2px);
}

/* --- Fixes (from fixes.css) --- */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* --- Founder (from founder.css) --- */
/* TEAM SECTION */
.team-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: rgba(27, 69, 89, 0.03);
    border-radius: 50%;
    z-index: -1;
}

.team-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(16, 176, 147, 0.05);
    border-radius: 50%;
    z-index: -1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.team-card {
    background: #ffffff;
    border: 3px solid #1B4559;
    border-radius: 32px;
    padding: 32px 24px 24px 24px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(27, 69, 89, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(180deg, rgba(16, 176, 147, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(27, 69, 89, 0.15);
}

.team-photo {
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.team-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    box-shadow: 0 8px 20px rgba(16, 176, 147, 0.2);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(16, 176, 147, 0.3);
}

.team-info {
    text-align: center;
}

.team-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-position {
    color: #10B093;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-instagram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: linear-gradient(45deg, #E1306C, #C13584, #833AB4, #5851DB);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.3);
}

.team-instagram:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

/* --- Testimonials (from testimonials.css) --- */
/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 80px 0;
    background: rgba(16, 176, 147, 0.05);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(245, 166, 28, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(27, 69, 89, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.testimonials-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #10B093, #1B4559);
    border-radius: 3px;
}

.testimonial-card {
    background: #ffffff;
    border: 4px solid #1B4559;
    border-radius: 32px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 176, 147, 0.05), rgba(27, 69, 89, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 69, 89, 0.15);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    margin-bottom: 16px;
}

.testimonial-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.testimonial-role {
    color: #10B093;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.testimonial-content {
    color: #1B4559;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* --- Testimonials Enhanced (from testimonials-enhanced.css) --- */
.enhanced-testimonials-section {
    padding: 80px 0;
    background: rgba(16, 176, 147, 0.05);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.enhanced-testimonials-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: rgba(245, 166, 28, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.enhanced-testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 150px;
    height: 150px;
    background: rgba(27, 69, 89, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.enhanced-testimonials-title {
    font-family: 'Young Serif', serif;
    color: #1B4559;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    position: relative;
}

.enhanced-testimonials-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #10B093, #1B4559);
    border-radius: 3px;
}

.enhanced-testimonial-card {
    background: #ffffff;
    border: 4px solid #1B4559;
    border-radius: 32px;
    padding: 40px 24px;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.enhanced-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(16, 176, 147, 0.05), rgba(27, 69, 89, 0.05));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.enhanced-testimonial-card:hover::before {
    opacity: 1;
}

.enhanced-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(27, 69, 89, 0.15);
}

.enhanced-testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    margin-bottom: 16px;
}

.enhanced-testimonial-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.enhanced-testimonial-role {
    color: #10B093;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.enhanced-testimonial-content {
    color: #1B4559;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* --- About, Vision & Mission Section (Card Box Style) --- */
.about-vm-section {
    background: #f8fcfc;
    padding: 70px 0 60px 0;
}

.about-vm-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    align-items: stretch;
}

.about-vm-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 6px 24px rgba(27, 69, 89, 0.08);
    border: 2px solid #e6f2f0;
    padding: 36px 28px 32px 28px;
    flex: 1 1 320px;
    max-width: 370px;
    min-width: 270px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.about-vm-card:hover {
    box-shadow: 0 12px 32px rgba(16, 176, 147, 0.13);
    transform: translateY(-6px) scale(1.03);
}

.about-card .section-title {
    font-size: 1.5rem;
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 18px;
}

.about-card .section-description {
    color: #1B4559;
    font-size: 1.05rem;
    line-height: 1.7;
}

.vision-card .emoji,
.mission-card .emoji {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.vm-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #10B093;
    margin-bottom: 10px;
    font-family: 'Poppins', Arial, sans-serif;
}

.vm-desc {
    color: #1B4559;
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Vision & Mission Card Icon Style */
.emoji-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f7f4 60%, #c6e6ff 100%);
    box-shadow: 0 2px 10px rgba(16, 176, 147, 0.08);
    margin: 0 auto 10px auto;
    font-size: 2rem;
    color: #10b093;
}

.vision-emoji .emoji-circle {
    background: linear-gradient(135deg, #e0f7f4 60%, #c6e6ff 100%);
    color: #10b093;
}

.mission-emoji .emoji-circle {
    background: linear-gradient(135deg, #fff3e0 60%, #ffe0e6 100%);
    color: #f55a42;
}

/* Pretty bullet list for misi */
.pretty-list {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 260px;
    text-align: left;
}

.pretty-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #1B4559;
}

.pretty-bullet {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f7f4 60%, #c6e6ff 100%);
    color: #10b093;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 1px 4px rgba(16, 176, 147, 0.07);
}

.pretty-list li:nth-child(2) .pretty-bullet {
    background: linear-gradient(135deg, #fff3e0 60%, #ffe0e6 100%);
    color: #f5a61c;
}

.pretty-list li:nth-child(3) .pretty-bullet {
    background: linear-gradient(135deg, #e0eaff 60%, #e0f7f4 100%);
    color: #4285f4;
}

@media (max-width: 900px) {
    .about-vm-grid {
        flex-direction: column;
        gap: 24px;
        align-items: center;
    }

    .about-vm-card {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}

/* About Section (No Card, Centered, Simple) - Diperbesar dan Rapi */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fcfc 0%, #ffffff 100%);
}

.about-nocard-center {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 20px;
}

.about-nocard-title {
    font-size: 2.8rem;
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.3;
}

.about-nocard-desc {
    color: #1B4559;
    font-size: 1.3rem;
    line-height: 1.9;
    margin: 0 auto;
    max-width: 800px;
    font-weight: 400;
}

@media (max-width: 768px) {
    .about-nocard-title {
        font-size: 2.2rem;
        margin-bottom: 24px;
    }

    .about-nocard-desc {
        font-size: 1.1rem;
        line-height: 1.7;
    }

    .about-nocard-center {
        padding: 30px 15px;
    }
}

/* --- Founder Section Styling --- */
.founder-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 50%, #f0f9f7 100%);
    position: relative;
    overflow: hidden;
}

.founder-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(16, 176, 147, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatAnimation 6s ease-in-out infinite;
}

.founder-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(27, 69, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatAnimation 8s ease-in-out infinite reverse;
}

@keyframes floatAnimation {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

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

.founder-content {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.founder-card {
    background: #ffffff;
    border-radius: 30px;
    padding: 50px 40px;
    max-width: 600px;
    width: 100%;
    box-shadow:
        0 20px 40px rgba(27, 69, 89, 0.1),
        0 10px 20px rgba(16, 176, 147, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #10B093 0%, #1B4559 50%, #10B093 100%);
    z-index: 1;
}

.founder-card:hover {
    transform: translateY(-15px);
    box-shadow:
        0 30px 60px rgba(27, 69, 89, 0.15),
        0 15px 30px rgba(16, 176, 147, 0.1);
    border: 2px solid rgba(16, 176, 147, 0.2);
}

.founder-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.founder-photo-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.founder-photo-wrapper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, #10B093, #1B4559, #10B093, #1B4559);
    border-radius: 50%;
    z-index: 0;
    animation: rotateGradient 3s linear infinite;
}

@keyframes rotateGradient {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.founder-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #ffffff;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-card:hover .founder-photo {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.founder-info {
    text-align: center;
}

.founder-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.founder-name::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #10B093, #1B4559);
    border-radius: 2px;
}

.founder-position {
    display: inline-block;
    background: linear-gradient(135deg, #10B093, #0d9579);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 25px;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(16, 176, 147, 0.3);
    transition: all 0.3s ease;
}

.founder-card:hover .founder-position {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 176, 147, 0.4);
}

.founder-bio {
    color: #4a5568;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: justify;
}

.founder-quote {
    background: linear-gradient(135deg, rgba(16, 176, 147, 0.1), rgba(27, 69, 89, 0.1));
    border-left: 4px solid #10B093;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 0 15px 15px 0;
    font-style: italic;
    font-size: 1.1rem;
    color: #2d3748;
    position: relative;
    line-height: 1.6;
}

.founder-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 3rem;
    color: #10B093;
    font-family: Georgia, serif;
    opacity: 0.7;
}

.founder-quote::after {
    content: '"';
    position: absolute;
    bottom: -20px;
    right: 15px;
    font-size: 3rem;
    color: #10B093;
    font-family: Georgia, serif;
    opacity: 0.7;
}

.founder-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transition: transform 0.3s ease;
    z-index: 0;
}

.social-link i {
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.social-link.instagram {
    background: linear-gradient(45deg, #E1306C, #C13584, #833AB4, #5851DB);
    color: white;
    box-shadow: 0 6px 20px rgba(225, 48, 108, 0.4);
}

.social-link.linkedin {
    background: linear-gradient(45deg, #0077B5, #005885);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.4);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-link.instagram:hover {
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.6);
}

.social-link.linkedin:hover {
    box-shadow: 0 10px 30px rgba(0, 119, 181, 0.6);
}

.social-link:hover i {
    transform: scale(1.2);
}

/* --- Alumni Testimonials Section Styling --- */
.alumni-testimonials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4f8 50%, #f0f9f7 100%);
    position: relative;
    overflow: hidden;
}

.alumni-testimonials-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 166, 28, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatAnimation 8s ease-in-out infinite;
}

.alumni-testimonials-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(16, 176, 147, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: floatAnimation 10s ease-in-out infinite reverse;
}

.testimonials-scroll-container {
    position: relative;
    margin-top: 60px;
    padding: 0 60px;
}

.alumni-testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 1;
    padding: 20px 0;
    max-width: 100%;
    margin: 0 auto;
}

.alumni-testimonials-container::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.alumni-testimonial-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 350px;
    max-width: 400px;
    flex-shrink: 0;
}

.alumni-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10B093 0%, #1B4559 50%, #10B093 100%);
    z-index: 1;
    transition: height 0.3s ease;
}

.alumni-testimonial-card:hover::before {
    height: 8px;
}

.alumni-testimonial-card:hover {
    transform: translateY(-8px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    gap: 20px;
}

.alumni-photo {
    position: relative;
    flex-shrink: 0;
}

.alumni-photo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #10B093;
    transition: all 0.3s ease;
}

.alumni-testimonial-card:hover .alumni-photo img {
    transform: scale(1.05);
}

.alumni-info {
    flex-grow: 1;
}

.alumni-name {
    color: #1B4559;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
}

.alumni-position {
    color: #10B093;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 3px;
    line-height: 1.3;
}

.alumni-degree {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
    font-style: italic;
}

.testimonial-quote {
    position: relative;
    padding: 20px 0;
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.alumni-testimonial-card:hover .quote-icon {
    transform: scale(1.1);
    opacity: 1;
}

.testimonial-quote p {
    color: #4a5568;
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: justify;
    margin: 0;
    position: relative;
    z-index: 2;
}

.testimonial-quote::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #10B093, #1B4559);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.alumni-testimonial-card:hover .testimonial-quote::after {
    width: 80px;
}

/* Scroll Arrows - Hidden */
.scroll-arrow {
    display: none;
}

.scroll-arrow:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 12px 30px rgba(16, 176, 147, 0.4);
    background: linear-gradient(135deg, #0d9579, #0a7a65);
}

.scroll-left {
    left: 10px;
}

.scroll-right {
    right: 10px;
}

/* Card Animation Variants */
.alumni-testimonial-card:nth-child(1) {
    animation-delay: 0.1s;
}

.alumni-testimonial-card:nth-child(2) {
    animation-delay: 0.2s;
}

.alumni-testimonial-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Enhanced Visual Effects */
.alumni-testimonial-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #10B093, #1B4559, #10B093, #1B4559);
    border-radius: 27px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.alumni-testimonial-card:hover::after {
    opacity: 0.1;
}

/* Responsive Design for Testimonials */
@media (max-width: 1200px) {
    .alumni-testimonials-container {
        gap: 25px;
    }

    .alumni-testimonial-card {
        min-width: 320px;
        max-width: 350px;
    }
}

@media (max-width: 768px) {
    .alumni-testimonials-section {
        padding: 60px 0;
    }

    .testimonials-scroll-container {
        padding: 0 20px;
    }

    .alumni-testimonials-container {
        gap: 20px;
    }

    .alumni-testimonial-card {
        padding: 30px 25px;
        min-width: 280px;
        max-width: 320px;
    }

    .testimonial-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .alumni-photo img {
        width: 70px;
        height: 70px;
    }

    .alumni-name {
        font-size: 1.2rem;
    }

    .alumni-position {
        font-size: 0.95rem;
    }

    .testimonial-quote p {
        font-size: 1rem;
        text-align: left;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .alumni-testimonial-card {
        padding: 25px 20px;
        margin: 0;
        min-width: 260px;
        max-width: 300px;
    }

    .testimonial-quote p {
        font-size: 0.95rem;
    }

    .quote-icon {
        font-size: 1.5rem;
    }

    .scroll-arrow {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* -----NAVBAR----- */
#header {
    background: #1B4559;
    border-radius: 100px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    min-height: 100px;
    display: flex;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    box-shadow: 0 8px 25px rgba(27, 69, 89, 0.3);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    min-height: 100px;
    width: 100%;
}

.header-logo-group {
    display: flex;
    align-items: center;
    gap: 24px;
}

.logo {
    min-height: 80px;
    max-width: 80px;
    border-radius: 50%;
    background: white;
    object-fit: cover;
}

.brand-title span {
    color: white;
    font-family: 'Poppins', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    gap: 12px;
    align-items: center;
}

.nav-link {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    padding: 0.6em 1.1em;
    border-radius: 28px;
    transition: all 0.3s ease;
    background: transparent;
    box-shadow: none;
    display: inline-block;
    white-space: nowrap;
}

.nav-link.active,
.nav-link:hover {
    background: #F5A61C;
    color: #1B4559;
}


/* Hide mobile nav by default */
.mobile-nav-menu {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 90px;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    background: rgba(255, 255, 255, 0.95);
    z-index: 1200;
    padding: 20px 12px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 0.5px solid rgba(255, 255, 255, 0.6);
    align-items: stretch;
    pointer-events: none;
    opacity: 0;
    transform: translateX(-50%) translateY(-15px) scale(0.92);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.mobile-nav-menu.active {
    display: flex !important;
    pointer-events: auto;
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.mobile-nav-link {
    color: #1B4559;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 14px;
    margin: 4px 0;
    transition: all 0.25s ease;
    text-align: center;
    background: transparent;
    font-family: 'Poppins', Arial, sans-serif;
}

.mobile-nav-link.active,
.mobile-nav-link:hover {
    background: rgba(245, 166, 28, 0.15);
    color: #1B4559;
    transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(245, 166, 28, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    z-index: 1300;
    position: relative;
    padding: 10px;
    width: 40px;
    height: 40px;
}

/* Hamburger Button Styling */
.mobile-menu-btn .hamburger {
    display: block;
    position: relative;
    width: 20px;
    height: 2px;
    background: #F5A61C;
    border-radius: 1px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.mobile-menu-btn .hamburger::before,
.mobile-menu-btn .hamburger::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 2px;
    background: #F5A61C;
    border-radius: 1px;
    transition: all 0.3s ease;
    left: 0;
}

.mobile-menu-btn .hamburger::before {
    top: -6px;
}

.mobile-menu-btn .hamburger::after {
    top: 6px;
}

/* Hamburger Active State (X animation) */
.mobile-menu-btn.active .hamburger {
    background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.mobile-menu-btn.active .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

@media (max-width: 900px) {
    #header {
        border-radius: 0 0 40px 40px;
        min-height: 80px;
        width: 100vw;
        left: 0;
        transform: none;
        top: 0;
        max-width: 100vw;
        padding: 0;
        box-shadow: 0 4px 20px rgba(27, 69, 89, 0.4);
        -webkit-backdrop-filter: blur(15px);
        backdrop-filter: blur(15px);
    }

    .header-flex {
        padding: 0 12px;
        gap: 12px;
    }

    .brand-title span {
        font-size: 1.1rem;
    }

    .logo {
        min-height: 44px;
        max-width: 44px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5em 1.2em;
    }
}

@media (max-width: 700px) {
    .nav-menu {
        display: none !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    .mobile-nav-menu {
        width: 260px;
        top: 85px;
        padding: 16px 10px;
    }

    .mobile-nav-link {
        font-size: 0.85rem;
        padding: 10px 14px;
    }

    .header-flex {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 0 10px;
        position: relative;
        z-index: 1201;
        background: transparent;
    }

    .header-logo-group {
        z-index: 1202;
        background: transparent;
        position: relative;
        display: flex;
        align-items: center;
        gap: 16px;
    }

    .logo {
        min-height: 44px;
        max-width: 44px;
        display: block;
        position: relative;
        z-index: 1202;
    }
}

@media (max-width: 500px) {
    .mobile-nav-menu {
        width: 240px;
        top: 80px;
        padding: 14px 8px;
    }

    .mobile-nav-link {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .header-flex {
        flex-direction: row;
        align-items: center;
        padding: 8px 4px;
        gap: 6px;
    }

    .brand-title span {
        font-size: 0.95rem;
    }

    .logo {
        min-height: 32px;
        max-width: 32px;
    }
}
