 @import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700;800&display=swap');
body {
    font-family: 'Space Grotesk', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
/* Transparent Header with Background */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 12px 40px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* background: #FFC107; */
    background: #ffffff;
    transition: all 0.3s ease-in-out;
}
/* .header::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.5) 2px, transparent 1px);
    background-size: 6px 6px;
    opacity: 0.3;
} */
/* Logo Styling */
/* Header Base */
/* ============================================= */
/* === 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.8rem 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; }
}
.modern-header.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}
/* === HEADER-CONTENT SECTION === */
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
/* === LOGO-SECTION === */
.logo-section {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.logo-wrapper {
    position: relative;
}
.logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.4s ease;
}
.logo-wrapper:hover::before {
    opacity: 0.25;
}
.main-logo {
    height: 55px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.12));
}
.main-logo:hover {
    transform: scale(1.08) rotate(-3deg);
}
.modern-header.scrolled .main-logo {
    height: 48px;
}
/* === INSTITUTE-NAME SECTION === */
.institute-name {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.main-name {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.4px;
}
.tagline {
    font-size: 0.78rem;
    color: #6b7280;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
/* === HEADER-ACTIONS SECTION === */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
/* === ACCREDITATION-BADGES SECTION === */
.accreditation-badges {
    display: flex;
    gap: 1.1rem;
    align-items: center;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(99,102,241,0.04), rgba(139,92,246,0.04));
    border-radius: 16px;
    border: 1px solid rgba(99,102,241,0.08);
    position: relative;
    overflow: hidden;
}
.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); }
}
.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0rem;
    transition: all 0.35s ease;
}
.badge-item:hover {
    transform: translateY(-6px);
}
.badge-item img {
    height: 48px;
    transition: all 0.3s ease;
    filter: drop-shadow(0 3px 10px rgba(99,102,241,0.18));
}
.badge-item:hover img {
    filter: drop-shadow(0 8px 18px rgba(99,102,241,0.35));
    transform: scale(1.1);
}
.badge-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #6366f1;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    opacity: 1;
    transform: translateY(6px);
    transition: all 0.35s ease;
}
.badge-item:hover .badge-label {
    opacity: 1;
    transform: translateY(0);
}
/* === WHATSAPP BUTTON === */
.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 0.85rem 1.7rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    overflow: hidden;
}
.whatsapp-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}
.whatsapp-button:hover::before {
    left: 100%;
}
.whatsapp-button:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.45);
}
.whatsapp-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.4s ease;
}
.whatsapp-button:hover .whatsapp-icon {
    transform: rotate(15deg) scale(1.1);
}
/* === CTA-BUTTON SECTION === */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: white;
    padding: 0.85rem 1.7rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(99,102,241,0.35);
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    overflow: hidden;
}
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}
.cta-button:hover::before {
    left: 100%;
}
.cta-button:hover {
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 14px 35px rgba(99,102,241,0.45);
}
.cta-button .icon {
    transition: transform 0.4s ease;
}
.cta-button:hover .icon {
    transform: translateX(6px);
}
/* === MOBILE-MENU-TOGGLE SECTION === */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 0.6rem;
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(139,92,246,0.08));
    border-radius: 10px;
    transition: all 0.3s ease;
}
.mobile-menu-toggle:hover {
    transform: scale(1.08);
}
.mobile-menu-toggle span {
    width: 26px;
    height: 3.5px;
    background: linear-gradient(90deg, #6366f1, #8b5cf6);
    border-radius: 3px;
    transition: all 0.4s ease;
}
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}
/* === MOBILE OFFCANVAS MENU === */
.mobile-offcanvas {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1100;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}
.mobile-offcanvas.active {
    right: 0;
}
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}
.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}
.offcanvas-content {
    padding: 2rem 1.5rem;
}
.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(99, 102, 241, 0.1);
}
.offcanvas-header h3 {
    font-size: 1.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0;
}
.close-offcanvas {
    background: linear-gradient(135deg, rgba(99,102,241,0.1), rgba(139,92,246,0.1));
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}
.close-offcanvas:hover {
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(139,92,246,0.2));
    transform: rotate(90deg);
}
.close-offcanvas i {
    font-size: 1.2rem;
    color: #6366f1;
}
.offcanvas-body {
    padding: 0;
}
.mobile-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}
.mobile-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    background: linear-gradient(135deg, rgba(99,102,241,0.04), rgba(139,92,246,0.04));
    border-radius: 16px;
    border: 1px solid rgba(99,102,241,0.08);
    transition: all 0.3s ease;
}
.mobile-badge-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(99,102,241,0.15);
    border-color: rgba(99,102,241,0.2);
}
.mobile-badge-item img {
    height: 60px;
    filter: drop-shadow(0 4px 12px rgba(99,102,241,0.2));
    transition: all 0.3s ease;
}
.mobile-badge-item:hover img {
    transform: scale(1.1);
}
.mobile-badge-item span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #6366f1;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}
/* Responsive adjustments */
@media (max-width: 1200px) {
    .header-actions {
        gap: 1.2rem;
    }
    .accreditation-badges {
        gap: 0.8rem;
        padding: 0.5rem 0.9rem;
    }
    .badge-item img {
        height: 40px;
    }
}
@media (max-width: 992px) {
    .header-content {
        padding: 0 1.5rem;
    }
    .institute-name {
        display: none;
    }
    .accreditation-badges {
        gap: 0.6rem;
        padding: 0.45rem 0.8rem;
    }
    .badge-item img {
        height: 36px;
    }
    .whatsapp-button .button-text,
    .modern-header .cta-button .button-text {
        display: none;
    }
    .whatsapp-button,
   .modern-header .cta-button {
        padding: 0.75rem;
        width: 44px;
        height: 44px;
    }
    .whatsapp-icon,
   .modern-header .cta-button .icon {
        margin: 0;
    }
}
@media (max-width: 768px) {
    .header-content {
        padding: 0 1rem;
    }
    .header-actions {
        gap: 0.8rem;
    }
    .accreditation-badges {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .whatsapp-button,
   .modern-header .cta-button {
        padding: 0.7rem;
        width: 42px;
        height: 42px;
    }
    .mobile-offcanvas {
        width: 90%;
    }
}
@media (max-width: 480px) {
    .header-content {
        padding: 0 0.8rem;
    }
    .logo-section {
        gap: 0.8rem;
    }
    .main-logo {
        height: 45px;
    }
    .modern-header.scrolled .main-logo {
        height: 40px;
    }
    .whatsapp-button,
    .modern-header .cta-button {
        width: 38px;
        height: 38px;
        padding: 0.6rem;
    }
    .mobile-badges-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .mobile-badge-item {
        padding: 1.2rem 0.8rem;
    }
}
/* Banner Section with Animated Background */
/* === HERO-SECTION === */
.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/about-jisu.jpeg') center/cover no-repeat;
    z-index: 0;
}
/* === GEOMETRIC-SHAPES === */
.geometric-shapes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.shape {
    position: absolute;
    opacity: 0.12;
    animation: floatShape 18s infinite ease-in-out;
}
.shape-1 {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #ffc107, #ffca28);
    border-radius: 50%;
    top: 12%;
    left: -8%;
    animation-delay: 0s;
}
.shape-2 {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #2196f3, #1976d2);
    clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
    top: 55%;
    right: -6%;
    animation-delay: 4s;
}
.shape-3 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #4caf50, #388e3c);
    border-radius: 40% 60% 60% 40% / 70% 30% 70% 30%;
    bottom: 15%;
    left: 10%;
    animation-delay: 8s;
}
@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(40px, -40px) rotate(180deg); }
}
/* === HERO-CONTENT === */
.hero-content {
    position: relative;
    z-index: 2;
}
/* === HERO-BADGE === */
.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(255,193,7,0.3); }
    100% { box-shadow: 0 6px 35px rgba(255,193,7,0.6); }
}
/* === HERO-TITLE === */
.hero-title {
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.2s ease 0.3s both;
}
.hero-title .highlight {
    background: linear-gradient(90deg, #ffc107, #ffca28, #ffc107);
    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; }
}
/* === HERO-SUBTITLE === */
.hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.92);
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: fadeInUp 1.2s ease 0.5s both;
}
/* === SCHOLARSHIP-HIGHLIGHT === */
.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;
}
.scholarship-highlight::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.15), 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); }
}
.scholarship-highlight:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.35);
}
.scholarship-highlight h4 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #ffc107;
}
.scholarship-highlight p {
    margin: 0;
    color: rgba(255,255,255,0.9);
}
/* === CTA-BUTTON === */
.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;
}
.cta-button.primary {
    background: linear-gradient(135deg, #ffc107, #ffca28);
    color: #1a237e;
    box-shadow: 0 12px 35px rgba(255,193,7,0.4);
}
.cta-button.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 18px 50px rgba(255,193,7,0.55);
}
.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);
}
.cta-button.secondary:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-5px);
}
/* === MODERN-FORM-CARD === */
.modern-form-card {
    background: rgba(255,255,255,0.97);
    border-radius: 14px;
    padding: 2.5rem;
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.28), 0 0 80px rgba(13,71,161,0.15);
    border: 1px solid rgba(255,255,255,0.4);
    position: relative;
    overflow: hidden;
    animation: fadeInRight 1s ease 0.6s both;
}
.modern-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #0d47a1, #ffc107, #0d47a1);
    background-size: 200% auto;
    animation: gradientFlow 4s linear infinite;
}
@keyframes gradientFlow {
    to { background-position: 200% center; }
}
.form-header {
    text-align: center;
    margin-bottom: 2rem;
}
.form-header h3 {
    font-size: 1.9rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.form-header p {
    color: #64748b;
    font-size: 0.95rem;
}
.modern-input,
.modern-select {
    width: 100%;
    padding: 1rem 1.13rem;
    border-radius: 12px;
    border: 2px solid #e0e0e0;
    margin-bottom: 1.3rem;
    font-size: .85rem;
    transition: all 0.3s ease;
}
.modern-input:focus,
.modern-select:focus {
    border-color: #0d47a1;
    box-shadow: 0 0 0 4px rgba(13,71,161,0.12);
    transform: translateY(-2px);
}
.submit-button {
    width: 100%;
    padding: 1.2rem;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.submit-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 45px rgba(13,71,161,0.5);
}
.submit-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.7s, height 0.7s;
}
.submit-button:hover::before {
    width: 500px;
    height: 500px;
}
/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(35px); }
    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-title { font-size: 2.8rem; }
    .hero-subtitle { font-size: 1.15rem; }
    .modern-form-card { padding: 2rem; }
}
@media (max-width: 768px) {
    .hero-section { padding: 100px 0 60px; min-height: auto; }
    .hero-title { font-size: 2.4rem; }
    .hero-badge { font-size: 0.85rem; padding: 0.6rem 1.4rem; }
    .modern-form-card { margin-top: 2rem; }
}
/* About Section */
/* === IMPACT-SECTION === */
/* === IMPACT-SECTION (overall container) === */
.impact-section {
    position: relative;
    padding: 80px 0 100px;
    background: linear-gradient(180deg, #ffffff 0%, #f8faff 50%, #ffffff 100%);
    overflow: hidden;
}
/* Enhanced Floating orbs */
.impact-section .bg-orbs .orb {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    pointer-events: none;
    filter: blur(40px);
}
.impact-section .orb-1 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 40% 40%, #667eea, transparent 65%);
    top: -160px;
    right: -160px;
    animation: orb-float 24s infinite ease-in-out;
}
.impact-section .orb-2 {
    width: 360px;
    height: 360px;
    background: radial-gradient(circle at 60% 60%, #764ba2, transparent 65%);
    bottom: -130px;
    left: -130px;
    animation: orb-float 20s infinite ease-in-out reverse;
}
.impact-section .orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 50% 50%, #02a657, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: orb-float 18s infinite ease-in-out alternate;
}
@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(35px, -35px) rotate(12deg); }
}
/* Floating Particles */
.impact-section .particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.impact-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    opacity: 0.4;
    animation: particle-rise 8s infinite ease-in-out;
}
.impact-section .particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.impact-section .particle:nth-child(2) { left: 40%; animation-delay: 2s; }
.impact-section .particle:nth-child(3) { left: 60%; animation-delay: 4s; }
.impact-section .particle:nth-child(4) { left: 80%; animation-delay: 6s; }
.impact-section .particle:nth-child(5) { left: 50%; animation-delay: 3s; }
@keyframes particle-rise {
    0% { bottom: -10px; transform: translateY(0) scale(1); opacity: 0; }
    10% { opacity: 0.6; }
    90% { opacity: 0.2; }
    100% { bottom: 100%; transform: translateY(-20px) scale(0.5); opacity: 0; }
}
/* ========== INTERACTIVE ABOUT HEADER ========== */
.impact-section .about-header {
    max-width: 1200px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}
