body {
    font-family: "Atkinson Hyperlegible Next", sans-serif;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0;
}
/* ============================================= */
/* === MODERN-HEADER SECTION === */
.modern-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.07);
    padding: 0.65rem 0;
    transition: all 0.4s ease;
    border-bottom: 1px solid rgba(99, 102, 241, 0.12);
}
.modern-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6, #ec4899, #6366f1);
    background-size: 200% auto;
    animation: gradientFlow 5s linear infinite;
}
@keyframes gradientFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
/* Scroll Effect - More Compact */
.modern-header.scrolled {
    padding: 0.45rem 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}
/* === HEADER-CONTENT SECTION === */
.modern-header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* === LOGO-SECTION === */
.modern-header .logo-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.modern-header .logo-wrapper {
    position: relative;
}
.modern-header .logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.4s ease;
}
.modern-header .logo-wrapper:hover::before {
    opacity: 0.2;
}
.modern-header .main-logo {
    height: 52px;
    transition: all 0.4s ease;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.12));
}
.modern-header.scrolled .main-logo {
    height: 42px;
}
.modern-header .main-logo:hover {
    transform: scale(1.06);
}
/* === INSTITUTE-NAME SECTION === */
.modern-header .institute-name {
    display: flex;
    flex-direction: column;
}
.modern-header .main-name {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
    color: #1f2937;
    letter-spacing: -0.3px;
}
.modern-header.scrolled .main-name {
    font-size: 0.95rem;
}
/* === HEADER-ACTIONS SECTION === */
.modern-header .header-actions {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}
/* === ACCREDITATION-BADGES SECTION === */
.modern-header .accreditation-badges {
    display: flex;
    gap: 0.9rem;
    align-items: center;
    padding: 0.45rem 1rem;
    background: linear-gradient(135deg, rgba(99,102,241,0.04), rgba(139,92,246,0.04));
    border-radius: 14px;
    border: 1px solid rgba(99,102,241,0.08);
    position: relative;
    overflow: hidden;
}
.modern-header .accreditation-badges::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.25), transparent);
    transform: rotate(45deg);
    animation: shineMove 4s infinite;
}
@keyframes shineMove {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.modern-header .badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    transition: all 0.3s ease;
}
.modern-header .badge-item:hover {
    transform: translateY(-4px);
}
.modern-header .badge-item img {
    height: 42px;
    transition: all 0.3s ease;
}
.modern-header .badge-item:hover img {
    transform: scale(1.08);
}
.modern-header .badge-label {
    font-size: 0.65rem;
    font-weight: 700;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    opacity: 1;
    transition: all 0.3s ease;
}
.modern-header .badge-item:hover .badge-label {
    opacity: 1;
}
/* === HELPLINE SECTION (WhatsApp) === */
.modern-header .helpline a {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    padding: 9px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}
.modern-header .helpline a:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}
.modern-header .helpline a svg {
    width: 20px;
    height: 20px;
}
/* === MOBILE-MENU-TOGGLE === */
.modern-header .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 0.5rem;
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.08));
    border-radius: 8px;
    transition: all 0.3s ease;
}
.modern-header .mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(139,92,246,0.15));
}
.modern-header .mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 3px;
    transition: all 0.3s ease;
}
.modern-header .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.modern-header .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.modern-header .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* === MOBILE MENU === */
.mobile-menu {
    display: none;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(99, 102, 241, 0.12);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.mobile-menu.active {
    max-height: 300px;
    padding: 1.5rem 2rem;
}
.mobile-accreditation h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}
.mobile-badges {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    flex-wrap: wrap;
}
.mobile-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(99,102,241,0.06), rgba(139,92,246,0.06));
    border-radius: 12px;
    border: 1px solid rgba(99,102,241,0.1);
    flex: 1;
    min-width: 100px;
    transition: all 0.3s ease;
}
.mobile-badge-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(99,102,241,0.15);
}
.mobile-badge-item img {
    height: 50px;
    transition: all 0.3s ease;
}
.mobile-badge-item:hover img {
    transform: scale(1.1);
}
.mobile-badge-item span {
    font-size: 0.7rem;
    font-weight: 700;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    text-align: center;
}
/* ============================================= */
/* RESPONSIVE */
@media (max-width: 992px) {
    .modern-header .header-content {
        padding: 0 1.5rem;
    }
    .modern-header .accreditation-badges {
        gap: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    .modern-header .badge-item img {
        height: 36px;
    }
    .modern-header .helpline a {
        font-size: 14.5px;
        padding: 7px 13px;
    }
    .modern-header .helpline a span {
        display: none;
    }
    .modern-header .helpline a svg {
        width: 22px;
        height: 22px;
    }
}
@media (max-width: 768px) {
    .modern-header .accreditation-badges {
        display: none;
    }
    .modern-header .mobile-menu-toggle {
        display: flex;
    }
    .mobile-menu {
        display: block;
    }
    .modern-header .helpline a {
        font-size: 14px;
        padding: 8px 12px;
    }
    .modern-header .main-name {
        font-size: 0.98rem;
        display: none;
    }
    .mobile-menu.active {
        padding: 1.5rem;
    }
}
@media (max-width: 480px) {
    .modern-header .header-content {
        padding: 0 1rem;
    }
    .mobile-badges {
        gap: 0.5rem;
    }
    .mobile-badge-item {
        padding: 0.75rem;
        min-width: 80px;
    }
    .mobile-badge-item img {
        height: 40px;
    }
}
/* Banner Section with Animated Background */
/* ============================================= */
/* === HERO-SECTION - Modern Pharmaceutical Theme === */
.hero-section {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    color: white;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75)),
        url('../images/gnipst-bg.jpg') center/cover no-repeat;
    z-index: 0;
}
/* Geometric Shapes */
.hero-section .geometric-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero-section .shape {
    position: absolute;
    opacity: 0.15;
    animation: floatShape 20s infinite ease-in-out;
}
.hero-section .shape-1 {
    width: 340px;
    height: 340px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    top: 15%;
    left: -10%;
    animation-delay: 0s;
}
.hero-section .shape-2 {
    width: 260px;
    height: 260px;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
    top: 50%;
    right: -8%;
    animation-delay: 5s;
}
.hero-section .shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    bottom: 18%;
    left: 8%;
    animation-delay: 10s;
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(50px, -50px) rotate(180deg); }
}
/* Hero Content */
.hero-section .hero-content {
    position: relative;
    z-index: 2;
}
/* Hero Badge */
.hero-section .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    animation: glowBadge 3s infinite alternate;
}
@keyframes glowBadge {
    0% { box-shadow: 0 6px 25px rgba(16, 185, 129, 0.4); }
    100% { box-shadow: 0 6px 35px rgba(16, 185, 129, 0.7); }
}
/* Hero Title */
.hero-section .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s ease 0.3s both;
}
.hero-section .hero-title .highlight {
    background: linear-gradient(90deg, #10b981, #34d399, #10b981);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 4s linear infinite;
}
@keyframes shimmerText {
    to { background-position: 200% center; }
}
/* Subtitle */
.hero-section .hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 1.2s ease 0.5s both;
}
/* Scholarship Highlight */
.hero-section .scholarship-highlight {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 1.8rem;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    animation: fadeInUp 1.2s ease 0.7s both;
}
.hero-section .scholarship-highlight::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: rotate(45deg);
    animation: shineEffect 4s infinite;
}
@keyframes shineEffect {
    0% { transform: translateX(-120%) translateY(-120%) rotate(45deg); }
    100% { transform: translateX(120%) translateY(120%) rotate(45deg); }
}
.hero-section .scholarship-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}
.hero-section .scholarship-highlight h4 {
    font-size: 1.55rem;
    margin-bottom: 0.8rem;
    color: #34d399;
}
.hero-section .scholarship-highlight p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 1.02rem;
}
/* CTA Buttons */
.hero-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    overflow: hidden;
}
.hero-section .cta-button.primary {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}
.hero-section .cta-button.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 50px rgba(16, 185, 129, 0.55);
}
.hero-section .cta-button.secondary {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255,255,255,0.35);
}
.hero-section .cta-button.secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}
/* Modern Form Card */
.hero-section .modern-form-card {
    background: rgba(255,255,255,0.97);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.28);
    border: 1px solid rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInRight 1s ease 0.6s both;
}
.hero-section .modern-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #10b981, #34d399, #10b981);
    background-size: 200% auto;
    animation: gradientFlow 4s linear infinite;
}
@keyframes gradientFlow {
    to { background-position: 200% center; }
}
.hero-section .form-header {
    text-align: center;
    margin-bottom: 2rem;
}
.hero-section .form-header h3 {
    font-size: 1.85rem;
    font-weight: 800;
    color: #1e2937;
}
.hero-section .form-header p {
    color: #64748b;
    font-size: 0.95rem;
}
.hero-section .modern-input,
.hero-section .modern-select {
    width: 100%;
    padding: 1rem 1.2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    margin-bottom: 1.3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.hero-section .modern-input:focus,
.hero-section .modern-select:focus {
    border-color: #10b981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
    transform: translateY(-2px);
}
.hero-section .submit-button {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
}
.hero-section .submit-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(16, 185, 129, 0.5);
}
/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(60px); }
    to { opacity: 1; transform: translateX(0); }
}
/* Responsive */
@media (max-width: 992px) {
    .hero-section .hero-title { font-size: 2.8rem; }
    .hero-section .modern-form-card { padding: 2rem; }
}
@media (max-width: 768px) {
    .hero-section { padding: 100px 0 60px; min-height: auto; }
    .hero-section .hero-title { font-size: 2.4rem; }
    .hero-section .modern-form-card { margin-top: 2rem; }
}
/* About Section */
/* ============================================= */
/* === ABOUT-SECTION - Enhanced with Uniform Height Cards === */
.about-section {
    position: relative;
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 40%, #f1f8f5 100%);
    overflow: hidden;
}
/* Background Orbs */
.about-section .bg-orbs .orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.09;
    filter: blur(65px);
    pointer-events: none;
    mix-blend-mode: soft-light;
}
.about-section .orb-1 {
    width: 580px;
    height: 580px;
    background: radial-gradient(circle at 30% 30%, #10b981, #34d399, transparent 70%);
    top: -220px;
    right: -200px;
    animation: orb-float 32s infinite ease-in-out;
}
.about-section .orb-2 {
    width: 460px;
    height: 460px;
    background: radial-gradient(circle at 70% 70%, #6366f1, #818cf8, transparent 70%);
    bottom: -160px;
    left: -160px;
    animation: orb-float 27s infinite ease-in-out reverse;
}
.about-section .orb-3 {
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at 50% 40%, #f59e0b, transparent 75%);
    top: 40%;
    left: 8%;
    animation: orb-float 35s infinite ease-in-out;
}
@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(70px, -60px) rotate(8deg); }
}
/* Header */
.about-section .about-header {
    margin-bottom: 4.5rem;
    position: relative;
    z-index: 2;
}
.about-section .section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 0.65rem 2rem;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.35);
    margin-bottom: 1.2rem;
}
.about-section .section-title {
    font-size: 3.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e2937, #0f766e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.8rem;
    letter-spacing: -1px;
}
.about-section .section-tagline {
    font-size: 1.45rem;
    color: #475569;
    font-weight: 600;
    max-width: 720px;
    margin: 0 auto;
}
/* Tabs */
.about-section .tabs-container {
    max-width: 1150px;
    margin: 0 auto 5.5rem;
    position: relative;
    z-index: 2;
}
.about-section .tab-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    background: rgba(255,255,255,0.95);
    padding: 14px 20px;
    border-radius: 60px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(16,185,129,0.15);
    backdrop-filter: blur(12px);
}
.about-section .tab-button {
    padding: 16px 36px;
    border: none;
    background: transparent;
    font-size: 1.08rem;
    font-weight: 700;
    color: #64748b;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-section .tab-button.active,
.about-section .tab-button:hover {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 12px 35px rgba(16, 185, 129, 0.4);
}
.about-section .tab-content {
    display: none;
    animation: tabSlide 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.about-section .tab-content.active {
    display: block;
}
@keyframes tabSlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.about-section .content-card {
    margin-top:25px;
    background: white;
    padding: 3.2rem 3.8rem;
    border-radius: 28px;
    box-shadow: 0 25px 70px rgba(0,0,0,0.09);
    border: 1px solid rgba(16,185,129,0.12);
}
.about-section .content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.15);
}
.about-section .about-text {
    font-size: 1.18rem;
    line-height: 1.95;
    color: #334155;
}
/* Highlights - Same Height Cards */
.about-section .highlights-grid {
    max-width: 1200px;
    margin: 0 auto;
}
.about-section .highlights-grid .row {
    display: flex;
    flex-wrap: wrap;
}
.about-section .highlight-card {
    background: white;
    padding: 2.8rem 2rem;
    border-radius: 24px;
    text-align: center;
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;                    /* Important for same height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.about-section .highlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #34d399);
    transform: scaleX(0);
    transition: transform 0.6s ease;
}
.about-section .highlight-card:hover::before {
    transform: scaleX(1);
}
.about-section .highlight-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 30px 80px rgba(16, 185, 129, 0.22);
    border-color: #10b981;
}
.about-section .highlight-number {
    font-size: 3.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 1rem;
}
.about-section .highlight-label {
    font-size: 1.15rem;
    font-weight: 600;
    color: #475569;
    line-height: 1.45;
    flex-grow: 1;                    /* Helps maintain alignment */
    display: flex;
    align-items: center;
}
.about-section .highlight-bar {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #34d399);
    margin: 1.5rem auto 0;
    border-radius: 10px;
}
/* CTA */
.about-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 1.25rem 3.2rem;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    font-size: 1.18rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 15px 45px rgba(16, 185, 129, 0.4);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.about-section .cta-button:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 25px 65px rgba(16, 185, 129, 0.5);
}
.about-section .cta-button i {
    transition: transform 0.5s ease;
}
.about-section .cta-button:hover i {
    transform: translateX(12px);
}
/* Responsive */
@media (max-width: 992px) {
    .about-section .section-title { font-size: 2.7rem; }
    .about-section .content-card { padding: 2.6rem 2.2rem; }
}
@media (max-width: 768px) {
    .about-section { padding: 90px 0 110px; }
    .about-section .tab-nav { flex-direction: column; align-items: center; padding: 12px; }
    .about-section .highlight-number { font-size: 2.9rem; }
}
/* Our Courses Section */
.courses-section {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #f8fdfa 0%, #ffffff 45%, #e6f7f0 100%);
    position: relative;
    overflow: hidden;
}
.courses-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 12% 22%, rgba(6, 126, 84, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 88% 78%, rgba(39, 53, 110, 0.04) 0%, transparent 55%),
        radial-gradient(circle at 35% 85%, rgba(16, 185, 129, 0.03) 0%, transparent 45%);
    pointer-events: none;
}
.courses-section .section-title {
    text-align: center;
    font-size: 3.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 15px;
}
.courses-section .section-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    color: #444;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
/* Modern Search Bar */
.courses-section .search-bar {
    max-width: 620px;
    margin: 0 auto 30px;
}
.courses-section .search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    padding: 6px 8px 6px 24px;
    transition: all 0.3s ease;
}
.courses-section .search-wrapper:focus-within {
    box-shadow: 0 12px 35px rgba(6, 126, 84, 0.15);
    transform: translateY(-2px);
}
.courses-section .search-icon {
    font-size: 22px;
    color: #067e54;
    margin-right: 12px;
}
.courses-section .search-bar input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 17px;
    padding: 12px 0;
    background: transparent;
}
.courses-section .search-bar input::placeholder {
    color: #888;
}
/* Tabs - Modern pill style */
.courses-section .course-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.courses-section .course-tabs::-webkit-scrollbar {
    display: none;
}
.courses-section .course-tabs .tab {
    padding: 14px 32px;
    background: #f1f5f9;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    flex: 0 0 auto;
}
.courses-section .course-tabs .tab:hover {
    background: #e6f0eb;
    transform: translateY(-2px);
}
.courses-section .course-tabs .tab.active {
    background: linear-gradient(135deg, #067e54, #10b981);
    color: white;
    box-shadow: 0 8px 20px rgba(6, 126, 84, 0.3);
    border-color: #067e54;
}
/* Tab Content */
.courses-section .tab-content {
    display: none;
    animation: fadeInUp 0.5s ease forwards;
}
.courses-section .tab-content.active {
    display: block;
}
/* Degree Columns Layout */
.courses-section .degree-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 20px;
}
/* Column Header */
.courses-section .column-header {
    background: linear-gradient(135deg, #067e54, #10b981);
    padding: 18px 24px;
    border-radius: 16px 16px 0 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(6, 126, 84, 0.2);
}
.courses-section .column-header h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.5px;
}
.courses-section .program-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
}
/* Degree Column */
.courses-section .degree-column {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}
.courses-section .degree-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(6, 126, 84, 0.15);
}
/* Course Cards List */
.courses-section .course-cards-list {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
/* Individual Course Card */
.courses-section .course-card {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.courses-section .course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #067e54, #10b981);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.courses-section .course-card:hover {
    background: #ffffff;
    border-color: #067e54;
    transform: translateX(8px);
    box-shadow: 0 8px 20px rgba(6, 126, 84, 0.12);
}
.courses-section .course-card:hover::before {
    opacity: 1;
}
/* Card content */
.courses-section .course-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1e2937;
    margin-bottom: 10px;
    line-height: 1.3;
}
.courses-section .course-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 12px;
}
/* Meta info */
.courses-section .course-meta {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    flex-wrap: wrap;
}
.courses-section .duration {
    background: #ecfdf5;
    color: #067e54;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.courses-section .mode {
    background: #f1f5f9;
    color: #555;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 500;
}
/* Fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Responsive */
@media (max-width: 1024px) {
    .courses-section .degree-columns {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .courses-section {
        padding: 60px 0 40px;
    }
    .courses-section .section-title {
        font-size: 2.5rem;
    }
    .courses-section .section-subtitle {
        font-size: 16px;
    }
    .courses-section .degree-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .courses-section .course-tabs .tab {
        padding: 12px 24px;
        font-size: 15px;
    }
    .courses-section .column-header h3 {
        font-size: 1.2rem;
    }
    .courses-section .course-card h4 {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .courses-section .section-title {
        font-size: 2rem;
    }
    .courses-section .course-tabs .tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    .courses-section .column-header {
        padding: 14px 18px;
    }
    .courses-section .course-cards-list {
        padding: 15px;
        gap: 12px;
    }
    .courses-section .course-card {
        padding: 16px;
    }
}
/* Achievements Section */
.achievements-section {
    position: relative;
    padding: 90px 0 80px;
    background: linear-gradient(135deg, #0a1628 0%, #1e2a4a 100%);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}
/* Vibrant colorful background accents */
.achievements-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 25%, rgba(16, 185, 129, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.22) 0%, transparent 55%),
        radial-gradient(circle at 35% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 45%);
    pointer-events: none;
    z-index: 1;
}
/* Section Title - More vibrant & colorful gradient */
.achievements-section .section-title {
    text-align: center;
    font-size: 3.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, #10b981 0%, #ffd700 35%, #60a5fa 70%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.8px;
    line-height: 1;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}
.achievements-section .section-title span {
    color: #ffd700;
    -webkit-text-fill-color: #ffd700;
}
/* Subtitle - Slightly brighter */
.achievements-section .section-subtitle {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.9;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}
/* Wrapper for Horizontal Scroll */
.achievements-section .achievements-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    z-index: 2;
}
/* Scrolling Achievements */
.achievements-section .achievements-slider {
    display: flex;
    width: max-content;
    animation: scrollAnimation 25s linear infinite;
}
/* Pause slider on hover */
.achievements-section .achievements-wrapper:hover .achievements-slider {
    animation-play-state: paused;
}
/* Achievement Card - More colorful & lively */
.achievements-section .achievement-card {
    background: #ffffff;
    backdrop-filter: blur(14px);
    padding: 24px 20px;
    border-radius: 16px;
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.15);
    min-width: 300px;
    max-width: 320px;
    margin: 0 16px;
    transition: all 0.35s ease;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}
.achievements-section .achievement-card:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3);
    border-color: #10b981;
}
/* Colorful top glow on hover */
.achievements-section .achievement-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 6px;
    background: linear-gradient(90deg, #10b981, #ffd700, #60a5fa);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px 16px 0 0;
}
.achievements-section .achievement-card:hover::before {
    opacity: 1;
}
/* Image area */
.achievements-section .achievement-img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}
.achievements-section .achievement-img img {
    height: 64px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 6px 12px rgba(16, 185, 129, 0.25));
}
.achievements-section .achievement-card:hover .achievement-img img {
    transform: scale(1.18) rotate(6deg);
}
/* Content Inside Card */
.achievements-section .achievement-content h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e2937;
}
.achievements-section .achievement-content p {
    font-size: 15px;
    color: #334155;
    line-height: 1.55;
}
/* Infinite Scroll Animation */
@keyframes scrollAnimation {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .achievements-section {
        padding: 70px 20px 60px;
    }
    .achievements-section .section-title {
        font-size: 3.2rem;
        letter-spacing: -1.2px;
    }
    .achievements-section .achievement-card {
        min-width: 260px;
        max-width: 270px;
    }
    .achievements-section .achievements-slider {
        animation-duration: 20s;
    }
}
@media (max-width: 480px) {
    .achievements-section .achievement-card {
        min-width: 240px;
    }
}
/* Placement Section */
/* ============================================= */
/* === COMPLETE PREMIUM SPLIT-BACKGROUND PLACEMENT SECTION === */
.placement-section {
    padding: 100px 0 120px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
/* Animated Background Elements */
.placement-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}
.placement-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(8, 145, 178, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}
@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}
.placement-section .placement-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
/* ====================== PREMIUM HEADER ====================== */
.placement-section .placement-header {
    text-align: center;
    margin-bottom: 4rem;
}
.placement-section .header-accent {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}
.placement-section .accent-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
}
.placement-section .accent-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
    animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.7; }
}
.placement-section .main-title {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 1.2rem;
}
.placement-section .title-top {
    font-size: 1.8rem;
    font-weight: 600;
    color: #64748b;
    letter-spacing: -0.5px;
}
.placement-section .title-highlight {
    font-size: 3.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #059669 0%, #0891b2 50%, #0e7490 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -2px;
    line-height: 1;
    position: relative;
    display: inline-block;
}
.placement-section .title-highlight::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #10b981, transparent);
    border-radius: 2px;
}
.placement-section .subtitle {
    font-size: 1.25rem;
    color: #475569;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto;
}
/* ====================== PREMIUM STATS CARDS ====================== */
.placement-section .stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 5rem;
}
.placement-section .stat-card {
    background: white;
    border-radius: 24px;
    padding: 2rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.placement-section .stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.15);
    border-color: #10b981;
}
.placement-section .stat-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
}
.placement-section .stat-card:hover .stat-glow {
    opacity: 1;
}
.placement-section .stat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    border-radius: 16px;
    color: #059669;
    transition: all 0.4s;
}
.placement-section .stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}
.placement-section .stat-icon svg {
    width: 28px;
    height: 28px;
}
.placement-section .stat-content {
    position: relative;
    z-index: 2;
}
.placement-section .stat-value {
    font-size: 3.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #059669, #0891b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}
.placement-section .stat-unit {
    font-size: 1.4rem;
    font-weight: 800;
    color: #10b981;
    margin-left: 4px;
    display: inline-block;
}
.placement-section .stat-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 8px;
}
/* ====================== LUXURY FEATURED STORY ====================== */
.placement-section .featured-story {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.placement-section .story-backdrop {
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(8, 145, 178, 0.05));
    border-radius: 32px;
    z-index: 0;
}
.placement-section .story-card {
    background: white;
    border-radius: 32px;
    overflow: hidden;
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.08),
        0 0 0 1px rgba(16, 185, 129, 0.1);
    display: grid;
    grid-template-columns: 380px 1fr;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.placement-section .story-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 40px 80px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(16, 185, 129, 0.3);
}
.placement-section .card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.8s;
    z-index: 10;
    pointer-events: none;
}
.placement-section .story-card:hover .card-shine {
    left: 200%;
}
/* Photo Section */
.placement-section .photo-section {
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.placement-section .photo-frame {
    position: relative;
}
.placement-section .photo-ring {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 3px solid #10b981;
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}
.placement-section .photo-ring::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.8);
}
@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.placement-section .student-photo {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 8px solid white;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.placement-section .story-card:hover .student-photo {
    transform: scale(1.05);
}
.placement-section .photo-badge {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    font-size: 0.67rem;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 3;
}
.placement-section .photo-badge svg {
    width: 16px;
    height: 16px;
}
/* Story Content */
.placement-section .story-content {
    padding: 3rem 3rem 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.placement-section .package-showcase {
    background: linear-gradient(135deg, #f0fdfa, #ccfbf1);
    border-left: 4px solid #10b981;
    padding: 1.8rem 2rem;
    border-radius: 16px;
}
.placement-section .package-label {
    font-size: 0.85rem;
    color: #059669;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}
.placement-section .package-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #0e7490;
    letter-spacing: -1.5px;
    line-height: 1;
    margin-bottom: 12px;
}
.placement-section .package-amount span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #0f766e;
    margin-left: 8px;
}
.placement-section .company-name {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #0f766e;
    font-weight: 700;
    font-size: 1.3rem;
}
.placement-section .company-name svg {
    width: 20px;
    height: 20px;
    color: #059669;
}
.placement-section .student-info {
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 1.5rem;
}
.placement-section .student-name {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
}
.placement-section .student-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 1rem;
    font-weight: 600;
}
.placement-section .meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}
.placement-section .meta-item svg {
    width: 18px;
    height: 18px;
}
.placement-section .meta-divider {
    color: #cbd5e1;
}
.placement-section .testimonial {
    position: relative;
}
.placement-section .quote-icon {
    position: absolute;
    top: -15px;
    left: -10px;
    font-size: 6rem;
    font-family: Georgia, serif;
    color: #d1fae5;
    line-height: 1;
    font-weight: 700;
}
.placement-section .quote-text {
    color: #475569;
    line-height: 1.8;
    font-size: 1.05rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.placement-section .story-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.placement-section .feature-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    border: 1.5px solid #d1fae5;
    color: #059669;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.3s;
}
.placement-section .feature-pill:hover {
    background: #d1fae5;
    border-color: #10b981;
}
.placement-section .feature-pill svg {
    width: 16px;
    height: 16px;
}
/* ====================== PREMIUM CTA SECTION ====================== */
.placement-section .cta-section {
    text-align: center;
    margin-top: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.placement-section .primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 1.4rem 3.5rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 800;
    text-decoration: none;
    box-shadow:
        0 20px 50px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}