/* Enhanced Badge with Animation */
.impact-section .section-badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(102,126,234,0.15), rgba(118,75,162,0.15));
    color: #667eea;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid rgba(102,126,234,0.3);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s ease;
}
.impact-section .badge-icon {
    font-size: 1.3rem;
    animation: badge-bounce 2s infinite ease-in-out;
}
@keyframes badge-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(10deg); }
}
.impact-section .badge-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: left 0.6s ease;
}
.impact-section .section-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(102,126,234,0.25);
    border-color: #667eea;
}
.impact-section .section-badge:hover .badge-shine {
    left: 100%;
}
/* Animated Title Words */
.impact-section .section-title {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.impact-section .section-title .word {
    display: inline-block;
    background: linear-gradient(135deg, #1f2c6b, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: word-float 3s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}
.impact-section .section-title .word:nth-child(1) { animation-delay: 0s; }
.impact-section .section-title .word:nth-child(2) { animation-delay: 0.2s; }
.impact-section .section-title .word:nth-child(3) { animation-delay: 0.4s; }
@keyframes word-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
.impact-section .section-title .word:hover {
    transform: scale(1.1) translateY(-5px);
    filter: drop-shadow(0 5px 15px rgba(102,126,234,0.4));
}
/* Animated Tagline with Cursor */
.impact-section .section-tagline {
    font-size: 1.5rem;
    color: #02a657;
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-align: center;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}
.impact-section .tagline-cursor {
    display: inline-block;
    margin-left: 3px;
    animation: cursor-blink 1s infinite;
    color: #02a657;
}
@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}
/* ========== INTERACTIVE INFO CARDS ========== */
.impact-section .info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}
.impact-section .info-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(248,250,255,0.95));
    border-radius: 24px;
    border: 1px solid rgba(102,126,234,0.2);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
    overflow: hidden;
    backdrop-filter: blur(10px);
}
.impact-section .card-glow {
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s ease;
    filter: blur(15px);
}
.impact-section .info-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(102,126,234,0.25);
}
.impact-section .info-card:hover .card-glow {
    opacity: 0.6;
}
.impact-section .info-card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.5s ease;
}
.impact-section .info-card:hover .info-card-icon {
    transform: rotateY(360deg) scale(1.1);
}
.impact-section .info-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2c6b;
    margin-bottom: 0.8rem;
}
.impact-section .info-card p {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.6;
}
/* ========== INTERACTIVE FEATURE PILLS ========== */
.impact-section .feature-pills {
    max-width: 1000px;
    margin: 0 auto;
}
.impact-section .pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.impact-section .feature-pill {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.6rem;
    background: linear-gradient(135deg, rgba(2,166,87,0.1), rgba(16,185,129,0.1));
    border: 2px solid rgba(2,166,87,0.3);
    border-radius: 50px;
    color: #02a657;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: visible;
}
.impact-section .pill-icon {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}
.impact-section .pill-tooltip {
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #1f2c6b;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.impact-section .pill-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: #1f2c6b;
}
.impact-section .feature-pill:hover {
    transform: translateY(-8px) scale(1.05);
    background: linear-gradient(135deg, #02a657, #10b981);
    color: white;
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(2,166,87,0.3);
}
.impact-section .feature-pill:hover .pill-icon {
    transform: scale(1.3) rotate(15deg);
}
.impact-section .feature-pill:hover .pill-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}
/* ========== WHY CHOOSE US TABS ========== */
.impact-section .why-choose-section {
    /* max-width: 900px; */
    margin: 3rem auto;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.9), rgba(248,250,255,0.9));
    border-radius: 30px;
    border: 2px solid rgba(102,126,234,0.15);
    backdrop-filter: blur(10px);
}
.impact-section .why-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2c6b;
    text-align: center;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #1f2c6b, #667eea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.impact-section .reason-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.impact-section .reason-tab {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.8rem;
    background: white;
    border: 2px solid rgba(102,126,234,0.2);
    border-radius: 50px;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.impact-section .reason-tab::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.impact-section .reason-tab i,