.placement-section .primary-cta:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 30px 70px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.placement-section .cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.4s;
}
.placement-section .primary-cta:hover .cta-icon {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.3);
}
.placement-section .cta-icon svg {
    width: 18px;
    height: 18px;
}
.placement-section .cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}
.placement-section .secondary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #059669;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 50px;
    border: 2px solid #d1fae5;
    background: white;
    transition: all 0.3s;
}
.placement-section .secondary-cta:hover {
    background: #f0fdfa;
    border-color: #10b981;
    transform: translateY(-2px);
}
.placement-section .secondary-cta svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}
.placement-section .secondary-cta:hover svg {
    transform: translateY(3px);
}
/* ====================== RESPONSIVE - MOBILE OPTIMIZED ====================== */
@media (max-width: 1024px) {
    .placement-section .story-card {
        grid-template-columns: 1fr;
    }
    .placement-section .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .placement-section {
        padding: 70px 0 80px;
    }
    .placement-section .title-top {
        font-size: 1.3rem;
    }
    .placement-section .title-highlight {
        font-size: 2.8rem;
    }
    .placement-section .subtitle {
        font-size: 1.1rem;
    }
    .placement-section .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 3rem;
    }
    .placement-section .stat-card {
        padding: 1.5rem 1rem;
    }
    .placement-section .stat-value {
        font-size: 2.5rem;
    }
    .placement-section .stat-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }
    .placement-section .story-backdrop {
        display: none;
    }
    .placement-section .story-card {
        border-radius: 24px;
    }
    .placement-section .photo-section {
        padding: 2.5rem 1.5rem;
    }
    .placement-section .student-photo {
        width: 220px;
        height: 220px;
    }
    .placement-section .story-content {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    .placement-section .package-showcase {
        padding: 1.5rem 1.5rem;
    }
    .placement-section .package-amount {
        font-size: 2.5rem;
    }
    .placement-section .student-name {
        font-size: 1.7rem;
    }
    .placement-section .quote-icon {
        font-size: 4rem;
        top: -10px;
        left: -5px;
    }
    .placement-section .primary-cta {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
    .placement-section .secondary-cta {
        font-size: 0.95rem;
    }
}
@media (max-width: 480px) {
    .placement-section .title-highlight {
        font-size: 2.3rem;
    }
    .placement-section .stat-value {
        font-size: 2.2rem;
    }
    .placement-section .student-photo {
        width: 200px;
        height: 200px;
    }
    .placement-section .package-amount {
        font-size: 2.2rem;
    }
    .placement-section .story-content {
        padding: 1.8rem 1.2rem;
    }
}
/* Section Styling */
/* ====== Partner Section Styling ====== */
.partner-section {
    padding: 40px 0;
    background: linear-gradient(135deg, #ffffff, #f9f9f9);
    text-align: center;
}
.section-title span {
    color: #ff9800;
}
.partner-slider {
    position: relative;
    padding: 10px 0;
}
/* Partner Logos */
.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}
.swiper-slide img {
    width: 180px;
    height: 80px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: all 0.3s ease-in-out;
}
.swiper-slide:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}
/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    background: #ff9800;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #067e54;
}
/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #ff9800;
    opacity: 0.5;
    transition: 0.3s;
}
.swiper-pagination-bullet-active {
    background: #067e54;
    opacity: 1;
}
/* Footer Styles */
.footer {
    background: #067e54; /* Dark Blue Background */
    color: #ffffff;
    padding: 15px 0;
    text-align: center;
    font-size: 16px;
}
.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
/* Footer Item */
.footer-item {
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Footer Icons */
.footer-item i {
    font-size: 18px;
    color: #ffdf00; /* Theme Highlight Color */
}
/* Footer Links */
.footer-item a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
}
.footer-item a:hover {
    color: #ffdf00; /* Green Hover Effect */
}
/* Responsive: Stacked on Mobile */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 10px;
    }
}
/* Infrastructure Section */
/* Infrastructure Section */
.infra-section {
    position: relative;
    background: black;
    color: white;
    padding: 80px 0;
    overflow: hidden;
    text-align: center;
}
.infra-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}
.infra-title {
    font-size: 3.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}