.impact-section .reason-tab span {
    position: relative;
    z-index: 1;
}
.impact-section .reason-tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102,126,234,0.2);
}
.impact-section .reason-tab.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(102,126,234,0.3);
}
.impact-section .reason-tab.active::before {
    opacity: 1;
}
.impact-section .reason-content {
    display: none;
    animation: fade-slide-in 0.5s ease;
}
.impact-section .reason-content.active {
    display: block;
}
@keyframes fade-slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.impact-section .reason-box {
    padding: 2rem;
    background: white;
    border-radius: 20px;
    border-left: 4px solid #667eea;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.impact-section .reason-box p {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}
/* ========== STATS SECTION (keeping your cool design) ========== */
.impact-section .stats-grid {
    position: relative;
    z-index: 2;
}
.impact-section .stats-heading h3 {
    font-size: 2.1rem;
    font-weight: 700;
    color: #1f2c6b;
    margin-bottom: 0.6rem;
}
.impact-section .stats-subtitle {
    color: #64748b;
    font-size: 1.05rem;
}
.impact-section .stat-card {
    position: relative;
    text-align: center;
    padding: 2.2rem 1.6rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(102,126,234,0.1);
    transition: all 0.45s cubic-bezier(0.34,1.56,0.64,1);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    cursor: pointer;
}
.impact-section .stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 50px rgba(102,126,234,0.18);
}
.impact-section .stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #667eea, #764ba2, #667eea);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.impact-section .stat-card:hover::before {
    opacity: 1;
}
.impact-section .stat-card::after {
    content: '';
    position: absolute;
    top: -60%;
    left: -60%;
    width: 220%;
    height: 220%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: rotate(45deg);
    transition: all 0.7s ease;
    opacity: 0;
}
.impact-section .stat-card:hover::after {
    opacity: 1;
    top: 60%;
    left: 60%;
}
.impact-section .achievement-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
    opacity: 0;
    transform: scale(0.7) rotate(-10deg);
    transition: all 0.45s ease;
}
.impact-section .stat-card:hover .achievement-badge {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}
.impact-section .stat-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.9rem;
    color: white;
    box-shadow: 0 8px 24px rgba(102,126,234,0.3);
    transition: all 0.45s ease;
    position: relative;
}
.impact-section .stat-card:hover .stat-icon {
    transform: scale(1.08) rotate(5deg);
}
.impact-section .icon-pulse {
    position: absolute;
    inset: -5px;
    border-radius: 18px;
    border: 2px solid rgba(102,126,234,0.5);
    animation: pulse-ring 2s infinite ease-out;
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}
.impact-section .stat-number {
    font-size: 2.6rem;
    font-weight: 900;
    color: #1f2c6b;
    line-height: 1;
    margin-bottom: 0.5rem;
}
.impact-section .stat-number small {
    font-size: 1.1rem;
    font-weight: 600;
}
.impact-section .stat-label {
    font-size: 1.08rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 1rem;
}
.impact-section .stat-progress {
    width: 100%;
    height: 4px;
    background: rgba(102,126,234,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 1rem;
}
.impact-section .progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 10px;
    width: var(--progress, 0%);
    transition: width 1.5s ease-in-out;
    animation: progress-glow 2s infinite ease-in-out;
}
@keyframes progress-glow {
    0%, 100% { box-shadow: 0 0 5px rgba(102,126,234,0.5); }
    50% { box-shadow: 0 0 15px rgba(102,126,234,0.8); }
}
/* CTA Section */
.impact-section .cta-wrapper {
    margin-top: 4rem;
}
.impact-section .about-cta {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1f2c6b;
    max-width: 820px;
    margin: 0 auto;
    line-height: 1.5;
}
.impact-section .cta-button {
    position: relative;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102,126,234,0.3);
}
.impact-section .cta-button span {
    position: relative;
    z-index: 2;
    margin-right: 0.5rem;
}
.impact-section .cta-button i {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}
.impact-section .cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #764ba2, #667eea);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.impact-section .cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102,126,234,0.4);
}
.impact-section .cta-button:hover::before {
    opacity: 1;
}
.impact-section .cta-button:hover i {
    transform: translateX(5px);
}
/* Responsive */
@media (max-width: 992px) {
    .impact-section .section-title { font-size: 2.5rem; }
    .impact-section .stat-number { font-size: 2.3rem; }
    .impact-section .stat-icon { width: 68px; height: 68px; font-size: 1.7rem; }
    .impact-section .info-cards-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .impact-section { padding: 70px 0 90px; }
    .impact-section .section-title { font-size: 2.2rem; }
    .impact-section .section-tagline { font-size: 1.3rem; }
    .impact-section .stat-card { padding: 1.8rem 1.2rem; }
    .impact-section .reason-tabs { flex-direction: column; }
    .impact-section .why-choose-section { padding: 1.5rem; }
}
/* Our Courses Section */
.courses-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}
/* Background Elements */
.courses-section .courses-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.courses-section .bg-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.1;
    animation: float-circle 20s infinite ease-in-out;
}
.courses-section .circle-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3b82f6, transparent);
    top: -150px;
    right: -150px;
}
.courses-section .circle-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    bottom: -100px;
    left: -100px;
    animation-delay: 5s;
}
.courses-section .circle-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #10b981, transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}
@keyframes float-circle {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}
/* ========== SECTION HEADER ========== */
.courses-section .courses-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}
.courses-section .courses-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(37,99,235,0.15));
    color: #2563eb;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid rgba(59,130,246,0.3);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}