.infra-subtitle {
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}
/* Auto Scrolling Slider */
.infra-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}
.infra-track {
    display: flex;
    gap: 20px;
    min-width: 100%;
}
/* Individual Cards */
.infra-card {
    flex: 0 0 300px;
    background: rgba(0, 0, 0, 0.4);
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
}
.infra-card:hover {
    transform: translateY(-5px);
}
.infra-card img {
    width: 100%;
    border-radius: 10px;
}
.infra-card h3 {
    font-size: 22px;
    margin-top: 15px;
    font-weight: bold;
    color: #ff9800;
}
.infra-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}
/* Partner Section */
.recruiters-section {
    padding: 50px 0 110px;
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 45%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}
.recruiters-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 25%, rgba(14, 165, 233, 0.06) 0%, transparent 55%),
        radial-gradient(circle at 85% 75%, rgba(16, 185, 129, 0.04) 0%, transparent 60%),
        radial-gradient(circle at 40% 80%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
    pointer-events: none;
}
.recruiters-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}
/* ====================== PREMIUM HEADER ====================== */
.recruiters-header {
    text-align: center;
    margin-bottom: 4rem;
}
.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    color: #059669;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 24px;
    border-radius: 50px;
    border: 2px solid #a7f3d0;
    margin-bottom: 1.5rem;
}
.header-badge svg {
    width: 20px;
    height: 20px;
}
.recruiters-title {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 1rem;
}
.title-main {
    font-size: 1.6rem;
    font-weight: 600;
    color: #475569;
    letter-spacing: -0.3px;
}
.title-highlight {
    font-size: 3.25rem;
    font-weight: 900;
    background: linear-gradient(135deg, #059669 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1.5px;
    line-height: 1;
}
.recruiters-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    font-weight: 500;
    margin-bottom: 2.5rem;
}
/* ====================== ADVANCED MARQUEE SHOWCASE ====================== */
.recruiters-showcase {
    margin-bottom: 4rem;
    overflow: hidden;
    position: relative;
}
.marquee-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
    overflow: hidden;
}
.marquee-row:last-child {
    margin-bottom: 0;
}
.marquee-content {
    display: flex;
    gap: 24px;
    animation-duration: 40s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.marquee-left .marquee-content {
    animation-name: scroll-left;
}
.marquee-right .marquee-content {
    animation-name: scroll-right;
}
@keyframes scroll-left {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes scroll-right {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}
/* Pause on hover */
.marquee-row:hover .marquee-content {
    animation-play-state: paused;
}
/* ====================== COMPANY CARDS ====================== */
.company-card {
    flex-shrink: 0;
    width: 240px;
    height: 140px;
    position: relative;
}
.card-inner {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 20px;
    border: 2px solid #e2e8f0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}
.card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(8, 145, 178, 0.05));
    opacity: 0;
    transition: opacity 0.4s;
}
.company-card:hover .card-inner {
    transform: translateY(-8px) scale(1.05);
    border-color: #10b981;
    box-shadow: 0 20px 40px rgba(16, 185, 129, 0.2);
}
.company-card:hover .card-inner::before {
    opacity: 1;
}
.card-inner img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.4s;
    position: relative;
    z-index: 2;
}
.company-card:hover .card-inner img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.1);
}
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(5, 150, 105, 0.95), transparent);
    padding: 12px 16px 10px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}