.courses-section .courses-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(59,130,246,0.2);
}
.courses-section .section-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
}
.courses-section .section-title .highlight {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 3s linear infinite;
}
@keyframes gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
.courses-section .section-subtitle {
    font-size: 1.15rem;
    color: #64748b;
    margin: 0;
}
/* ========== SEARCH CONTAINER ========== */
.courses-section .search-container {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}
.courses-section .search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
}
.courses-section .search-wrapper:focus-within {
    box-shadow: 0 15px 50px rgba(59,130,246,0.15);
    transform: translateY(-2px);
}
.courses-section .search-icon {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-right: 1rem;
}
.courses-section .search-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    color: #1e293b;
    background: transparent;
}
.courses-section .search-wrapper input::placeholder {
    color: #94a3b8;
}
.courses-section .clear-search {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 0.3s ease;
    display: none;
}
.courses-section .clear-search.active {
    display: block;
}
.courses-section .clear-search:hover {
    color: #ef4444;
    transform: rotate(90deg);
}
/* ========== COURSE TABS ========== */
.courses-section .course-tabs-wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto 2.5rem;
    z-index: 2;
}
.courses-section .course-tabs {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0.5rem;
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}
.courses-section .course-tabs::-webkit-scrollbar {
    height: 6px;
}
.courses-section .course-tabs::-webkit-scrollbar-track {
    background: transparent;
}
.courses-section .course-tabs::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.courses-section .tab {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    background: white;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #64748b;
    border: 2px solid #e2e8f0;
    transition: all 0.4s ease;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
.courses-section .tab i {
    font-size: 1.1rem;
    transition: transform 0.4s ease;
}
.courses-section .tab-count {
    background: #f1f5f9;
    color: #64748b;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    transition: all 0.4s ease;
}
.courses-section .tab:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-color: #3b82f6;
}
.courses-section .tab.active {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(59,130,246,0.3);
}
.courses-section .tab.active .tab-count {
    background: rgba(255,255,255,0.3);
    color: white;
}
.courses-section .tab.active i {
    transform: scale(1.1);
}
/* ========== ACTIVE CATEGORY DISPLAY ========== */
.courses-section .active-category-display {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.2rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.courses-section .category-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.courses-section .category-name {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
}
.courses-section .category-count {
    font-size: 0.95rem;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.4rem 1rem;
    border-radius: 20px;
}
/* ========== COURSE CARDS ========== */
.courses-section .course-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.courses-section .course-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: all 0.5s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    display: none; /* Hidden by default */
}
.courses-section .course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}
.courses-section .course-card:hover::before {
    transform: scaleX(1);
}
.courses-section .course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59,130,246,0.15);
    border-color: #3b82f6;
}
.courses-section .card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(245,158,11,0.3);
    animation: badge-pulse 2s infinite ease-in-out;
}
@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.courses-section .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #3b82f6;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}
.courses-section .course-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
}
.courses-section .course-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}
.courses-section .course-card p {
    font-size: 0.98rem;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
/* Specializations */
.courses-section .course-specializations {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.courses-section .specialization-tag {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #f1f5f9;
    color: #475569;
    padding: 0.5rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
}
.courses-section .specialization-tag:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    transform: translateY(-2px);
}
.courses-section .specialization-tag i {
    font-size: 0.9rem;
}
/* Card Footer */
.courses-section .card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 2px solid #f1f5f9;
}
.courses-section .course-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #64748b;
    font-weight: 600;
}
.courses-section .course-duration i {
    color: #3b82f6;
}
.courses-section .learn-more-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.courses-section .learn-more-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.courses-section .learn-more-btn span,
.courses-section .learn-more-btn i {
    position: relative;
    z-index: 2;
}
.courses-section .learn-more-btn i {
    transition: transform 0.4s ease;
}
.courses-section .learn-more-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(59,130,246,0.3);
}
.courses-section .learn-more-btn:hover::before {
    opacity: 1;
}
.courses-section .learn-more-btn:hover i {
    transform: translateX(5px);
}
/* ========== NO RESULTS ========== */
.courses-section .no-results {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}
.courses-section .no-results i {
    font-size: 4rem;
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}
.courses-section .no-results h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.8rem;
}
.courses-section .no-results p {
    font-size: 1.05rem;
    color: #64748b;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .courses-section .course-list {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}
@media (max-width: 768px) {
    .courses-section {
        padding: 60px 0;
    }
    .courses-section .section-title {
        font-size: 2.2rem;
    }
    .courses-section .course-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
    }
    .courses-section .active-category-display {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    .courses-section .category-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    .courses-section .course-list {
        grid-template-columns: 1fr;
    }
    .courses-section .card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    .courses-section .learn-more-btn {
        width: 100%;
        justify-content: center;
    }
}
/* Achievements Section */
.achievements-section {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #000, #2b3e60);
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}
/* Section Title */
.achievements-section .section-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.achievements-section .section-title span {
    color: #FFD700; /* Gold Highlight */
}
.achievements-section .section-subtitle {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.8;
}
/* Wrapper for Horizontal Scroll */
.achievements-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}
/* Scrolling Achievements */
.achievements-slider {
    display: flex;
    width: max-content;
    animation: scrollAnimation 25s linear infinite;
}
/* Achievement Card */
.achievement-card {
    background: #fff;
    backdrop-filter: blur(12px);
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(255, 255, 255, 0.1);
    min-width: 300px;
    max-width: 320px;
    margin: 0 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.achievement-card:hover {
    transform: scale(1.07);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
    animation-play-state: paused;
}
.achievement-img {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}
.achievement-img img {
    height: 60px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease-in-out;
}
.achievement-card:hover .achievement-img img {
    transform: scale(1.1);
}
/* Content Inside Card */
.achievement-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #FFD700; /* Gold */
}
.achievement-content p {
    font-size: 15px;
    color: #000;
    opacity: 0.9;
    line-height: 1.5;
}
/* Infinite Scroll Animation */
@keyframes scrollAnimation {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
/* Responsive Design */
@media (max-width: 768px) {
    .achievements-section {
        padding: 60px 20px;
    }
    .achievement-card {
        min-width: 250px;
    }
}
/* Placement Section */
.placement-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
/* Animated Background Particles */
.placement-section .placement-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.placement-section .particle-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.08;
    animation: float-orb 20s infinite ease-in-out;
}
.placement-section .orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #3b82f6, transparent);
    top: -150px;
    right: -150px;
}
.placement-section .orb-2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #f59e0b, transparent);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}
@keyframes float-orb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -40px) scale(1.1); }
}
/* Floating Icons */
.placement-section .floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.placement-section .icon-float {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(59, 130, 246, 0.15);
    animation: icon-bounce 5s infinite ease-in-out;
}
.placement-section .icon-float:nth-child(1) {
    top: 15%;
    left: 8%;
    animation-delay: 0s;
}
.placement-section .icon-float:nth-child(2) {
    top: 25%;
    right: 10%;
    animation-delay: 1.5s;
}
.placement-section .icon-float:nth-child(3) {
    bottom: 25%;
    left: 12%;
    animation-delay: 3s;
}
@keyframes icon-bounce {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.15; }
    50% { transform: translateY(-30px) rotate(15deg); opacity: 0.25; }
}
/* ========== SECTION HEADER ========== */
.placement-section .placement-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}
.placement-section .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.15), rgba(37,99,235,0.15));
    color: #2563eb;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 2px solid rgba(59,130,246,0.3);
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    cursor: pointer;
}
.placement-section .section-badge i {
    font-size: 1.1rem;
    animation: badge-pulse 2s infinite ease-in-out;
}
@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
.placement-section .section-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(59,130,246,0.2);
    border-color: #2563eb;
}
.placement-section .section-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.3;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem;
}
.placement-section .title-word {
    display: inline-block;
    color: #1e293b;
    animation: word-float 3s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
}
.placement-section .title-word:nth-child(1) { animation-delay: 0s; }
.placement-section .title-word:nth-child(2) { animation-delay: 0.2s; }
.placement-section .title-word:nth-child(3) { animation-delay: 0.4s; }
.placement-section .title-word:nth-child(4) { animation-delay: 0.6s; }
@keyframes word-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.placement-section .title-word:hover {
    transform: scale(1.08) translateY(-5px);
    color: #2563eb;
}
.placement-section .highlight {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 3s linear infinite;
}
@keyframes gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
/* ========== ACHIEVEMENT SHOWCASE ========== */
.placement-section .achievement-showcase {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
    position: relative;
    z-index: 2;
}
/* ========== STUDENT IMAGE CARD ========== */
.placement-section .student-image-wrapper {
    position: sticky;
    top: 100px;
}
.placement-section .image-card {
    position: relative;
    background: white;
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.5s ease;
}
.placement-section .image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}
.placement-section .card-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    border-radius: 30px;
}
.placement-section .decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(245,158,11,0.1));
    animation: decoration-float 8s infinite ease-in-out;
}
.placement-section .circle-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -30px;
    animation-delay: 0s;
}
.placement-section .circle-2 {
    width: 80px;
    height: 80px;
    bottom: 50px;
    left: -20px;
    animation-delay: 2s;
}
.placement-section .circle-3 {
    width: 60px;
    height: 60px;
    top: 50%;
    right: -15px;
    animation-delay: 4s;
}
@keyframes decoration-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10px, -10px) scale(1.1); }
}
.placement-section .image-container {
    position: relative;
    margin-bottom: 2rem;
}
.placement-section .image-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.placement-section .student-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}
.placement-section .image-card:hover .student-image {
    transform: scale(1.05);
}
.placement-section .image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.placement-section .image-card:hover .image-overlay {
    opacity: 1;
}
.placement-section .image-glow-ring {
    position: absolute;
    inset: -10px;
    border-radius: 25px;
    background: linear-gradient(135deg, #3b82f6, #f59e0b);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s ease;
    z-index: -1;
}
.placement-section .image-card:hover .image-glow-ring {
    opacity: 0.4;
    animation: glow-pulse 2s infinite ease-in-out;
}
@keyframes glow-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.placement-section .student-info-card {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
}
.placement-section .verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3);
}
.placement-section .student-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin: 0.5rem 0;
    letter-spacing: 1px;
}
.placement-section .student-degree {
    font-size: 1.05rem;
    color: #64748b;
    margin: 0.3rem 0;
}
.placement-section .student-batch {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 0.5rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
}
/* ========== ACHIEVEMENT DETAILS ========== */
.placement-section .achievement-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
/* Success Story Card */
.placement-section .success-story-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    display: flex;
    gap: 1.5rem;
    align-items: start;
    transition: all 0.4s ease;
}
.placement-section .success-story-card:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}
.placement-section .story-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(59,130,246,0.3);
}
.placement-section .story-text {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.8;
    margin: 0;
}
/* Package Highlight Card */
.placement-section .package-highlight-card {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(245,158,11,0.15);
    border: 2px solid rgba(245,158,11,0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}
.placement-section .package-highlight-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(245,158,11,0.25);
}
.placement-section .package-highlight-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    animation: card-shine 4s infinite ease-in-out;
}
@keyframes card-shine {
    0%, 100% { transform: rotate(45deg) translateX(-100%); }
    50% { transform: rotate(45deg) translateX(100%); }
}
.placement-section .package-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 6px 15px rgba(245,158,11,0.3);
}
.placement-section .package-display {
    text-align: center;
}
.placement-section .package-label {
    font-size: 1rem;
    color: #92400e;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 1rem;
}
.placement-section .package-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}
.placement-section .currency {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ea580c;
}
.placement-section .amount-value {
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.placement-section .lpa-text {
    font-size: 2rem;
    font-weight: 700;
    color: #92400e;
}
.placement-section .package-breakdown {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}
.placement-section .breakdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #92400e;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
/* Company Card */
.placement-section .company-card {
    background: white;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
}
.placement-section .company-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.placement-section .company-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.placement-section .placed-at-label {
    font-size: 0.95rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}
.placement-section .company-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
.placement-section .company-logo-box {
    position: relative;
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
}
.placement-section .company-logo {
    max-width: 220px;
    height: auto;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}
.placement-section .company-card:hover .company-logo {
    transform: scale(1.05);
}
.placement-section .logo-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.placement-section .logo-particles .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, #3b82f6, #f59e0b);
    border-radius: 50%;
    opacity: 0.6;
    animation: particle-float 3s infinite ease-in-out;
}
.placement-section .logo-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}
.placement-section .logo-particles .particle:nth-child(2) {
    top: 30%;
    right: 25%;
    animation-delay: 1s;
}
.placement-section .logo-particles .particle:nth-child(3) {
    bottom: 30%;
    left: 30%;
    animation-delay: 2s;
}
@keyframes particle-float {
    0%, 100% { transform: translateY(0); opacity: 0.6; }
    50% { transform: translateY(-15px); opacity: 1; }
}
.placement-section .company-info {
    text-align: center;
}
.placement-section .company-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.5rem;
}
.placement-section .company-desc {
    font-size: 1.05rem;
    color: #64748b;
    margin-bottom: 1rem;
}
.placement-section .company-tags {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}
.placement-section .tag {
    background: #eff6ff;
    color: #2563eb;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}
/* ========== JOURNEY TIMELINE ========== */
.placement-section .journey-timeline {
    max-width: 1100px;
    margin: 5rem auto 3rem;
    padding: 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}
.placement-section .timeline-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 3rem;
}
.placement-section .timeline-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.placement-section .timeline-step {
    text-align: center;
    flex: 1;
    position: relative;
}
.placement-section .step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #64748b;
    margin: 0 auto 1rem;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.placement-section .timeline-step.active .step-icon {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(245,158,11,0.4);
    animation: icon-pulse 2s infinite ease-in-out;
}
@keyframes icon-pulse {
    0%, 100% { box-shadow: 0 12px 30px rgba(245,158,11,0.4); }
    50% { box-shadow: 0 12px 40px rgba(245,158,11,0.6); }
}
.placement-section .step-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.3rem;
}
.placement-section .step-content p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}
.placement-section .timeline-connector {
    height: 3px;
    background: linear-gradient(90deg, #cbd5e1 0%, #94a3b8 50%, #cbd5e1 100%);
    flex: 0.5;
    margin: 0 -20px;
    margin-bottom: 5rem;
    position: relative;
}
.placement-section .timeline-connector::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, #f59e0b 100%);
    transform: translateY(-50%);
    animation: progress-flow 3s infinite ease-in-out;
}
@keyframes progress-flow {
    0% { transform: translateX(-100%) translateY(-50%); }
    100% { transform: translateX(0) translateY(-50%); }
}
/* ========== CTA SECTION ========== */
.placement-section .placement-cta {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}
.placement-section .cta-content h3 {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.8rem;
}
.placement-section .cta-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
}
.placement-section .cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.placement-section .cta-btn {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.placement-section .cta-btn span {
    position: relative;
    z-index: 2;
}
.placement-section .cta-btn i {
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease;
}
.placement-section .primary-btn {
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: white;
    box-shadow: 0 10px 30px rgba(245,158,11,0.3);
}
.placement-section .primary-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f97316, #ea580c);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.placement-section .primary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(245,158,11,0.4);
}
.placement-section .primary-btn:hover::before {
    opacity: 1;
}
.placement-section .primary-btn:hover i {
    transform: translateX(5px);
}
.placement-section .secondary-btn {
    background: white;
    color: #1e293b;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.placement-section .secondary-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}
.placement-section .secondary-btn:hover i {
    transform: scale(1.2);
}
/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .placement-section .achievement-showcase {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .placement-section .student-image-wrapper {
        position: relative;
        top: 0;
        max-width: 450px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .placement-section {
        padding: 60px 0;
    }
    .placement-section .section-title {
        font-size: 2rem;
    }
    .placement-section .amount-value {
        font-size: 3.5rem;
    }
    .placement-section .timeline-steps {
        flex-direction: column;
        gap: 2rem;
    }
    .placement-section .timeline-connector {
        display: none;
    }
    .placement-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .placement-section .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .placement-section .journey-timeline {
        padding: 2rem 1.5rem;
    }
}
/* 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;
}
.partner-slider .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: #222a68;
}
/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #ff9800;
    opacity: 0.5;
    transition: 0.3s;
}
.swiper-pagination-bullet-active {
    background: #222a68;
    opacity: 1;
}
/* Footer Styles */
.footer {
    background: #131b3e; /* 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;
    }
}
/* Testimonial Section */
.testimonial-section {
    padding: 60px 0;
    background: #f8f9fa;
    text-align: center;
}
/* Testimonial Section */
.testimonial-section {
    padding: 80px 0;
    background: linear-gradient(90deg, #131b3e 50%, #f8c400 50%);
    text-align: center;
}
.section-title span {
    color: #ff9800;
}
/* Testimonial Box */
.testimonial-box {
    background: white;
    padding: 40px;
    max-width: 750px;
    margin: auto;
    border-radius: 12px;
    /* box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1); */
    position: relative;
    transition: transform 0.4s ease-in-out, box-shadow 0.3s ease-in-out;
    overflow: hidden;
}
/* Quote Icon */
.testimonial-box::before {
    content: "\f10d"; /* FontAwesome quote icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 30px;
    color: rgba(255, 152, 0, 0.2);
}
/* Student Image */
.testimonial-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ff9800;
    margin-bottom: 15px;
    transition: 0.3s ease-in-out;
}
.testimonial-box:hover .testimonial-img {
    transform: scale(1.1);
}
/* Testimonial Text */
.testimonial-text {
    font-size: 18px;
    color: #444;
    font-style: italic;
    margin-bottom: 15px;
    line-height: 1.6;
    position: relative;
    padding: 10px 20px;
}
.testimonial-text::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #ff9800;
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
}
/* Name and Role */
.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: #222a68;
    margin-top: 15px;
}
.testimonial-role {
    font-size: 15px;
    color: #666;
    font-weight: 500;
}
/* Carousel Controls */
.carousel-control-prev, .carousel-control-next {
    width: 5%;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) invert(1);
}
/* 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: 36px;
    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);
}
/* Modal Enhancements */
/* Modal Enhancements */
.modal-content {
    max-width: 420px;
    border-radius: 12px;
    background: rgba(13, 1, 78, 0.15);
    backdrop-filter: blur(12px);
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
    border: none;
    transition: all 0.3s ease-in-out;
    overflow: hidden;
}
.modal label{
    text-align: center;
    color:#fff;
    font-weight: 700;
}
.modal-content:hover {
    transform: translateY(-4px);
}
/* Modal Header */
.modal-header {
    background: linear-gradient(135deg, #2C3E50 10%, #ff9800 90%);
    color: #fff;
    border-radius: 12px 12px 0 0;
    text-align: center;
    padding: 14px;
    position: relative;
}
.modal-title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.btn-close {
    filter: invert(1);
    opacity: 0.7;
    transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.btn-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}
/* Modal Body */
.modal-body {
    padding: 20px;
    background: rgba(255, 255, 255, 0.25);
}
/* Modal Footer */
.modal-footer {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0 0 12px 12px;
    padding: 12px;
    justify-content: space-between;
}
/* Form Fields */
.form-control {
    border-radius: 8px;
    padding: 6px 8px;
    font-size: 0.85rem;
    border: 1px solid #ddd;
    background: #ffffff;
    color: #333;
    transition: all 0.3s ease-in-out;
    backdrop-filter: blur(8px);
}
.form-control::placeholder {
    color: rgba(0, 0, 0, 0.5);
}
.form-control:focus {
    border-color: #243D80;
    box-shadow: 0 0 10px rgba(36, 61, 128, 0.3);
    background: rgba(255, 255, 255, 0.4);
}
/* Style for the CAPTCHA container */
/* Style for Math CAPTCHA */
.math-captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}
#mathCaptchaQuestion {
    font-weight: bold;
    font-size: 1.1rem;
    color: #222a68;
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    border: 2px solid #ffdf00;
    display: inline-block;
    min-width: 120px;
    text-align: center;
}
#mathCaptchaResult {
    margin: 1px;
    flex: 1;
    padding: 10px;
    border: 2px solid #ffdf00;
    border-radius: 5px;
    font-size: 1rem;
    text-align: center;
}
#mathCaptchaResult:focus {
    outline: none;
    border-color: #004085;
    box-shadow: 0 0 8px rgba(0, 64, 133, 0.5);
}
/* Placement Section */
/* Placement Section */
.placement {
    background-color: #fcfaee;
    padding: 60px 0;
}
/* Background Container */
.swiper-button-next,
.swiper-button-prev,
.swiper-pagination {
  display: none !important;
}
/* Swiper Container */
.swiper.mySwiper {
    padding: 30px 20px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
/* Logo Box */
.company-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    transition: transform 0.3s ease;
}
.company-box:hover {
    transform: scale(1.05);
}
/* Image Styling */
.logo-company img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    /* filter: grayscale(100%); */
}
.logo-company img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}
/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #004085;
    transition: color 0.3s ease;
}
.swiper-button-next:hover,
.swiper-button-prev:hover {
    color: #02a657;
}
/* Swiper Pagination */
.swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    transition: background 0.3s ease;
}
.swiper-pagination-bullet-active {
    background: #004085;
}
.placement-company .heading {
    margin-bottom: 30px;
}
.placement-company .heading h3 {
    /* font-family: "Montserrat", sans-serif; */
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    color: #222a68;
}
.placement-company .heading p {
    margin: 0 auto;
    font-weight: 500;
    font-size: 18px;
    color: #555;
}
/* Placement Background */
.placement {
    background-color: #f8f9fa;
    padding: 60px 0;
    display: flex;
    justify-content: center;
}
/* Placement Container */
.placement-bg {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(132deg, #1959a9 90%, #FFC107 10%);
    border-radius: 16px;
    padding: 50px;
    position: relative;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 1100px;
    width: 100%;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
/* Left Content Section */
.placement-content {
    flex: 1;
    color: #fff;
    text-align: left;
    padding-right: 40px;
    max-width: 55%;
    z-index: 2;
}
.placement-content h2 {
    font-size: 42px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}
.placement-content h2 span {
    color: #ffd700; /* Gold Accent */
}
.placement-content p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.3);
}
/* Placement Amount */
.placement-amount {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 18px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}
.placement-amount .amount {
    color: #ffd700;
    font-size: 64px;
    font-weight: 800;
}
.placement-amount .crore {
    color: #ffd700;
    font-size: 32px;
    font-weight: 700;
}
.placement-amount .country {
    background-color: #c3cfe2;
    color: #fff;
}
/* Right Image Section */
.placement-image {
    flex: 1;
    display: flex;
    justify-content: center;
    max-width: 45%;
    position: relative;
}
.placement-image img {
    width: 310px;
    height: 310px;
    border-radius: 50%; /* Circular Shape */
    border: 5px solid #FFD700; /* Yellow Border */
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.4); /* Enhanced Shadow */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.placement-image img:hover {
    transform: scale(1.1); /* Slightly Bigger on Hover */
    box-shadow: 0px 12px 25px rgba(0, 0, 0, 0.5); /* Stronger Shadow on Hover */
}
/* Name Tag */
.name {
    color: #fff;
    position: absolute;
    bottom: 20px;
    right: 15%;
    font-weight: 700;
    font-size: 24px;
    background: rgba(0, 0, 0, 0.5);
    padding: 6px 12px;
    border-radius: 6px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}