.company-card:hover .card-overlay {
    transform: translateY(0);
}
.company-name {
    display: block;
    color: white;
    font-weight: 800;
    font-size: 0.95rem;
    margin-bottom: 2px;
}
.recruit-count {
    display: block;
    color: #d1fae5;
    font-size: 0.75rem;
    font-weight: 600;
}
/* ====================== RECRUITERS CTA ====================== */
.recruiters-cta {
    margin-top: 5rem;
}
.cta-content {
    background: linear-gradient(135deg, #059669, #0891b2);
    border-radius: 28px;
    padding: 3rem 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    box-shadow: 0 25px 60px rgba(5, 150, 105, 0.25);
    position: relative;
    overflow: hidden;
}
.cta-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    position: relative;
    z-index: 2;
}
.cta-icon svg {
    width: 40px;
    height: 40px;
}
.cta-text {
    flex: 1;
    position: relative;
    z-index: 2;
}
.cta-text h3 {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    margin-bottom: 6px;
    line-height: 1.2;
}
.cta-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: white;
    color: #059669;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}
.cta-button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.cta-button svg {
    width: 20px;
    height: 20px;
    transition: transform 0.4s;
}
.cta-button:hover svg {
    transform: translateX(4px);
}
/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
    .title-highlight {
        font-size: 3.2rem;
    }
    .live-stats {
        gap: 1.5rem;
        padding: 1.2rem 2rem;
    }
    .stat-number {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .recruiters-section {
        padding: 70px 0 80px;
    }
    .header-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }
    .title-main {
        font-size: 1.3rem;
    }
    .title-highlight {
        font-size: 2.5rem;
    }
    .recruiters-subtitle {
        font-size: 1.05rem;
    }
    .live-stats {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.2rem 1.5rem;
    }
    .stat-divider {
        display: none;
    }
    .stat-icon {
        width: 42px;
        height: 42px;
    }
    .stat-number {
        font-size: 1.4rem;
    }
    .category-tabs {
        gap: 8px;
        margin-bottom: 2.5rem;
    }
    .category-tab {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
    .company-card {
        width: 200px;
        height: 120px;
    }
    .marquee-content {
        animation-duration: 30s;
    }
    .cta-content {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
    }
    .cta-text h3 {
        font-size: 1.6rem;
    }
    .cta-text p {
        font-size: 1rem;
    }
    .cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .title-highlight {
        font-size: 2.2rem;
    }
    .live-stats {
        flex-direction: column;
        align-items: flex-start;
    }
    .company-card {
        width: 180px;
        height: 110px;
    }
}
/* Testimonial Section */
.testimonial-section {
    position: relative;
    padding: 70px 0;
    overflow: hidden;
}
/* Background Decorations */
.testimonial-section::before,
.testimonial-section::after {
    content: '';
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    pointer-events: none;
}
.testimonial-section::before {
    top: -10%;
    right: -10%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
}
.testimonial-section::after {
    bottom: -12%;
    left: -10%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
}
/* Section Header */
.testimonial-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    color: #047857;
    padding: 7px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12.5px;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}
.testimonial-section .pulse-dot {
    width: 7px;
    height: 7px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.testimonial-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 18px;
    line-height: 1.2;
}
.testimonial-section .gradient-text {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.testimonial-section .section-description {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 580px;
    margin: 0 auto 45px;
}
/* Main Container - Made Compact */
.testimonial-section .swiper {
    max-width: 1100px;           /* Controls overall width */
    margin: 0 auto;
    padding: 0 20px;             /* Safe side padding */
}
/* Equal Height Cards */
.testimonial-section .swiper-slide {
    height: auto;
}
.testimonial-section .testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 28px 24px;          /* Reduced padding */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(229, 231, 235, 0.7);
    position: relative;
    overflow: hidden;
}
.testimonial-section .testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.testimonial-section .testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.3);
}
.testimonial-section .testimonial-card:hover::before {
    transform: scaleX(1);
}
.testimonial-section .quote-icon {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 45px;
    color: rgba(16, 185, 129, 0.09);
    transform: rotate(180deg);
}
/* Image Wrapper - Extra Safe Padding */
.testimonial-section .testimonial-img-wrapper {
    position: relative;
    width: 148px;
    height: 148px;
    margin: 0 auto 22px;
    padding: 10px;
    background: #f8fafc;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.1);
}
.testimonial-section .testimonial-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #f0fdf4;
    transition: all 0.3s ease;
}
.testimonial-section .testimonial-card:hover .testimonial-img {
    border-color: #10b981;
    transform: scale(1.05) rotate(2deg);
}
.testimonial-section .verified-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    background: #10b981;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    border: 3px solid white;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}
/* Card Content */
.testimonial-section .rating {
    display: flex;
    gap: 3px;
    margin-bottom: 12px;
    justify-content: center;
}
.testimonial-section .star {
    color: #fbbf24;
    font-size: 14.5px;
}
.testimonial-section .testimonial-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 9px;
    text-align: center;
}
.testimonial-section .company-name {
    color: #10b981;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    justify-content: center;
    margin-bottom: 16px;
}
.testimonial-section .testimonial-text {
    color: #4b5563;
    line-height: 1.75;
    font-size: 0.98rem;
    flex-grow: 1;
    text-align: center;
}
/* Pagination */
.testimonial-section .swiper-pagination {
    margin-top: 35px;
}
.testimonial-section .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    background: #d1d5db;
    opacity: 1;
}
.testimonial-section .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 6px;
    background: linear-gradient(90deg, #10b981, #059669);
}
/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.12);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
}
.testimonial-section .fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
    50% { opacity: 0.8; transform: scale(1.12); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}
.testimonial-section .fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s forwards;
}
@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}
.custom-btn {
    background-color: #e7e8ea;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}
.custom-btn:hover {
    background-color: #e68900;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}