/* Hover Effect */
.placement-bg:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.4);
}
/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .placement-bg {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    .placement-content {
        max-width: 100%;
        padding: 0;
    }
    .placement-image {
        max-width: 100%;
        justify-content: center;
        margin-top: 20px;
    }
    .placement-content h2 {
        font-size: 34px;
    }
    .placement-amount .amount {
        font-size: 54px;
    }
    .placement-amount .crore {
        font-size: 28px;
    }
}
@media (max-width: 768px) {
    .placement-bg {
        padding: 30px;
    }
    .placement-content h2 {
        font-size: 30px;
    }
    .placement-content p {
        font-size: 16px;
    }
    .placement-amount {
        padding: 10px 15px;
    }
    .placement-amount .amount {
        font-size: 46px;
    }
    .placement-amount .crore {
        font-size: 26px;
    }
    .placement-image img {
        max-width: 220px;
    }
    .name {
        font-size: 20px;
        bottom: 10px;
        left: 5%;
    }
}
@media (max-width: 480px) {
    .placement-bg {
        padding: 20px;
    }
    .placement-content h2 {
        font-size: 24px;
    }
    .placement-content p {
        font-size: 14px;
    }
    .placement-amount {
        gap: 6px;
        padding: 8px 12px;
    }
    .placement-amount .amount {
        font-size: 36px;
    }
    .placement-amount .crore {
        font-size: 20px;
    }
    .placement-amount .country {
        font-size: 14px;
        max-width: 180px;
    }
    .name {
        font-size: 16px;
        bottom: 10px;
        left: 15%;
    }
    .placement-image img {
        max-width: 100%;
    }
}
/* Testimonial Section */
/* Section Styling */
.testi-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 80px 0;
}
.testi-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.testi-left {
    width: 30%;
}
.testi-left h3 {
    font-size: 36px;
    font-weight: bold;
    color: #222;
}
.testi-left p {
    font-size: 18px;
    color: #444;
    margin: 10px 0 20px;
}
.btns {
    display: flex;
    gap: 12px;
}
.btns-innr {
    width: 45px;
    height: 45px;
    background: #222a68;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s ease-in-out;
    font-size: 18px;
    color: white;
}
.btns-innr:hover {
    background: #ffdf00;
}
/* Carousel Section */
.carousel-container {
    width: 70%;
}
.owl-carousel .owl-stage {
    display: flex;
}
/* Ensuring Equal Height for Items */
.owl-carousel .item {
    background: white;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%; /* Ensures equal height */
}
.owl-carousel ol, ul{
    padding-left: 0.61rem !important;
}
/* Enlarged Image */
.item img {
    width: 100%;
    height: auto; /* Increased height */
    object-fit: cover; /* Maintains aspect ratio */
    border-radius: 10px;
}
/* Equal Height for Content */
.testi-content {
    flex-grow: 1; /* Ensures equal height */
    margin-top: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.testi-content h3 {
    font-size: 14px;
    color: #fcb32d;
    margin-bottom: 8px;
}
.testi-content p {
    font-size: 16px;
    font-weight: bold;
    color: #222a68;
    margin-bottom: auto; /* Pushes elements to maintain equal spacing */
}
.package-box {
    margin-top: 10px;
    background: #eaf7ff;
    padding: 6px 12px;
    border-left: 4px solid #2196f3;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    color: #0d47a1;
    display: inline-block;
    transition: all 0.3s ease;
}
.package-box strong {
    color: #004085;
}
/* Play Button */
.play-icon {
    font-size: 40px;
    color: #d9534f;
    transition: 0.3s;
    cursor: pointer;
}
.play-icon:hover {
    color: #c9302c;
}
/* Modal Styling */
.video-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.video-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative; /* Ensure close button is positioned relative */
}
/* Perfectly Positioned Close Button */
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.close-modal:hover {
    color: #d9534f;
    background: #f5f5f5;
}
/* Responsive */
@media (max-width: 768px) {
    .testi-grid {
        flex-direction: column;
        text-align: center;
    }
    .testi-left,
    .carousel-container {
        width: 100%;
    }
    .btns {
        justify-content: center;
    }
    .video-modal-content {
        width: 90%;
    }
    .owl-carousel .item{
        margin-top: 20px;
    }
}
.testimonial-text {
    font-size: 16px;
    font-style: italic;
    color: #555;
    margin-top: 10px;
    text-align: center;
    padding: 10px;
    background: #f9f9f9;
    border-left: 4px solid #222a68;
    border-radius: 8px;
}
/* Modal Styling */
.testimonial-modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}
.testimonial-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}
#testimonialText {
    padding: 18px;
    font-size: 18px;
    color: #333;
    font-style: italic;
    line-height: 1.5;
}
.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 24px;
    cursor: pointer;
    color: #333;
    background: white;
    padding: 5px 10px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}
.close-modal:hover {
    color: #d9534f;
    background: #f5f5f5;
}
.custom-btn {
    background-color: #ff9800;
    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);
}
