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

body {
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    background-color: whitesmoke;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background-color: #582858; /* Purple from logo */
    color: white;
    height: 40px;
    line-height: 40px;
    padding: 0 20px;
    font-size: 13px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1101;
    transition: all 0.3s ease;
}

.top-bar-news {
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.news-marquee {
    white-space: nowrap;
    overflow: hidden;
    position: relative;
}

.news-marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 18s linear infinite;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* Main Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: all 0.3s ease;
    padding: 20px 0;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: normal;
    letter-spacing: 3px;
    color: #800080; /* Purple from logo */
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-links a {
    color: #FFA500; /* Orange from logo */
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

.nav-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.give-btn {
    background-color: #800080; /* Purple from logo */
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.give-btn:hover {
    background-color: #660066; /* Darker shade of purple */
}

.apply-btn {
    background-color: #FFA500; /* Orange from logo */
    color: white;
    padding: 10px 25px;
    text-decoration: none;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
}

.apply-btn:hover {
    background-color: #CC8400; /* Darker shade of orange */
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.30); /* medium-light black overlay for text readability */
    z-index: 1;
}

/* Hero Indicators */
.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 3;
}

.hero-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-indicator.active {
    background: #FFA500;
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.3);
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 1200px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 40px;
    font-weight: normal;
    margin-bottom: 30px;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero-cta {
    background-color: #FFA500; /* Orange from logo */
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 16px;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s;
    font-weight: 500;
}

.hero-cta:hover {
    background-color: #CC8400; /* Darker shade of orange */
    transform: translateY(-2px);
}

/* Content Section */
.content {
    padding: 120px 20px 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #800080; /* Purple from logo */
}

.content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

/* When scrolled, hide top bar */
.navbar.scrolled ~ .hero {
    margin-top: 0;
}

body.scrolled .top-bar {
    transform: translateY(-100%);
}

body.scrolled .navbar {
    top: 0;
}



@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    background-color: whitesmoke;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

/* About Section */
.about-section {
    position: relative;
    padding: 80px 0;
    min-height: 100vh;
}

/* Floating Background Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #4a90e2, #50c9c3);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.circle-1 { width: 150px; height: 150px; top: 10%; left: 10%; animation-delay: 0s; }
.circle-2 { width: 100px; height: 100px; top: 60%; right: 15%; animation-delay: 2s; }
.circle-3 { width: 120px; height: 120px; bottom: 20%; left: 20%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Container */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(45deg, #4a90e2, #50c9c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-underline {
    height: 4px;
    width: 80px;
    background: #4a90e2;
    margin: 20px auto;
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out;
}

@keyframes expandWidth {
    0% { width: 0; }
    100% { width: 80px; }
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: white;
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px;
}

.card-content p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Recognition Section */
.recognition-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #4a90e2;
    border-radius: 2px;
}

.recognition-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.logo-item:hover {
    transform: translateY(-8px);
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 2rem;
    color: #4a90e2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover .logo-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.logo-item span {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Facilities Section */
.facilities-section {
    margin-bottom: 80px;
}

.facilities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.facility-card {
    background: rgba(47, 47, 47, 0.579);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(84, 191, 211, 0.3);
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.facility-card .facility-image,
.facility-card .facility-content {
    position: relative;
    z-index: 2;
}

.facility-card:hover::before {
    opacity: 0.5;
}

.facility-card:nth-child(odd).animate-in {
    animation: slideInLeft 0.8s ease-out forwards;
}

.facility-card:nth-child(even).animate-in {
    animation: slideInRight 0.8s ease-out forwards;
}

.facility-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.facility-image {
    width: 60px;
    height: 60px;
    background: #50c9c3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.facility-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: whitesmoke;
    margin: 0 0 8px;
}

.facility-content p {
    font-size: 0.9rem;
    color: whitesmoke;
}

/* Features Section */
.features-section {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    background: linear-gradient(45deg, #4a90e2, #50c9c3);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #4a90e2;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.feature-item p {
    font-size: 0.85rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7f8c8d;
    margin: 8px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-dot.active {
    background: #4a90e2;
    transform: scale(1.2);
}

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

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title { font-size: 2.5rem; }
    .section-title { font-size: 1.8rem; }
    .info-grid, .features-grid { grid-template-columns: 1fr; }
    .facilities-grid { flex-direction: column; }
    .facility-card { max-width: 100%; }
    .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
    .about-section { padding: 60px 0; }
    .container { padding: 0 15px; }
    .main-title { font-size: 2rem; }
}


/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    background-color: whitesmoke;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

/* About Section */
.about-section {
    position: relative;
    padding: 80px 0;
    min-height: 100vh;
}

/* Floating Background Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #4a90e2, #50c9c3);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.circle-1 { width: 150px; height: 150px; top: 10%; left: 10%; animation-delay: 0s; }
.circle-2 { width: 100px; height: 100px; top: 60%; right: 15%; animation-delay: 2s; }
.circle-3 { width: 120px; height: 120px; bottom: 20%; left: 20%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Container */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInUp 1s ease-out;
}

.main-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    background: linear-gradient(45deg, #4a90e2, #50c9c3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-underline {
    height: 4px;
    width: 80px;
    background: #4a90e2;
    margin: 20px auto;
    border-radius: 2px;
    animation: expandWidth 1.5s ease-out;
}

@keyframes expandWidth {
    0% { width: 0; }
    100% { width: 80px; }
}

.subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    font-weight: 300;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 80px;
}

.info-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
}

.info-card:nth-child(odd).animate-in {
    animation: slideInLeft 0.8s ease-out forwards;
}

.info-card:nth-child(even).animate-in {
    animation: slideInRight 0.8s ease-out forwards;
}

.info-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #4a90e2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.8rem;
    color: white;
}

.card-content h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 8px;
}

.card-content p {
    font-size: 0.9rem;
    color: #7f8c8d;
}

/* Recognition Section */
.recognition-section {
    margin-bottom: 80px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #4a90e2;
    border-radius: 2px;
}

.recognition-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logo-item {
    text-align: center;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.5s ease;
}

.logo-item:nth-child(odd).animate-in {
    animation: slideInLeft 0.8s ease-out forwards;
}

.logo-item:nth-child(even).animate-in {
    animation: slideInRight 0.8s ease-out forwards;
}

.logo-item:hover {
    transform: translateY(-8px);
}

.logo-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 2rem;
    color: #4a90e2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-item:hover .logo-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.logo-item span {
    font-size: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

/* Facilities Section */
.facilities-section {
    margin-bottom: 80px;
}

.facilities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.facility-card {
    background: rgba(47, 47, 47, 0.85);
    /* border-radius: 10px; */
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    position: relative;
    overflow: hidden;
    /* border: 1px solid rgba(47, 47, 47, 0.4); */
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--bg-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.facility-card .facility-image,
.facility-card .facility-content {
    position: relative;
    z-index: 2;
}

.facility-card:hover::before {
    opacity: 0.5;
}

.facility-card:nth-child(odd).animate-in {
    animation: slideInLeft 0.8s ease-out forwards;
}

.facility-card:nth-child(even).animate-in {
    animation: slideInRight 0.8s ease-out forwards;
}

.facility-card:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 20px rgba(74, 144, 226, 0.4);
}

.facility-image {
    width: 60px;
    height: 60px;
    background: #50c9c3;
    /* border-radius: 50%; */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    flex-shrink: 0;
}

.facility-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: whitesmoke;
    margin: 0 0 8px;
}

.facility-content p {
    font-size: 0.9rem;
    color: whitesmoke;
}

/* Features Section */
.features-section {
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.feature-item {
    background: linear-gradient(45deg, #4a90e2, #50c9c3);
    /* border-radius: 15px; */
    padding: 20px;
    text-align: center;
    color: white;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
}

.feature-item:nth-child(odd).animate-in {
    animation: slideInLeft 0.8s ease-out forwards;
}

.feature-item:nth-child(even).animate-in {
    animation: slideInRight 0.8s ease-out forwards;
}

.feature-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #4a90e2;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0 0 8px;
}

.feature-item p {
    font-size: 0.85rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.scroll-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #7f8c8d;
    margin: 8px 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.scroll-dot.active {
    background: #4a90e2;
    transform: scale(1.2);
}

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

@keyframes slideInLeft {
    0% { opacity: 0; transform: translateX(-50px); }
    100% { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    0% { opacity: 0; transform: translateX(50px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title { font-size: 2.5rem; }
    .section-title { font-size: 1.8rem; }
    .info-grid, .features-grid { grid-template-columns: 1fr; }
    .facilities-grid { flex-direction: column; }
    .facility-card { max-width: 100%; }
    .scroll-indicator { display: none; }
}

@media (max-width: 480px) {
    .about-section { padding: 60px 0; }
    .container { padding: 0 15px; }
    .main-title { font-size: 2rem; }
}


/*  css for addmission start */

#admissionprocess {
    background: whitesmoke;
    position: relative;
    padding: 60px 0 40px;
}

.admission-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    /* padding-bottom: -20px; */
    margin-bottom: -240px !important;
}

/* Header Styles */
.process-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: slideDown 0.8s ease forwards;
}

.header-badge {
    display: inline-block;
    background: #582959;
    color: white;
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.process-title {
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
}

.process-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 300;
}

/* Flow Timeline */
.flow-timeline {
    position: relative;
    padding: 40px 0;
}

.flow-pattern {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #582959;
    opacity: 0.2;
    transform: translateX(-50%);
}

/* Flow Steps */
.flow-step {
    position: relative;
    margin-bottom: 30px;
    opacity: 0;
}
.flow-step.left .step-card,
.flow-step.right .step-card {
    transform: scale(0.92);
    font-size: 0.97rem;
    padding: 22px;
}
.flow-step.left.final .step-card,
.flow-step.right.final .step-card,
.flow-step.left .step-card.highlight,
.flow-step.right .step-card.highlight {
    transform: scale(1);
    font-size: 1rem;
    padding: 30px;
}
.flow-step.left {
    padding-right: 50%;
    padding-left: 0;
    animation: slideFromLeft 0.8s ease forwards;
}
.flow-step.right {
    padding-left: 50%;
    padding-right: 0;
    animation: slideFromRight 0.8s ease forwards;
}

.step-connector {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.flow-step.left .step-connector {
    right: 0;
}

.flow-step.right .step-connector {
    left: 0;
}

.connector-line {
    position: absolute;
    height: 2px;
    background: #582959;
    opacity: 0;
    animation: expandLine 0.6s ease forwards;
    animation-delay: 0.3s;
}

.flow-step.left .connector-line {
    right: 0;
    width: 50%;
}

.flow-step.right .connector-line {
    left: 0;
    width: 50%;
}

.connector-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: #582959;
    border-radius: 50%;
    border: 4px solid whitesmoke;
    transform: scale(0);
    animation: popIn 0.4s ease forwards;
    animation-delay: 0.5s;
}

.flow-step.left .connector-dot {
    right: -8px;
    top: -7px;
}

.flow-step.right .connector-dot {
    left: -8px;
    top: -7px;
}

/* Step Cards */
.step-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    flex-direction: row !important;
    align-items: center;
    flex-wrap: nowrap !important;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: #582959;
}

.step-card.highlight {
    background: #582959;
    color: white;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap;
}

.step-icon {
    flex-shrink: 0;
}

.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(88, 41, 89, 0.1);
    color: #582959;
    border-radius: 50%;
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-card.highlight .step-num {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.step-info h3 {
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.step-info p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* Documents Section */
.documents-wrapper {
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: 0.5s;
}

.documents-container {
    background: rgba(255,255,255,0.25);
    border-radius: 22px;
    padding: 32px 18px 28px 18px;
    box-shadow: 0 4px 18px rgba(88,41,89,0.10);
    backdrop-filter: blur(8px) saturate(1.1);
    border: 1px solid rgba(88,41,89,0.10);
    max-width: 520px;
    margin: 20px auto;
    position: relative;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 150px;
    margin-bottom: 0 !important;
}

.documents-container::before {
    content: '';
    position: absolute;
    top: -30px; left: 50%;
    width: 90px; height: 90px;
    background: linear-gradient(135deg, #582959 0%, #b993d6 100%);
    opacity: 0.10;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.doc-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    z-index: 1;
}

.doc-icon {
    font-size: 2rem;
    animation: doc-bounce 2.2s infinite cubic-bezier(.68,-0.55,.27,1.55);
}

@keyframes doc-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px) scale(1.08); }
}

.doc-header h2 {
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #582959;
    letter-spacing: 1px;
}

.doc-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px 12px;
    z-index: 1;
}

.doc-item {
    background: rgba(255,255,255,0.55);
    border-radius: 12px;
    box-shadow: 0 1px 6px rgba(88,41,89,0.07);
    padding: 14px 10px 10px 10px;
    min-width: 120px;
    max-width: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: transform 0.3s cubic-bezier(.77,0,.18,1), box-shadow 0.3s;
    cursor: pointer;
    overflow: visible;
    animation: doc-stagger 0.7s cubic-bezier(.77,0,.18,1) both;
}

.doc-item:hover {
    transform: translateY(-6px) scale(1.03) rotate(-1deg);
    box-shadow: 0 4px 16px rgba(88,41,89,0.13);
}

@keyframes doc-stagger {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.doc-marker {
    width: 22px; height: 22px;
    background: linear-gradient(135deg, #b993d6 0%, #582959 100%);
    border-radius: 50%;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 4px rgba(88,41,89,0.10);
    position: relative;
    z-index: 1;
    animation: doc-marker-pop 1.2s cubic-bezier(.77,0,.18,1) both;
}

.doc-marker::after {
    content: '\1F4C4'; /* 📄 */
    font-size: 0.9rem;
    color: #fff;
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    filter: drop-shadow(0 1px 2px #58295933);
}

@keyframes doc-marker-pop {
    0% { transform: scale(0.7); opacity: 0; }
    60% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); }
}

.doc-item span {
    font-size: 0.92rem;
    color: #582959;
    font-weight: 600;
    text-align: center;
    z-index: 1;
    letter-spacing: 0.2px;
}

/* Animations */
@keyframes slideDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes expandLine {
    to {
        opacity: 0.3;
    }
}

@keyframes popIn {
    to {
        transform: scale(1);
    }
}

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

/* Animation Delays */
.flow-step:nth-child(1) { animation-delay: 0.1s; }
.flow-step:nth-child(2) { animation-delay: 0.2s; }
.flow-step:nth-child(3) { animation-delay: 0.3s; }
.flow-step:nth-child(4) { animation-delay: 0.4s; }
.flow-step:nth-child(5) { animation-delay: 0.5s; }
.flow-step:nth-child(6) { animation-delay: 0.6s; }
.flow-step:nth-child(7) { animation-delay: 0.7s; }

/* Responsive Design */
@media (max-width: 768px) {
    .process-title {
        font-size: 2.5rem;
    }
    .process-subtitle {
        font-size: 1rem;
    }
    .flow-step.left,
    .flow-step.right {
        padding: 0;
        margin-bottom: 32px;
    }
    .flow-pattern {
        display: none;
    }
    .step-connector {
        display: none;
    }
    .step-card {
        padding: 16px;
        font-size: 0.92rem;
        border-radius: 14px;
    }
    .flow-step.left .step-card,
    .flow-step.right .step-card {
        transform: scale(0.92);
        font-size: 0.90rem;
        padding: 12px;
    }
    .flow-step.left.final .step-card,
    .flow-step.right.final .step-card,
    .flow-step.left .step-card.highlight,
    .flow-step.right .step-card.highlight {
        transform: scale(1);
        font-size: 1rem;
        padding: 18px;
    }
    .step-num {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .step-info h3 {
        font-size: 1rem;
    }
    .step-info p {
        font-size: 0.85rem;
    }
    .documents-container {
        padding: 14px 4px 12px 4px;
        max-width: 98vw;
    }
    .doc-header h2 {
        font-size: 1.1rem;
    }
    .doc-item {
        min-width: 90px;
        max-width: 110px;
        padding: 8px 4px 6px 4px;
    }
    .doc-marker {
        width: 16px; height: 16px;
        margin-bottom: 4px;
    }
    .doc-item span {
        font-size: 0.75rem;
    }
}
@media (max-width: 480px) {
    .process-title {
        font-size: 2rem;
    }
    .step-card {
        flex-direction: row !important;
        text-align: left !important;
    }
    .flow-step.left .step-card,
    .flow-step.right .step-card {
        transform: scale(0.90);
        font-size: 0.80rem;
        padding: 7px;
    }
    .flow-step.left.final .step-card,
    .flow-step.right.final .step-card,
    .flow-step.left .step-card.highlight,
    .flow-step.right .step-card.highlight {
        transform: scale(1);
        font-size: 0.95rem;
        padding: 12px;
    }
    .step-num {
        width: 28px;
        height: 28px;
        font-size: 0.8rem;
    }
    .step-info h3 {
        font-size: 0.85rem;
    }
    .step-info p {
        font-size: 0.75rem;
    }
    .documents-container {
        padding: 6px 2px 6px 2px;
        margin-top:150px;
        max-width: 99vw;
    }
    .doc-header h2 {
        font-size: 0.95rem;
    }
    .doc-item {
        min-width: 70px;
        max-width: 90px;
        padding: 4px 2px 4px 2px;
    }
    .doc-marker {
        width: 12px; height: 12px;
        margin-bottom: 2px;
    }
    .doc-item span {
        font-size: 0.65rem;
    }
}

/* Loading Animation for Progressive Reveal */
.loading-reveal {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
    filter: blur(6px);
    transition: all 0.8s cubic-bezier(.77,0,.18,1);
}

.loading-reveal.revealed {
    opacity: 1;
    transform: translateY(0) scale(1.03);
    filter: blur(0);
    box-shadow: 0 8px 32px rgba(88,41,89,0.10);
}

/*  css for addmisson ends */
/*  css for why us starts  */


/* Flowing Elegance Base */
#ksu-flowing-elegance {
    position: relative;
    background: #ffffff;
    overflow: hidden;
    font-family:'TikTok Sans', 'Poppins', sans-serif;
    cursor: none;
    padding: 20px 0;
}

/* Gradient Background */
.ksu-flow-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(244, 114, 182, 0.1) 100%);
    z-index: 1;
}

/* Main Stage */
.ksu-stage {
    position: relative;
    z-index: 10;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* Entrance */
.ksu-entrance {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px 0;
}

/* Flow Title */
.ksu-flow-title {
    font-size: clamp(2.2rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    background: linear-gradient(90deg, #60a5fa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: scale(0.8);
    animation: ksuTitleEmerge 1s ease-out 0.3s forwards;
}

.ksu-accent {
    background: linear-gradient(90deg, #60a5fa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes ksuTitleEmerge {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Pulse Glow */
.ksu-pulse-glow {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
    filter: blur(50px);
    animation: ksuPulseGlow 5s ease-in-out infinite;
}

@keyframes ksuPulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.25; }
    50% { transform: scale(1.1); opacity: 0.4; }
}

/* Timeline */
.ksu-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 0;
}

/* Flow Points */
.ksu-flow-point {
    position: relative;
    opacity: 0;
    transform: scale(0.7) translateZ(-100px);
    width: 100%;
    max-width: 320px; /* Reduced from 400px to bring points closer */
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

/* Make flow points visible when animation is applied */
.ksu-flow-point.ksu-visible {
    opacity: 1;
    transform: scale(1) translateZ(0);
}

/* Fallback: Make flow points visible after 3 seconds if JavaScript fails */
@keyframes ksu-fallback-reveal {
    0% {
        opacity: 0;
        transform: scale(0.7) translateZ(-100px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateZ(0);
    }
}

.ksu-flow-point {
    animation: ksu-fallback-reveal 0.8s ease-out 3s forwards;
}

.ksu-flow-point:nth-child(odd) {
    transform: scale(0.7) translateZ(-100px) translateX(30px); /* Adjusted to reduce space */
    align-self: flex-start;
}

.ksu-flow-point:nth-child(even) {
    transform: scale(0.7) translateZ(-100px) translateX(-30px); /* Adjusted to reduce space */
    align-self: flex-end;
}

.ksu-flow-point:nth-child(1) { animation-delay: 0.1s; }
.ksu-flow-point:nth-child(2) { animation-delay: 0.2s; }
.ksu-flow-point:nth-child(3) { animation-delay: 0.3s; }
.ksu-flow-point:nth-child(4) { animation-delay: 0.4s; }
.ksu-flow-point:nth-child(5) { animation-delay: 0.5s; }
.ksu-flow-point:nth-child(6) { animation-delay: 0.6s; }
.ksu-flow-point:nth-child(7) { animation-delay: 0.7s; }
.ksu-flow-point:nth-child(8) { animation-delay: 0.8s; }

@keyframes ksuPointFade {
    to {
        opacity: 1;
        transform: scale(1) translateZ(0) translateX(0);
    }
}

.ksu-flow-content {
    padding: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.ksu-flow-content:hover {
    transform: translateY(-10px);
}

.ksu-flow-num {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(96, 165, 250, 0.3);
    margin-bottom: 8px;
    display: block;
}

.ksu-flow-title-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
}

.ksu-flow-text {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Flow Line */
.ksu-flow-line {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    z-index: 5;
}

.ksu-flow-svg {
    width: 100%;
    height: 100%;
}

.ksu-flow-path {
    stroke: rgba(96, 165, 250, 0.3);
    stroke-width: 4;
    fill: none;
    stroke-dasharray: 10, 10;
    animation: ksuFlowLine 20s linear infinite;
}

@keyframes ksuFlowLine {
    0% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -20; }
}

/* Connecting Lines */
.ksu-connecting-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6;
}

.ksu-connecting-svg {
    width: 100%;
    height: 100%;
    position: absolute;
}

.ksu-connecting-path {
    stroke: rgba(96, 165, 250, 0.3);
    stroke-width: 2;
    fill: none;
    stroke-dasharray: 5, 5;
}

/* Sparks */
.ksu-spark-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.ksu-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(96, 165, 250, 0.5);
    border-radius: 50%;
    animation: ksuSparkFloat 12s infinite ease-in-out;
}

.ksu-spark:nth-child(1) { left: 25%; animation-delay: 0s; }
.ksu-spark:nth-child(2) { left: 50%; animation-delay: 4s; }
.ksu-spark:nth-child(3) { left: 75%; animation-delay: 8s; }

@keyframes ksuSparkFloat {
    0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
    20% { opacity: 0.6; }
    50% { transform: translateY(0) scale(1); opacity: 0.8; }
    80% { opacity: 0.6; }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* Minimal Cursor */
.ksu-minimal-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(96, 165, 250, 0.4) 0%, transparent 70%);
    box-shadow: 0 0 10px rgba(96, 165, 250, 0.5);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .ksu-flow-title {
        font-size: clamp(2rem, 7vw, 3.5rem);
    }

    .ksu-timeline {
        gap: 50px;
    }

    .ksu-flow-content {
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .ksu-stage {
        padding: 20px 15px;
    }

    .ksu-flow-title {
        font-size: 2.8rem !important;
        font-family: 'TikTok Sans', 'Poppins', sans-serif;
        font-weight: 800;
        line-height: 1.1;
        margin-bottom: 20px;
        color: #592958;
        background: linear-gradient(135deg, #592958, #8B5A8B, #FFA500);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: titleGlow 3s ease-in-out infinite alternate;
    }

    /* Fallback for browsers that don't support background-clip */
    @supports not (-webkit-background-clip: text) {
        .ksu-flow-title {
            color: #592958;
            background: none;
            -webkit-text-fill-color: initial;
        }
    }

    @keyframes titleGlow {
        0% { filter: drop-shadow(0 0 5px rgba(89, 41, 88, 0.3)); }
        100% { filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.5)); }
    }

    .ksu-timeline {
        gap: 20px;
        align-items: stretch;
        padding: 15px 0;
        flex-direction: column;
    }

    .ksu-flow-point {
        align-self: stretch !important;
        transform: scale(1) translateZ(0) !important;
        margin-bottom: 20px;
        width: 100%;
        animation: cardFloat 6s ease-in-out infinite;
    }

    .ksu-flow-point:nth-child(odd) {
        animation-delay: 0s;
    }

    .ksu-flow-point:nth-child(even) {
        animation-delay: 1s;
    }

    .ksu-flow-point:nth-child(3) {
        animation-delay: 2s;
    }

    .ksu-flow-point:nth-child(4) {
        animation-delay: 3s;
    }

    .ksu-flow-point:nth-child(5) {
        animation-delay: 4s;
    }

    .ksu-flow-point:nth-child(6) {
        animation-delay: 5s;
    }

    .ksu-flow-point:nth-child(7) {
        animation-delay: 6s;
    }

    .ksu-flow-point:nth-child(8) {
        animation-delay: 7s;
    }

    @keyframes cardFloat {
        0%, 100% { transform: translateY(0px) scale(1); }
        50% { transform: translateY(-8px) scale(1.02); }
    }

    @keyframes ksuPointFade {
        to {
            opacity: 1;
            transform: scale(1) translateZ(0) !important;
        }
    }

    .ksu-flow-content {
        padding: 30px 25px;
        width: 100%;
        max-width: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
        backdrop-filter: blur(15px);
        border-radius: 25px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        border: 2px solid rgba(255, 255, 255, 0.3);
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ksu-flow-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s ease;
    }

    .ksu-flow-content:hover::before {
        left: 100%;
    }

    .ksu-flow-content:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 165, 0, 0.5);
    }

    .ksu-flow-num {
        font-size: 2.5rem;
        font-family: 'TikTok Sans', 'Poppins', sans-serif;
        font-weight: 900;
        margin-bottom: 20px;
        background: linear-gradient(135deg, #592958, #FFA500);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: numberPulse 2s ease-in-out infinite;
    }

    @keyframes numberPulse {
        0%, 100% { transform: scale(1); }
        50% { transform: scale(1.1); }
    }

    .ksu-flow-title-text {
        font-size: 1.6rem;
        font-family: 'TikTok Sans', 'Poppins', sans-serif;
        font-weight: 700;
        margin-bottom: 12px;
        line-height: 1.3;
        color: #2c3e50;
        position: relative;
    }

    .ksu-flow-title-text::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 3px;
        background: linear-gradient(90deg, #592958, #FFA500);
        transition: width 0.6s ease;
    }

    .ksu-flow-content:hover .ksu-flow-title-text::after {
        width: 100%;
    }

    .ksu-flow-text {
        font-size: 1.2rem;
        font-family: 'TikTok Sans', 'Poppins', sans-serif;
        line-height: 1.6;
        color: #555;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .ksu-flow-content:hover .ksu-flow-text {
        color: #333;
    }

    .ksu-flow-line {
        display: none;
    }

    .ksu-connecting-lines {
        display: none;
    }

    .ksu-minimal-cursor {
        display: none;
    }

    #ksu-flowing-elegance {
        cursor: auto;
    }

    .ksu-pulse-glow {
        width: 400px;
        height: 400px;
        animation: pulseGlow 4s ease-in-out infinite;
    }

    @keyframes pulseGlow {
        0%, 100% { 
            transform: scale(1);
            opacity: 0.3;
        }
        50% { 
            transform: scale(1.2);
            opacity: 0.6;
        }
    }
}

@media (max-width: 480px) {
    .ksu-stage {
        padding: 20px 12px;
    }

    .ksu-flow-title {
        font-size: 2.8rem !important;
        color: #592958 !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        -webkit-text-fill-color: initial !important;
        background-clip: initial !important;
        text-fill-color: initial !important;
        text-shadow: 0 2px 4px rgba(0,0,0,0.1);
        /* Ensure visibility on all mobile browsers */
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    .ksu-accent {
        color: #FFA500 !important;
        font-weight: 900;
        background: none !important;
        -webkit-background-clip: initial !important;
        -webkit-text-fill-color: initial !important;
        background-clip: initial !important;
        text-fill-color: initial !important;
    }

    /* Fallback for browsers that don't support background-clip */
    @supports not (-webkit-background-clip: text) {
        .ksu-flow-title {
            color: #592958 !important;
            background: none !important;
            -webkit-text-fill-color: initial !important;
        }
    }

    /* Additional fallback for older mobile browsers */
    .ksu-flow-title {
        color: #592958 !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
        text-fill-color: initial !important;
    }

    .ksu-timeline {
        gap: 15px;
        padding: 10px 0;
        flex-direction: column;
    }

    .ksu-flow-point {
        align-self: stretch !important;
        transform: scale(1) translateZ(0) !important;
        margin-bottom: 15px;
        width: 100%;
        animation: cardFloat 5s ease-in-out infinite;
    }

    .ksu-flow-point:nth-child(odd) {
        animation-delay: 0s;
    }

    .ksu-flow-point:nth-child(even) {
        animation-delay: 0.8s;
    }

    .ksu-flow-point:nth-child(3) {
        animation-delay: 1.6s;
    }

    .ksu-flow-point:nth-child(4) {
        animation-delay: 2.4s;
    }

    .ksu-flow-point:nth-child(5) {
        animation-delay: 3.2s;
    }

    .ksu-flow-point:nth-child(6) {
        animation-delay: 4s;
    }

    .ksu-flow-point:nth-child(7) {
        animation-delay: 4.8s;
    }

    .ksu-flow-point:nth-child(8) {
        animation-delay: 5.6s;
    }

    @keyframes cardFloat {
        0%, 100% { transform: translateY(0px) scale(1); }
        50% { transform: translateY(-6px) scale(1.01); }
    }

    .ksu-flow-content {
        padding: 25px 20px;
        width: 100%;
        max-width: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
        backdrop-filter: blur(12px);
        border-radius: 22px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
        border: 2px solid rgba(255, 255, 255, 0.3);
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ksu-flow-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s ease;
    }

    .ksu-flow-content:hover::before {
        left: 100%;
    }

    .ksu-flow-content:hover {
        transform: translateY(-4px) scale(1.01);
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
        border-color: rgba(255, 165, 0, 0.5);
    }

    .ksu-flow-num {
        font-size: 2.2rem;
        font-family: 'TikTok Sans', 'Poppins', sans-serif;
        font-weight: 900;
        margin-bottom: 18px;
        background: linear-gradient(135deg, #592958, #FFA500);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: numberPulse 2s ease-in-out infinite;
    }

    .ksu-flow-title-text {
        font-size: 1.5rem;
        font-family: 'TikTok Sans', 'Poppins', sans-serif;
        font-weight: 700;
        margin-bottom: 10px;
        line-height: 1.3;
        color: #2c3e50;
        position: relative;
    }

    .ksu-flow-title-text::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #592958, #FFA500);
        transition: width 0.6s ease;
    }

    .ksu-flow-content:hover .ksu-flow-title-text::after {
        width: 100%;
    }

    .ksu-flow-text {
        font-size: 1.1rem;
        font-family: 'TikTok Sans', 'Poppins', sans-serif;
        line-height: 1.5;
        color: #555;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .ksu-flow-content:hover .ksu-flow-text {
        color: #333;
    }

    .ksu-flow-line {
        display: none;
    }

    .ksu-connecting-lines {
        display: none;
    }

    .ksu-pulse-glow {
        width: 350px;
        height: 350px;
        animation: pulseGlow 4s ease-in-out infinite;
    }
}

@media (max-width: 375px) {
    .ksu-stage {
        padding: 18px 10px;
    }

    .ksu-flow-title {
        font-size: 2.4rem !important;
        color: #592958 !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        -webkit-text-fill-color: initial !important;
        background-clip: initial !important;
        text-fill-color: initial !important;
        /* Ensure visibility on all mobile browsers */
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    .ksu-accent {
        color: #FFA500 !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        -webkit-text-fill-color: initial !important;
        background-clip: initial !important;
        text-fill-color: initial !important;
    }

    /* Fallback for browsers that don't support background-clip */
    @supports not (-webkit-background-clip: text) {
        .ksu-flow-title {
            color: #592958 !important;
            background: none !important;
            -webkit-text-fill-color: initial !important;
        }
    }

    /* Additional fallback for older mobile browsers */
    .ksu-flow-title {
        color: #592958 !important;
        background: none !important;
        -webkit-text-fill-color: initial !important;
        text-fill-color: initial !important;
    }

    .ksu-timeline {
        gap: 12px;
        padding: 8px 0;
        flex-direction: column;
    }

    .ksu-flow-point {
        align-self: stretch !important;
        transform: scale(1) translateZ(0) !important;
        margin-bottom: 12px;
        width: 100%;
        animation: cardFloat 4s ease-in-out infinite;
    }

    .ksu-flow-point:nth-child(odd) {
        animation-delay: 0s;
    }

    .ksu-flow-point:nth-child(even) {
        animation-delay: 0.6s;
    }

    .ksu-flow-point:nth-child(3) {
        animation-delay: 1.2s;
    }

    .ksu-flow-point:nth-child(4) {
        animation-delay: 1.8s;
    }

    .ksu-flow-point:nth-child(5) {
        animation-delay: 2.4s;
    }

    .ksu-flow-point:nth-child(6) {
        animation-delay: 3s;
    }

    .ksu-flow-point:nth-child(7) {
        animation-delay: 3.6s;
    }

    .ksu-flow-point:nth-child(8) {
        animation-delay: 4.2s;
    }

    @keyframes cardFloat {
        0%, 100% { transform: translateY(0px) scale(1); }
        50% { transform: translateY(-4px) scale(1.005); }
    }

    .ksu-flow-content {
        padding: 22px 18px;
        width: 100%;
        max-width: 100%;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.9));
        backdrop-filter: blur(10px);
        border-radius: 20px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.3);
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .ksu-flow-content::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
        transition: left 0.6s ease;
    }

    .ksu-flow-content:hover::before {
        left: 100%;
    }

    .ksu-flow-content:hover {
        transform: translateY(-3px) scale(1.005);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        border-color: rgba(255, 165, 0, 0.5);
    }

    .ksu-flow-num {
        font-size: 2rem;
        font-family: 'TikTok Sans', 'Poppins', sans-serif;
        font-weight: 900;
        margin-bottom: 16px;
        background: linear-gradient(135deg, #592958, #FFA500);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: numberPulse 2s ease-in-out infinite;
    }

    .ksu-flow-title-text {
        font-size: 1.4rem;
        font-family: 'TikTok Sans', 'Poppins', sans-serif;
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.3;
        color: #2c3e50;
        position: relative;
    }

    .ksu-flow-title-text::after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #592958, #FFA500);
        transition: width 0.6s ease;
    }

    .ksu-flow-content:hover .ksu-flow-title-text::after {
        width: 100%;
    }

    .ksu-flow-text {
        font-size: 1rem;
        font-family: 'TikTok Sans', 'Poppins', sans-serif;
        line-height: 1.4;
        color: #555;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .ksu-flow-content:hover .ksu-flow-text {
        color: #333;
    }

    .ksu-flow-line {
        display: none;
    }

    .ksu-connecting-lines {
        display: none;
    }

    .ksu-pulse-glow {
        width: 300px;
        height: 300px;
        animation: pulseGlow 4s ease-in-out infinite;
    }
}

    .ksu-flow-num {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }

    .ksu-flow-title-text {
        font-size: 1.2rem;
        margin-bottom: 6px;
    }

    .ksu-flow-text {
        font-size: 0.95rem;
    }

    .ksu-flow-line {
        left: 20px;
    }

    .ksu-connecting-lines {
        left: 20px;
        width: 4px;
    }

    .ksu-pulse-glow {
        width: 220px;
        height: 220px;
    }


/* Performance Mode */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}
/*  why choose us ends  */


/*  FAQS starts */



#faqs {
    background: #f8f9fa;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated background elements */
.bg-decoration {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: linear-gradient(135deg, #592958 0%, rgba(89, 41, 88, 0.3) 100%);
    filter: blur(80px);
    opacity: 0.1;
    animation: floatBg 20s ease-in-out infinite;
    z-index: -1;
}

.bg-decoration:nth-child(1) {
    top: -150px;
    left: -100px;
    animation-delay: 0s;
}

.bg-decoration:nth-child(2) {
    bottom: -150px;
    right: -100px;
    animation-delay: 10s;
}

@keyframes floatBg {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    position: relative;
    z-index: 1;
}

/* Header Section */
.faq-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    animation: fadeInScale 0.8s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.faq-header h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #592958;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.faq-header h1::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #592958;
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s both;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 60px; }
}

.faq-header p {
    color: #666;
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    font-weight: 300;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.badge-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.info-badge {
    background: rgba(89, 41, 88, 0.1);
    color: #592958;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    animation: slideIn 0.6s ease-out;
    animation-fill-mode: both;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(89, 41, 88, 0.1);
    transition: all 0.3s ease;
}

.info-badge:hover {
    background: #592958;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(89, 41, 88, 0.3);
}

.info-badge:nth-child(1) { animation-delay: 0.6s; }
.info-badge:nth-child(2) { animation-delay: 0.7s; }

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

/* FAQ Items */
.faq-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
    border: 1px solid rgba(89, 41, 88, 0.05);
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 35px rgba(89, 41, 88, 0.15);
}

.faq-item.active {
    box-shadow: 0 8px 35px rgba(89, 41, 88, 0.15);
    border-color: rgba(89, 41, 88, 0.2);
}

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

.faq-question {
    padding: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.faq-question::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(89, 41, 88, 0.05), transparent);
    transition: left 0.5s ease;
}

.faq-question:hover::before {
    left: 100%;
}

.question-number {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #592958 0%, rgba(89, 41, 88, 0.8) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.question-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.faq-item.active .question-number::after {
    width: 100px;
    height: 100px;
}

.faq-item.active .question-number {
    background: linear-gradient(135deg, #592958 0%, #6b2f6b 100%);
    transform: scale(1.05);
}

.question-content {
    flex: 1;
}

.question-content h3 {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 4px;
    transition: color 0.3s ease;
}

.faq-item:hover .question-content h3,
.faq-item.active .question-content h3 {
    color: #592958;
}

.question-hint {
    font-size: 0.75rem;
    color: #718096;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.faq-item:hover .question-hint {
    opacity: 1;
    transform: translateY(0);
}

.faq-toggle {
    width: 36px;
    height: 36px;
    background: #f7fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.faq-toggle svg {
    width: 18px;
    height: 18px;
    stroke: #592958;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #592958;
    transform: scale(0.9);
}

.faq-item.active .faq-toggle svg {
    transform: rotate(180deg);
    stroke: white;
}

/* Answer Section */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer-content {
    padding: 0 24px 24px 85px;
    color: #4a5568;
    line-height: 1.8;
    animation: fadeIn 0.5s ease;
}

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

.faq-answer-content ul {
    margin-top: 12px;
    list-style: none;
}

.faq-answer-content li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    animation: slideInLeft 0.4s ease;
    animation-fill-mode: both;
}

.faq-answer-content li:nth-child(1) { animation-delay: 0.1s; }
.faq-answer-content li:nth-child(2) { animation-delay: 0.2s; }
.faq-answer-content li:nth-child(3) { animation-delay: 0.3s; }

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

.faq-answer-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: rgba(89, 41, 88, 0.1);
    color: #592958;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: bold;
}

/* Prevent pseudo-elements from affecting button content */
.submit-button .button-content::before,
.submit-button .button-content::after {
    content: none !important;
    display: none !important;
}

.submit-button .button-content span::before,
.submit-button .button-content span::after {
    content: none !important;
    display: none !important;
}

/* Ensure button content is isolated from any pseudo-element interference */
.submit-button *::before,
.submit-button *::after {
    content: none !important;
}

/* Specific override for any potential tick icon interference */
.submit-button .button-content {
    position: relative;
    z-index: 1;
}

.submit-button .button-content * {
    position: relative;
    z-index: 1;
}

/* Additional safety measures to prevent any pseudo-element interference */
.submit-button,
.submit-button *,
.submit-button *::before,
.submit-button *::after {
    content: none !important;
}

.submit-button .button-content,
.submit-button .button-content *,
.submit-button .button-content *::before,
.submit-button .button-content *::after {
    content: none !important;
}

/* More specific overrides to prevent FAQ tick interference */
.submit-button .button-content span,
.submit-button .button-content div,
.submit-button .button-content p {
    position: relative;
}

.submit-button .button-content span::before,
.submit-button .button-content span::after,
.submit-button .button-content div::before,
.submit-button .button-content div::after,
.submit-button .button-content p::before,
.submit-button .button-content p::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
}

/* Override any potential inheritance from FAQ styles */
.submit-button .button-content *:not(.loading-spinner)::before,
.submit-button .button-content *:not(.loading-spinner)::after {
    content: none !important;
    display: none !important;
    visibility: hidden !important;
}

.highlight {
    color: #592958;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(89, 41, 88, 0.3);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-item.active .highlight::after {
    transform: scaleX(1);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .faq-container {
        padding: 30px 16px;
    }

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

    .badge-container {
        margin-top: 16px;
    }

    .faq-question {
        padding: 20px 16px;
        gap: 12px;
    }

    .question-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-radius: 12px;
    }

    .question-content h3 {
        font-size: 0.95rem;
    }

    .question-hint {
        display: none;
    }

    .faq-answer-content {
        padding: 0 16px 20px 16px;
        font-size: 0.9rem;
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
    }

    .faq-toggle svg {
        width: 16px;
        height: 16px;
    }
}

/* Smooth scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #592958;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(89, 41, 88, 0.8);
}



/*  FAQS ends */


/*  feeSection starts    */
#feeSection {
    background: #f5f7fa;
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Animated Background */
.background-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(89, 41, 88, 0.1) 0%, rgba(89, 41, 88, 0.05) 100%);
    animation: float 20s infinite ease-in-out;
}

.bg-circle:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.bg-circle:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.bg-circle:nth-child(3) {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Main Container */
.fee-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

/* Header */
.fee-header {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeInDown 1s ease-out;
}

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

.fee-header h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #592958;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.fee-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #592958, transparent);
    animation: slideWidth 2s ease-out;
}

@keyframes slideWidth {
    from {
        width: 0;
    }
    to {
        width: 80px;
    }
}

.fee-header p {
    color: #666;
    font-size: 1.1rem;
    margin-top: 20px;
    animation: fadeIn 1s ease-out 0.5s both;
}

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

/* Fee Cards Grid */
.fee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

/* Fee Card */
.fee-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    animation: slideUp 0.8s ease-out;
    animation-fill-mode: both;
}

.fee-card:nth-child(1) { animation-delay: 0.2s; }
.fee-card:nth-child(2) { animation-delay: 0.4s; }
.fee-card:nth-child(3) { animation-delay: 0.6s; }

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

.fee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #592958, rgba(89, 41, 88, 0.6));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.fee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(89, 41, 88, 0.15);
}

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

.card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #592958, rgba(89, 41, 88, 0.7));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.card-title h3 {
    color: #333;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.card-title .year-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 400;
}

.fee-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #592958;
    margin-bottom: 20px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.fee-amount .currency {
    font-size: 1.5rem;
    font-weight: 400;
}

.fee-amount .period {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

/* Fee Details */
.fee-details {
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.fee-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.fee-item:hover {
    padding-left: 10px;
    color: #592958;
}

.fee-item .item-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: #555;
}

.fee-item .item-amount {
    font-weight: 600;
    color: #333;
}

.checkmark {
    width: 18px;
    height: 18px;
    background: rgba(89, 41, 88, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #592958;
    font-size: 0.7rem;
}

/* Special Inclusions */
.inclusions-section {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.inclusions-title {
    font-size: 1rem;
    color: #592958;
    margin-bottom: 15px;
    font-weight: 600;
}

.inclusion-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.inclusion-tag {
    background: rgba(89, 41, 88, 0.08);
    color: #592958;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    animation: fadeInScale 0.5s ease-out;
    animation-fill-mode: both;
    transition: all 0.3s ease;
}

.inclusion-tag:hover {
    background: #592958;
    color: white;
    transform: scale(1.05);
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Important Notes Section */
.notes-section {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    animation: slideUp 1s ease-out 0.8s both;
}

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

.notes-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #592958, rgba(89, 41, 88, 0.7));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    animation: rotateIn 1s ease-out 1s both;
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-180deg) scale(0);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

.notes-header h2 {
    color: #333;
    font-size: 1.8rem;
}

.notes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.note-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 15px;
    background: rgba(89, 41, 88, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    animation: slideInLeft 0.6s ease-out;
    animation-fill-mode: both;
}

.note-item:nth-child(1) { animation-delay: 1.2s; }
.note-item:nth-child(2) { animation-delay: 1.3s; }
.note-item:nth-child(3) { animation-delay: 1.4s; }
.note-item:nth-child(4) { animation-delay: 1.5s; }
.note-item:nth-child(5) { animation-delay: 1.6s; }

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

.note-item:hover {
    background: rgba(89, 41, 88, 0.08);
    transform: translateX(5px);
}

.note-icon {
    width: 24px;
    height: 24px;
    background: #592958;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.note-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.5;
}

.note-text strong {
    color: #592958;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fee-container {
        padding: 30px 15px;
    }

    .fee-header h1 {
        font-size: 2rem;
    }

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

    .fee-card {
        padding: 25px 20px;
    }

    .fee-amount {
        font-size: 2rem;
    }

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #592958;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(89, 41, 88, 0.8);
}

/*  feeSection ends */



/*  navbar starts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');
        
/* Reset for navbar only */
.ksu-nav * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS Variables for easy customization */
:root {
    --ksu-primary: #592958;
    --ksu-primary-rgb: 89, 41, 88;
    --ksu-secondary: #f8f9fa;
    --ksu-accent: #ff6b6b;
    --ksu-text: #2d3436;
    --ksu-nav-height: 85px;
    --ksu-nav-height-scrolled: 70px;
}

/* Main Navigation Container */
.ksu-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
}

/* Multi-layer background for depth */
.ksu-nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 50%,
        rgba(248, 249, 250, 0.95) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 1px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(89, 41, 88, 0.1);
    pointer-events: none;
    z-index: 0;
}

.ksu-nav.scrolled .ksu-nav-bg {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.98) 0%, 
        rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 0 4px 30px rgba(89, 41, 88, 0.12);
}

/* Animated background pattern */
.ksu-nav-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(89, 41, 88, 0.5) 35px, rgba(89, 41, 88, 0.5) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(89, 41, 88, 0.5) 35px, rgba(89, 41, 88, 0.5) 70px);
    animation: ksu-pattern-move 30s linear infinite;
}

@keyframes ksu-pattern-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(70px, 0); }
}

/* Inner Container */
.ksu-nav-inner {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--ksu-nav-height);
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.ksu-nav.scrolled .ksu-nav-inner {
    height: var(--ksu-nav-height-scrolled);
}

/* Logo Section with Advanced Animation */
.ksu-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 18px;
    text-decoration: none;
    position: relative;
    z-index: 10;
    perspective: 1000px;
    animation: ksu-logo-entrance 1s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes ksu-logo-entrance {
    0% {
        opacity: 0;
        transform: translateX(-50px) rotateY(-90deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0);
    }
}

.ksu-logo-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(89, 41, 88, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.ksu-logo-wrapper:hover::before {
    opacity: 1;
}

.ksu-logo {
    height: 55px;
    width: auto;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.ksu-logo-wrapper:hover .ksu-logo {
    transform: rotateY(360deg) scale(1.05);
}

.ksu-logo-text {
    display: flex;
    flex-direction: column;
    transform: translateZ(20px);
    transition: transform 0.3s ease;
}

.ksu-logo-title {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--ksu-primary) 0%, rgba(var(--ksu-primary-rgb), 0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.ksu-logo-subtitle {
    font-size: 0.8rem;
    color: #666;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0;
    animation: ksu-fade-in-up 0.6s ease 0.3s forwards;
}

@keyframes ksu-fade-in-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }
    from {
        opacity: 0;
        transform: translateY(10px);
    }
}

/* Navigation Menu with Stagger Animation */
.ksu-nav-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    position: relative;
}

.ksu-nav-item {
    position: relative;
    opacity: 0;
    animation: ksu-menu-item-entrance 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes ksu-menu-item-entrance {
    0% {
        opacity: 0;
        transform: translateY(-20px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.ksu-nav-item:nth-child(1) { animation-delay: 0.1s; }
.ksu-nav-item:nth-child(2) { animation-delay: 0.15s; }
.ksu-nav-item:nth-child(3) { animation-delay: 0.2s; }
.ksu-nav-item:nth-child(4) { animation-delay: 0.25s; }
.ksu-nav-item:nth-child(5) { animation-delay: 0.3s; }
.ksu-nav-item:nth-child(6) { animation-delay: 0.35s; }

.ksu-nav-link {
    text-decoration: none;
    color: var(--ksu-text);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Advanced hover effect */
.ksu-nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(var(--ksu-primary-rgb), 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.ksu-nav-link:hover::before {
    width: 100px;
    height: 100px;
}

.ksu-nav-link:hover {
    color: var(--ksu-primary);
    transform: translateY(-2px);
}

/* Active state with animation */
.ksu-nav-link.active {
    background: linear-gradient(135deg, rgba(var(--ksu-primary-rgb), 0.15) 0%, rgba(var(--ksu-primary-rgb), 0.1) 100%);
    color: var(--ksu-primary);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(var(--ksu-primary-rgb), 0.2);
}

/* Dropdown indicator */
.ksu-nav-link.has-dropdown::after {
    content: '▾';
    font-size: 0.8rem;
    opacity: 0.5;
    transition: transform 0.3s ease;
}

.ksu-nav-link.has-dropdown:hover::after {
    transform: translateY(2px);
}

/* Apply Button with Glow Effect */
.ksu-nav-cta {
    display: flex;
    align-items: center;
    gap: 25px;
}

.ksu-apply-btn {
    background: linear-gradient(135deg, var(--ksu-primary) 0%, rgba(var(--ksu-primary-rgb), 0.85) 100%);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 1px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(var(--ksu-primary-rgb), 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: ksu-cta-entrance 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.5s both;
}

@keyframes ksu-cta-entrance {
    0% {
        opacity: 0;
        transform: translateX(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Animated gradient background */
.ksu-apply-btn::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;
}

.ksu-apply-btn:hover::before {
    left: 100%;
}

.ksu-apply-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 
        0 8px 25px rgba(var(--ksu-primary-rgb), 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Pulse animation for CTA */
.ksu-apply-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: inherit;
    transform: translate(-50%, -50%);
    z-index: -1;
    animation: ksu-pulse-ring 2s infinite;
}

@keyframes ksu-pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Mobile Menu Toggle with Custom Animation */
.ksu-mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    cursor: pointer;
    border: none;
    background: rgba(var(--ksu-primary-rgb), 0.08);
    border-radius: 50%;
    position: relative;
    z-index: 11001;
    transition: all 0.3s ease;
    /* Prevent transform effects that could move it off-screen */
    transform: none !important;
    will-change: auto;
    /* Ensure the button stays in its original position */
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}

.ksu-mobile-toggle.active {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    /* Ensure it stays in position when active */
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}

.ksu-mobile-toggle:hover {
    /* Prevent any transform effects on hover */
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}

.ksu-mobile-toggle:active {
    /* Prevent any transform effects on active state */
    transform: none !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
}

.ksu-burger-line {
    width: 22px;
    height: 2px;
    background: var(--ksu-primary);
    margin: 3px 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
    position: relative;
}

.ksu-mobile-toggle.active .ksu-burger-line:nth-child(1) {
    transform: rotate(45deg) translateY(8px);
}

.ksu-mobile-toggle.active .ksu-burger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.ksu-mobile-toggle.active .ksu-burger-line:nth-child(3) {
    transform: rotate(-45deg) translateY(-8px);
}

.ksu-mobile-toggle .ksu-cross-icon {
    display: none;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 28px;
    height: 28px;
    z-index: 11000;
}

.ksu-mobile-toggle.active .ksu-cross-icon {
    display: inline-flex !important;
}

.ksu-mobile-toggle.active .ksu-burger-line {
    display: none !important;
}

/* Mobile Navigation Panel */
@media (max-width: 1024px) {
    .ksu-nav-inner {
        padding: 0 25px;
    }

    .ksu-mobile-toggle {
        display: flex;
    }

    .ksu-nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 420px;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 40px 40px;
        gap: 15px;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15);
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        overflow-y: auto;
        z-index: 10001;
    }

    /* Mobile menu background pattern */
    .ksu-nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(135deg, var(--ksu-primary) 0%, rgba(var(--ksu-primary-rgb), 0.7) 100%);
        opacity: 0.05;
        z-index: -1;
    }

    .ksu-nav-menu.active {
        right: 0;
    }

    .ksu-nav-item {
        width: 100%;
        opacity: 0;
        transform: translateX(50px);
        animation: none;
    }

    .ksu-nav-menu.active .ksu-nav-item {
        animation: ksu-mobile-item-slide 0.4s forwards;
    }

    @keyframes ksu-mobile-item-slide {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .ksu-nav-menu.active .ksu-nav-item:nth-child(1) { animation-delay: 0.1s; }
    .ksu-nav-menu.active .ksu-nav-item:nth-child(2) { animation-delay: 0.15s; }
    .ksu-nav-menu.active .ksu-nav-item:nth-child(3) { animation-delay: 0.2s; }
    .ksu-nav-menu.active .ksu-nav-item:nth-child(4) { animation-delay: 0.25s; }
    .ksu-nav-menu.active .ksu-nav-item:nth-child(5) { animation-delay: 0.3s; }
    .ksu-nav-menu.active .ksu-nav-item:nth-child(6) { animation-delay: 0.35s; }
    .ksu-nav-menu.active .ksu-nav-item:nth-child(7) { animation-delay: 0.4s; }

    .ksu-nav-link {
        display: block;
        width: 100%;
        padding: 18px 25px;
        font-size: 1.1rem;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0);
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    .ksu-nav-link:hover {
        background: rgba(var(--ksu-primary-rgb), 0.08);
        border-color: rgba(var(--ksu-primary-rgb), 0.2);
        padding-left: 35px;
    }

    .ksu-nav-link.active {
        background: rgba(var(--ksu-primary-rgb), 0.12);
        border-color: var(--ksu-primary);
    }

    .ksu-nav-cta {
        width: 100%;
        margin-top: 30px;
        padding-top: 30px;
        border-top: 2px solid rgba(var(--ksu-primary-rgb), 0.1);
    }

    .ksu-apply-btn {
        width: 100%;
        text-align: center;
        padding: 18px;
        font-size: 1.05rem;
    }

    /* Mobile Overlay */
    .ksu-mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3); /* Remove gradient and blur */
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s ease;
        z-index: 9998;
        pointer-events: none;
    }

    .ksu-mobile-overlay.active {
        opacity: 1;
        /* visibility: visible; */
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    .ksu-nav-inner {
        height: 70px;
        padding: 0 20px;
    }

    .ksu-nav.scrolled .ksu-nav-inner {
        height: 65px;
    }

    .ksu-logo {
        height: 45px;
    }

    .ksu-logo-title {
        font-size: 1.1rem;
    }

    .ksu-logo-subtitle {
        font-size: 0.7rem;
    }

    .ksu-nav-menu {
        padding: 80px 30px 30px;
    }
}

/* Language Switcher */
.ksu-lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(var(--ksu-primary-rgb), 0.08);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    color: var(--ksu-primary);
    font-weight: 500;
}

.ksu-lang-switcher:hover {
    background: rgba(var(--ksu-primary-rgb), 0.15);
    transform: translateY(-2px);
}

/* Scroll Progress Bar */
.ksu-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ksu-primary), var(--ksu-accent));
    width: 0%;
    transition: width 0.1s linear;
    z-index: 10;
    box-shadow: 0 0 10px rgba(var(--ksu-primary-rgb), 0.5);
}

/* Mini Contact Info */
.ksu-mini-contact {
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    height: 30px;
    background: var(--ksu-primary);
    color: white;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    animation: ksu-top-bar-slide 0.6s ease 0.8s forwards;
}

@keyframes ksu-top-bar-slide {
    to {
        opacity: 1;
        top: 0;
    }
}

.ksu-mini-contact span {
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Hide desktop-only elements on mobile */
@media (max-width: 1024px) {
    .ksu-desktop-cta,
    .ksu-lang-switcher,
    .ksu-mini-contact {
        display: none;
    }
}

/* Show mobile menu CTA only on mobile */
@media (min-width: 1025px) {
    .ksu-nav-menu .ksu-nav-cta {
        display: none;
    }
}

/* Notification Badge */
.ksu-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 12px;
    height: 12px;
    background: var(--ksu-accent);
    border-radius: 50%;
    border: 2px solid white;
    animation: ksu-blink 2s infinite;
}

@keyframes ksu-blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.3; }
}

/* Accessibility */
.ksu-nav-link:focus,
.ksu-apply-btn:focus,
.ksu-mobile-toggle:focus {
    outline: 3px solid var(--ksu-primary);
    outline-offset: 3px;
}

/* Loading state */
.ksu-nav.loading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ksu-primary), transparent);
    animation: ksu-loading 1.5s linear infinite;
}

@keyframes ksu-loading {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Page transition effect */
.ksu-page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--ksu-primary);
    z-index: 10000;
    transform: translateY(-100%);
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.ksu-page-transition.active {
    transform: translateY(0);
}

/* Performance optimization */
.ksu-nav * {
    will-change: auto;
}

.ksu-nav-link,
.ksu-apply-btn,
.ksu-mobile-toggle {
    -webkit-tap-highlight-color: transparent;
}

/* Print styles */
@media print {
    .ksu-nav,
    .ksu-mobile-overlay {
        display: none !important;
    }
}

/*  navbar ends */

.navbar-spacer {
    height: 85px;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1024px) {
    .navbar-spacer {
        height: 70px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    /* ...existing code... */
}
@media (max-width: 1024px) {
    .ksu-nav-menu {
        pointer-events: auto;
        z-index: 10002;
    }
    .ksu-mobile-overlay {
        z-index: 9998;
    }
}

.flow-step.left.final {
    /* Remove special padding overrides so it matches other left steps */
    /* padding-right: 50% !important; */
    /* padding-left: 0 !important; */
}

.step-icon, .step-info {
  min-width: 0;
  max-width: none;
  flex-shrink: 0;
}
.step-info {
  flex-shrink: 1;
  flex-grow: 1;
  min-width: 0;
}

/* --- Responsive Admission Process Improvements --- */

@media (max-width: 1024px) {
  .admission-container {
    padding: 0 8px;
  }
  .flow-timeline {
    padding: 24px 0;
  }
}

@media (max-width: 768px) {
  .admission-container {
    padding: 0 20px;
    margin: 0 auto;
    max-width: 100%;
  }
  .process-header {
    padding: 40px 0 30px 0;
    text-align: center;
  }
  .process-title {
    font-size: 2.5rem !important;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  .process-subtitle {
    font-size: 1.3rem !important;
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .header-badge {
    font-size: 1rem;
    padding: 12px 24px;
    margin-bottom: 25px;
    border-radius: 25px;
  }
  .flow-timeline {
    padding: 30px 0;
    margin: 0 auto;
  }
  .flow-step.left, .flow-step.right {
    padding: 0 10px;
    margin-bottom: 35px;
  }
  .step-card, .step-card.highlight {
    padding: 25px 20px;
    font-size: 1.1rem;
    border-radius: 18px;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin: 0 auto;
    max-width: 100%;
  }
  .step-card.highlight {
    padding: 25px 20px;
    box-shadow: 0 6px 25px rgba(93, 45, 91, 0.15);
  }
  .step-num {
    width: 50px;
    height: 50px;
    font-size: 1.4rem;
    font-weight: 700;
    border-radius: 50%;
  }
  .step-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .step-info p {
    font-size: 1.1rem;
    line-height: 1.5;
    margin: 0;
  }
  .documents-container {
    margin-top: 70px;
    padding: 30px 25px;
    max-width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  .doc-header {
    margin-bottom: 25px;
    text-align: center;
  }
  .doc-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .doc-grid {
    gap: 15px;
    justify-content: center;
  }
  .doc-item {
    padding: 18px 15px;
    border-radius: 12px;
    min-width: 120px;
    text-align: center;
  }
  .doc-marker {
    width: 16px;
    height: 16px;
    margin-bottom: 8px;
  }
  .doc-item span {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .admission-container {
    padding: 0 15px;
    margin-bottom: -40px;
  }
  .process-header {
    padding: 30px 0 20px 0;
  }
  .process-title {
    font-size: 2rem !important;
    margin-bottom: 12px;
  }
  .process-subtitle {
    font-size: 1.1rem !important;
    line-height: 1.4;
  }
  .header-badge {
    font-size: 0.9rem;
    padding: 8px 16px;
    margin-bottom: 20px;
  }
  .flow-timeline {
    padding: 20px 0;
  }
  .flow-step.left, .flow-step.right {
    padding: 0 5px;
    margin-bottom: 25px;
  }
  .step-card, .step-card.highlight {
    flex-direction: row;
    align-items: center;
    gap: 15px;
    padding: 20px 16px;
    font-size: 1rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }
  .step-icon {
    min-width: 0;
    max-width: none;
    flex-shrink: 0;
  }
  .step-num {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    font-weight: 700;
  }
  .step-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .step-info p {
    font-size: 1rem;
    line-height: 1.4;
  }
  .documents-container {
    margin-top: 60px;
    padding: 25px 20px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }
  .doc-header {
    margin-bottom: 20px;
  }
  .doc-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
  }
  .doc-grid {
    gap: 12px;
  }
  .doc-item {
    min-width: 100px;
    max-width: 140px;
    padding: 15px 12px;
    border-radius: 10px;
  }
  .doc-marker {
    width: 14px;
    height: 14px;
    margin-bottom: 6px;
  }
  .doc-item span {
    font-size: 0.9rem;
    font-weight: 500;
  }
}

@media (max-width: 375px) {
  .admission-container {
    padding: 0 12px;
  }
  .process-header {
    padding: 25px 0 20px 0;
  }
  .process-title {
    font-size: 1.8rem !important;
    line-height: 1.2;
  }
  .process-subtitle {
    font-size: 1rem !important;
    line-height: 1.4;
  }
  .header-badge {
    font-size: 0.85rem;
    padding: 6px 14px;
    margin-bottom: 18px;
  }
  .flow-timeline {
    padding: 15px 0;
  }
  .flow-step.left, .flow-step.right {
    padding: 0 3px;
    margin-bottom: 20px;
  }
  .step-card, .step-card.highlight {
    gap: 12px;
    padding: 18px 14px;
    font-size: 0.95rem;
    border-radius: 14px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .step-num {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }
  .step-info h3 {
    font-size: 1.2rem;
    margin-bottom: 6px;
  }
  .step-info p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .documents-container {
    margin-top: 50px;
    padding: 22px 16px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .doc-header {
    margin-bottom: 18px;
  }
  .doc-header h2 {
    font-size: 1.4rem;
  }
  .doc-grid {
    gap: 10px;
  }
  .doc-item {
    padding: 12px 10px;
    min-width: 90px;
    max-width: 120px;
    border-radius: 8px;
  }
  .doc-marker {
    width: 12px;
    height: 12px;
    margin-bottom: 5px;
  }
  .doc-item span {
    font-size: 0.85rem;
    line-height: 1.3;
  }
}

/* Ensure .documents-container never overlaps timeline */
.documents-container {
  clear: both;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/* Fix for .flow-step.left.final and .step-card.highlight to always match other steps */
.flow-step.left.final .step-card,
.flow-step.left .step-card.highlight {
  flex-direction: row;
  align-items: center;
  gap: 25px;
  padding: 30px;
  font-size: 1rem;
}

/* Remove !important from previous overrides for .step-card */
.step-card, .step-card.highlight {
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  min-width: 0;
  max-width: 100%;
  width: 100%;
}

/* Ensure .step-icon and .step-info never force wrapping */
.step-icon, .step-info {
  min-width: 0;
  max-width: none;
  flex-shrink: 0;
}
.step-info {
  flex-shrink: 1;
  flex-grow: 1;
  min-width: 0;
}

@media (max-width: 480px) {
  .flow-timeline {
    padding-bottom: 40px !important;
  }
  .documents-container {
    margin-top: 280px !important;
    clear: both !important;
    display: block !important;
    margin-bottom: -40px;
    /* padding-bottom: 0px; */
  }
}

.admission-connector-line {
  width: 4px;
  height: 0px;
  background: #582959;
  margin: 0 auto 0 auto;
  border-radius: 2px;
  opacity: 0.25;
  position: relative;
  z-index: 1000;
}
@media (max-width: 480px) {
  .admission-connector-line {
    height: 40px;
  }
}

.ksu-cross-icon {
    display: none;
    z-index: 11000 !important;
}
.ksu-mobile-toggle.active .ksu-cross-icon {
    display: inline-flex !important;
    z-index:10000;
}





:root {
    --primary-purple: #5D2D5B;
    --dark-purple: #3D1D3B;
    --light-purple: #7D4D7B;
    --black: #000000;
    --dark-gray: #1a1a1a;
    --gray: #666666;
    --light-gray: #999999;
    --white: #ffffff;
}

#footer-container {
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Main content placeholder */
main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

/* MEGA FOOTER STARTS HERE */
.mega-footer {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

/* Animated Background Pattern */
.footer-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(93, 45, 91, 0.5) 35px, rgba(93, 45, 91, 0.5) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(93, 45, 91, 0.3) 35px, rgba(93, 45, 91, 0.3) 70px);
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(70px, 70px); }
}

/* Floating Orbs */
.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: float 15s ease-in-out infinite;
}

.orb1 {
    width: 300px;
    height: 300px;
    background: var(--primary-purple);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.orb2 {
    width: 200px;
    height: 200px;
    background: var(--light-purple);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.orb3 {
    width: 250px;
    height: 250px;
    background: var(--dark-purple);
    top: 50%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

/* Main Footer Content */
.footer-content {
    position: relative;
    z-index: 10;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Brand Section */
.footer-brand {
    position: relative;
}

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

/* Remove .logo-icon and .footer-logo i animation for the footer logo */
.logo-icon {
    display: none;
}
.footer-logo img {
    height: 40px;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
}

.logo-text {
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -1px;
}

.footer-description {
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 350px;
}

/* Social Media Section */
.social-section {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    border: 2px solid var(--dark-gray);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light-gray);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary-purple);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s ease;
}

.social-link:hover {
    color: var(--white);
    border-color: var(--primary-purple);
    transform: translateY(-5px) scale(1.1);
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.social-link i {
    font-size: 18px;
    z-index: 1;
    position: relative;
}

/* Footer Links Sections */
.footer-section h4 {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-left: 20px;
}

.footer-section h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(to bottom, var(--primary-purple), var(--light-purple));
    border-radius: 2px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--light-gray);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, rgba(93, 45, 91, 0.1) 0%, rgba(93, 45, 91, 0.05) 100%);
    border: 1px solid rgba(93, 45, 91, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
}

.newsletter-form {
    position: relative;
    margin-top: 20px;
}

.newsletter-input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--white);
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--primary-purple);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-input::placeholder {
    color: var(--gray);
}

.newsletter-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--light-purple) 100%);
    color: var(--white);
    border: none;
    padding: 10px 25px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.newsletter-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 10px 20px rgba(93, 45, 91, 0.3);
}

/* Stats Section */
.footer-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(93, 45, 91, 0.1) 0%, transparent 100%);
    border-radius: 20px;
    margin-bottom: 50px;
    border: 1px solid rgba(93, 45, 91, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: var(--gray);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Remove heartbeat animation if not used elsewhere */
/* .copyright i {
    animation: none;
} */
@keyframes heartbeat {
    /* (removed) */
}

.copyright i {
    color: var(--primary-purple);
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--gray);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-purple);
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--white);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }
    
    .footer-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Glow Line */
.glow-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-purple), var(--light-purple), var(--primary-purple), transparent);
    background-size: 200% 100%;
    animation: glowMove 3s linear infinite;
    margin-bottom: -2px;
    position: relative;
    z-index: 100;
}

@keyframes glowMove {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}


#zorixlab{
    list-style: none;
    color: #3D1D3B;
}



#zorixlab {
    font-weight: 700;
    background: linear-gradient(90deg, #5D2D5B 60%, #8B4A87 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-decoration: none;
    transition: text-decoration 0.2s, color 0.2s;
    position: relative;
  }
  #zorixlab:hover {
    text-decoration: underline  #8B4A87 2px;
    filter: brightness(1.2);
  }

/* Desktop: Use gradient text for .ksu-flow-title */
/* Mobile overrides are handled in media queries below */

.ksu-accent {
    color: #FFA500 !important;
    font-weight: 900;
}

@media (max-width: 375px) {
    .ksu-flow-title {
        font-size: 2.4rem !important;
        color: #592958 !important;
        background: none !important;
        -webkit-background-clip: initial !important;
        -webkit-text-fill-color: initial !important;
    }
    .ksu-accent {
        color: #FFA500 !important;
    }
}


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
  
  /* Reset and Base */
  #ksu-why-choose * {
    box-sizing: border-box;
  }
  
  /* Main Section */
  #ksu-why-choose {
    position: relative;
    background: linear-gradient(to bottom, #fafafa 0%, #f5f5f5 100%);
    padding: 80px 0;
    overflow: hidden;
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
  }
  
  /* Animated Background */
  .ksu-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
  }
  
  .ksu-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(88, 41, 89, 0.03);
    animation: ksu-float 20s infinite ease-in-out;
  }
  
  .ksu-circle-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
  }
  
  .ksu-circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
  }
  
  .ksu-circle-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 50%;
    animation-delay: 14s;
  }
  
  @keyframes ksu-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
  }
  
  /* Container */
  .ksu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
  }
  
  /* Header */
  .ksu-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .ksu-header-badge {
    display: inline-block;
    background: rgba(88, 41, 89, 0.1);
    color: #582959;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
  }
  
  .ksu-title {
    margin: 0;
    line-height: 1.2;
  }
  
  .ksu-title-main {
    display: block;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    color: #666;
    margin-bottom: 5px;
  }
  
  .ksu-title-accent {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #582959;
    letter-spacing: -0.5px;
  }
  
  .ksu-title-decoration {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
  }
  
  .ksu-title-decoration span {
    display: block;
    width: 8px;
    height: 8px;
    background: #582959;
    border-radius: 50%;
    opacity: 0.3;
  }
  
  .ksu-title-decoration span:nth-child(2) {
    opacity: 0.6;
  }
  
  .ksu-title-decoration span:nth-child(3) {
    opacity: 1;
  }
  
  /* Reasons Grid */
  .ksu-reasons-grid {
    margin-bottom: 80px;
  }
  
  .ksu-reason-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
  }
  
  .ksu-row-reverse {
    flex-direction: row-reverse;
  }
  
  /* Individual Reason Card */
  .ksu-reason {
    flex: 1;
    min-width: 0;
  }
  
  .ksu-reason-featured {
    flex: 1.2;
  }
  
  .ksu-reason-inner {
    position: relative;
    background: white;
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
  }
  
  .ksu-reason-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(88, 41, 89, 0.12);
  }
  
  /* Reason Number */
  .ksu-reason-number {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(88, 41, 89, 0.08);
    line-height: 1;
  }
  
  /* Reason Content */
  .ksu-reason-content {
    position: relative;
    z-index: 1;
  }
  
  .ksu-reason-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    padding-right: 50px;
  }
  
  .ksu-reason-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: #666;
    margin: 0;
    line-height: 1.5;
  }
  
  /* Hover Reveal Effect */
  .ksu-hover-reveal {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(88, 41, 89, 0.1);
    overflow: hidden;
  }
  
  .ksu-reveal-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #582959;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  .ksu-reason-inner:hover .ksu-reveal-line {
    transform: translateX(0);
  }
  
  /* Stats Section */
  .ksu-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.05);
  }
  
  .ksu-stat {
    text-align: center;
  }
  
  .ksu-stat-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #582959;
    margin-bottom: 5px;
  }
  
  .ksu-stat-suffix {
    font-size: 1.5rem;
    font-weight: 600;
    color: #582959;
  }
  
  .ksu-stat-label {
  display: block;
  font-size: 0.9rem;
  color: #666;
  font-weight: 400;
}

/* Closing CTA */
.ksu-closing {
  text-align: center;
  padding: 40px 0 20px 0;
}

.ksu-closing-text {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 300;
  color: #333;
  margin: 0 0 30px 0;
  letter-spacing: 0.5px;
}

.ksu-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #582959;
  color: white;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ksu-cta-button:hover {
  background: #6b2f6b;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(88, 41, 89, 0.2);
}

.ksu-cta-button svg {
  transition: transform 0.3s ease;
}

.ksu-cta-button:hover svg {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  #ksu-why-choose {
    padding: 60px 0;
  }

  .ksu-reason-row {
    gap: 15px;
  }

  .ksu-reason-inner {
    padding: 20px 25px;
  }

  .ksu-reason-title {
    font-size: 1rem;
  }

  .ksu-reason-number {
    font-size: 2rem;
  }

  .ksu-stats {
    gap: 40px;
    padding: 30px;
  }

  .ksu-stat-number {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .ksu-header {
    margin-bottom: 40px;
  }

  .ksu-title-main {
    font-size: 1.3rem;
  }

  .ksu-title-accent {
    font-size: 1.8rem;
  }

  .ksu-reason-row,
  .ksu-row-reverse {
    flex-direction: column;
    gap: 15px;
  }

  .ksu-reason,
  .ksu-reason-featured {
    flex: 1;
    width: 100%;
  }

  .ksu-reason-inner {
    padding: 20px;
  }

  .ksu-reason-number {
    font-size: 1.8rem;
    right: 15px;
    top: 15px;
  }

  .ksu-reason-title {
    font-size: 0.95rem;
    padding-right: 40px;
  }

  .ksu-reason-text {
    font-size: 0.85rem;
  }

  .ksu-stats {
    flex-direction: column;
    gap: 30px;
    padding: 30px 20px;
  }

  .ksu-stat-number {
    font-size: 2.2rem;
  }

  .ksu-closing-text {
    font-size: 1.5rem;
  }

  .ksu-cta-button {
    padding: 12px 28px;
    font-size: 0.9rem;
  }

  .ksu-circle-1,
  .ksu-circle-2,
  .ksu-circle-3 {
    opacity: 0.5;
  }
}

@media (max-width: 480px) {
  #ksu-why-choose {
    padding: 40px 0;
  }

  .ksu-container {
    padding: 0 15px;
  }

  .ksu-header-badge {
    font-size: 0.8rem;
    padding: 5px 15px;
  }

  .ksu-title-main {
    font-size: 1.1rem;
  }

  .ksu-title-accent {
    font-size: 1.5rem;
  }

  .ksu-reason-inner {
    padding: 18px;
    border-radius: 12px;
  }

  .ksu-reason-number {
    position: static;
    margin-bottom: 8px;
    font-size: 1.5rem;
    text-align: left;
  }

  .ksu-reason-title {
    font-size: 0.9rem;
    padding-right: 0;
    margin-bottom: 6px;
  }

  .ksu-reason-text {
    font-size: 0.8rem;
    line-height: 1.4;
  }

  .ksu-stats {
    border-radius: 15px;
  }

  .ksu-closing-text {
    font-size: 1.2rem;
  }

  .ksu-cta-button {
    padding: 10px 25px;
    font-size: 0.85rem;
  }
}

/* High Resolution */
@media (min-width: 1400px) {
  .ksu-container {
    max-width: 1300px;
  }

  .ksu-reason-row {
    gap: 30px;
  }

  .ksu-reason-inner {
    padding: 30px 35px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Print Styles */
@media print {
  .ksu-bg-elements,
  .ksu-cta-button {
    display: none;
  }

  .ksu-reason-inner {
    box-shadow: none;
    border: 1px solid #ddd;
  }
}


.resize-animation-stopper * {
    animation: none !important;
    transition: none !important;
  }




 
/* form section starts */



:root {
    --primary: #653865;
    --primary-light: #8b5a8c;
    --primary-dark: #4a2849;
    --accent: #ff6b6b;
    --dark: #0a0a0a;
    --grey-900: #111111;
    --grey-800: #1a1a1a;
    --grey-700: #2a2a2a;
    --grey-600: #404040;
    --grey-500: #666666;
    --grey-400: #999999;
    --grey-300: #cccccc;
    --grey-200: #e6e6e6;
    --grey-100: #f5f5f5;
    --white: #ffffff;
    --error: #ff3333;
    --success: #00d4aa;
}

#formsection {
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    background: var(--dark);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle at 20% 50%, var(--primary) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, var(--primary-dark) 0%, transparent 50%),
                radial-gradient(circle at 40% 20%, var(--primary-light) 0%, transparent 50%);
    opacity: 0.1;
    animation: floatAnimation 20s ease-in-out infinite;
}

@keyframes floatAnimation {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-30px, -30px) rotate(120deg); }
    66% { transform: translate(30px, -30px) rotate(240deg); }
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border: 2px solid var(--primary);
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
}

.shape:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.shape:nth-child(2) {
    width: 120px;
    height: 120px;
    right: 10%;
    top: 60%;
    animation-delay: 2s;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}

.shape:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 50%;
    bottom: 20%;
    animation-delay: 4s;
    border-radius: 41% 59% 41% 59% / 41% 59% 41% 59%;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

/* Main Container */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
    min-height: 100vh;
}

/* Form Section */
.form-wrapper {
    background: linear-gradient(135deg, var(--grey-900) 0%, var(--grey-800) 100%);
    border-radius: 24px;
    padding: 3px;
    position: relative;
    overflow: hidden;
    animation: slideInLeft 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.form-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, var(--primary), transparent);
    animation: borderRotate 6s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.form-content {
    background: var(--grey-900);
    border-radius: 22px;
    padding: 48px;
    position: relative;
    z-index: 1;
}

/* Tab System */
.tab-system {
    display: flex;
    gap: 8px;
    padding: 6px;
    background: var(--dark);
    border-radius: 16px;
    margin-bottom: 40px;
    position: relative;
}

.tab-button {
    flex: 1;
    padding: 16px 24px;
    border: none;
    background: transparent;
    color: var(--grey-400);
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: var(--primary);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
}

.tab-button:hover::before {
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.tab-button:hover {
    color: var(--white);
}

.tab-button.active {
    color: var(--white);
}

.tab-slider {
    position: absolute;
    height: calc(100% - 12px);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    top: 6px;
    left: 6px;
    width: calc(50% - 10px);
    box-shadow: 0 4px 20px rgba(101, 56, 101, 0.3);
}

.tab-slider.agent {
    left: calc(50% + 2px);
}

/* Form Styles */
.form-container {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.form {
    position: absolute;
    width: 100%;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.form.active {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}

.form-title {
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.form-subtitle {
    color: var(--grey-400);
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Input Groups */
.input-group {
    margin-bottom: 28px;
    position: relative;
}

.input-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #1a1a1a;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.input-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(101, 56, 101, 0.2), transparent);
    transition: left 0.5s ease;
}

.input-wrapper:focus-within::before {
    left: 100%;
}

.input-wrapper:focus-within {
    border-color: #5A2D5B;
    box-shadow: 0 0 0 4px rgba(90, 45, 91, 0.1);
}

.form-input {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    font-size: 16px;
    color: #ffffff;
    outline: none;
    position: relative;
    z-index: 1;
}

.form-input::placeholder {
    color: transparent;
}

.form-label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -18px;
    left: 16px;
    transform: none;
    font-size: 13px;
    background: #1a1a1a;
    color: #5A2D5B;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(90,45,91,0.04);
    padding: 0 8px;
    z-index: 200;
    border: 1.5px solid #5A2D5B;
    line-height: 1;
}

/* Select Dropdown */
.select-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #1a1a1a;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.select-wrapper:focus-within {
    border-color: #5A2D5B;
    box-shadow: 0 0 0 4px rgba(90, 45, 91, 0.1);
}

.form-select {
    width: 100%;
    padding: 20px 24px;
    background: transparent;
    border: none;
    font-size: 16px;
    color: #ffffff;
    outline: none;
    cursor: pointer;
    appearance: none;
    position: relative;
    z-index: 1;
}

.select-wrapper::after {
    content: '▼';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #5A2D5B;
    pointer-events: none;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.select-wrapper:focus-within::after {
    transform: translateY(-50%) rotate(180deg);
}

.form-select option {
    background: #1a1a1a;
    color: #ffffff;
    padding: 12px;
}

/* Validation */
.validation-feedback {
    position: relative;
    bottom: auto;
    left: 0;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    margin-top: 4px;
    transform: none;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.validation-feedback.show,
.input-group.success .validation-feedback,
.input-group.error .validation-feedback {
    opacity: 1;
    pointer-events: auto;
}

.validation-feedback .validation-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 15px;
    font-weight: bold;
    background: none;
    color: inherit;
    margin-right: 4px;
    transition: all 0.3s ease;
    opacity: 0;
}

.validation-feedback .validation-icon.success {
    color: #00d4aa;
}

.validation-feedback .validation-icon.error {
    color: #ff4757;
}

.input-group.success .validation-feedback .validation-icon.success {
    opacity: 1;
}

.input-group.error .validation-feedback .validation-icon.error {
    opacity: 1;
}

.input-group.error .validation-feedback .validation-text {
    color: #ff4757;
}

.input-group.success .validation-feedback .validation-text {
    color: #00d4aa;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Floating label fix: always above border */
.form-label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 2;
    background: #1a1a1a;
    padding: 0 4px;
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -12px;
    left: 16px;
    transform: none;
    font-size: 13px;
    background: #1a1a1a;
    color: #5A2D5B;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(90,45,91,0.04);
    padding: 0 8px;
    z-index: 100;
    border: 1.5px solid #5A2D5B;
}

/* Submit Button */
.submit-button {
    width: 100%;
    padding: 20px;
    margin-top: 40px;
    background: linear-gradient(135deg, #5A2D5B 0%, #8B5A8B 100%);
    border: none;
    border-radius: 16px;
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(90, 45, 91, 0.3);
}

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

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(101, 56, 101, 0.4);
}

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

.submit-button:active::before {
    width: 300px;
    height: 300px;
}

.button-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* News Section */
.news-wrapper {
    animation: slideInRight 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.news-header {
    margin-bottom: 32px;
}

.news-title {
    font-family: 'TikTok Sans', 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -1px;
}

.news-subtitle {
    color: var(--grey-400);
    font-size: 16px;
}

.news-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 8px;
}

.news-container::-webkit-scrollbar {
    width: 4px;
}

.news-container::-webkit-scrollbar-track {
    background: var(--grey-800);
    border-radius: 2px;
}

.news-container::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 2px;
}

.news-item {
    background: var(--grey-900);
    border: 1px solid var(--grey-800);
    border-radius: 20px;
    padding: 24px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    animation: newsItemFade 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

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

.news-item:nth-child(1) { animation-delay: 0.1s; }
.news-item:nth-child(2) { animation-delay: 0.2s; }
.news-item:nth-child(3) { animation-delay: 0.3s; }
.news-item:nth-child(4) { animation-delay: 0.4s; }
.news-item:nth-child(5) { animation-delay: 0.5s; }

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(101, 56, 101, 0.1), transparent);
    transition: left 0.5s ease;
}

.news-item:hover::before {
    left: 100%;
}

.news-item:hover {
    transform: translateX(-8px);
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(101, 56, 101, 0.2);
}

.news-content {
    display: flex;
    align-items: start;
    gap: 16px;
}

.news-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--white);
    transition: transform 0.3s ease;
}

.news-item:hover .news-icon {
    transform: rotate(10deg) scale(1.1);
}

.news-details {
    flex: 1;
}

.news-headline {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.news-item:hover .news-headline {
    color: var(--primary);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--grey-500);
    font-size: 14px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-tag {
    padding: 4px 12px;
    background: rgba(101, 56, 101, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: var(--primary);
}

/* Loading State */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

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

/* Success Animation */
.success-animation {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    pointer-events: none;
}

.success-circle {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: successPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .news-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .main-container {
        padding: 20px 16px;
    }

    .form-content {
        padding: 32px 24px;
    }

    .form-title {
        font-size: 28px;
    }

    .tab-button {
        font-size: 14px;
        padding: 14px 20px;
    }

    .form-input, .form-select {
        padding: 18px 20px;
        font-size: 15px;
    }

    .submit-button {
        padding: 18px;
        font-size: 16px;
    }

    .news-title {
        font-size: 28px;
    }

    .news-item {
        padding: 20px;
    }

    .news-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }
}

/* Glow Effects */
.glow-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.3s ease;
}

/* Success Overlay Styles */
.success-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.success-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, #5A2D5B, #FFA500);
    border-radius: 50%;
    animation: particleFloat 6s infinite linear;
}

.particle-1 { top: 10%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 20%; left: 80%; animation-delay: 1s; }
.particle-3 { top: 60%; left: 20%; animation-delay: 2s; }
.particle-4 { top: 80%; left: 70%; animation-delay: 3s; }
.particle-5 { top: 30%; left: 50%; animation-delay: 4s; }
.particle-6 { top: 70%; left: 90%; animation-delay: 5s; }
.particle-7 { top: 40%; left: 30%; animation-delay: 0.5s; }
.particle-8 { top: 90%; left: 40%; animation-delay: 1.5s; }
.particle-9 { top: 15%; left: 60%; animation-delay: 2.5s; }
.particle-10 { top: 85%; left: 15%; animation-delay: 3.5s; }

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

.success-rings {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.ring {
    position: absolute;
    border: 2px solid rgba(90, 45, 91, 0.3);
    border-radius: 50%;
    animation: ringPulse 3s infinite ease-out;
}

.ring-1 {
    width: 200px;
    height: 200px;
    animation-delay: 0s;
}

.ring-2 {
    width: 300px;
    height: 300px;
    animation-delay: 1s;
}

.ring-3 {
    width: 400px;
    height: 400px;
    animation-delay: 2s;
}

@keyframes ringPulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

.success-content {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    z-index: 10;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(90, 45, 91, 0.2);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.success-overlay.active .success-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.success-icon-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #5A2D5B, #8B5A8B);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: checkmarkBounce 0.8s ease-out 0.3s both;
}

@keyframes checkmarkBounce {
    0% {
        transform: scale(0) rotate(-180deg);
    }
    50% {
        transform: scale(1.2) rotate(0deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

.checkmark-svg {
    width: 40px;
    height: 40px;
}

.checkmark-circle {
    stroke: #fff;
    stroke-width: 3;
    fill: none;
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: circleDraw 1s ease-out 0.8s forwards;
}

.checkmark-check {
    stroke: #fff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 50;
    stroke-dashoffset: 50;
    animation: checkDraw 0.8s ease-out 1.2s forwards;
}

@keyframes circleDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes checkDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.success-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    font-size: 20px;
    animation: sparkleFloat 2s infinite ease-in-out;
}

.sparkle-1 { top: 10%; left: 20%; animation-delay: 0s; }
.sparkle-2 { top: 20%; right: 30%; animation-delay: 0.5s; }
.sparkle-3 { bottom: 30%; left: 10%; animation-delay: 1s; }
.sparkle-4 { bottom: 20%; right: 20%; animation-delay: 1.5s; }

@keyframes sparkleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-10px) scale(1.2);
        opacity: 1;
    }
}

.success-text {
    margin-bottom: 30px;
}

.success-title {
    font-size: 28px;
    font-weight: 700;
    color: #5A2D5B;
    margin-bottom: 15px;
    animation: titleSlideIn 0.8s ease-out 0.5s both;
}

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

.success-message {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    animation: messageSlideIn 0.8s ease-out 0.7s both;
}

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

.success-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(90, 45, 91, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(90, 45, 91, 0.1);
    animation: detailSlideIn 0.8s ease-out 0.9s both;
}

.detail-item:nth-child(2) {
    animation-delay: 1.1s;
}

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

.detail-icon {
    font-size: 24px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #5A2D5B, #FFA500);
    border-radius: 50%;
    color: white;
}

.detail-text h3 {
    font-size: 14px;
    font-weight: 600;
    color: #5A2D5B;
    margin-bottom: 4px;
}

.detail-text p {
    font-size: 12px;
    color: #666;
    margin: 0;
}

.success-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.success-btn {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.success-btn.primary {
    background: linear-gradient(135deg, #5A2D5B, #8B5A8B);
    color: white;
}

.success-btn.secondary {
    background: rgba(90, 45, 91, 0.1);
    color: #5A2D5B;
    border: 1px solid rgba(90, 45, 91, 0.2);
}

.success-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(90, 45, 91, 0.2);
}

.success-btn.primary:hover {
    background: linear-gradient(135deg, #4A1D4B, #7A4A7A);
}

.success-btn.secondary:hover {
    background: rgba(90, 45, 91, 0.15);
}

.success-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.success-btn:hover::before {
    left: 100%;
}

.success-footer {
    padding-top: 20px;
    border-top: 1px solid rgba(90, 45, 91, 0.1);
    font-size: 12px;
    color: #666;
}

.application-id {
    color: #5A2D5B;
    font-weight: 600;
}

.timestamp {
    margin-top: 5px;
    opacity: 0.8;
}

.success-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #5A2D5B;
    transition: all 0.3s ease;
    z-index: 20;
}

.success-close:hover {
    background: #5A2D5B;
    color: white;
    transform: rotate(90deg);
}

/* Loading Spinner */
.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

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

/* Form Validation States */
.input-group.success .input-wrapper::before {
    border-color: #00d4aa;
}

.input-group.error .input-wrapper::before {
    border-color: #ff4757;
}

.input-group.success .validation-feedback {
    color: #00d4aa;
}

.input-group.error .validation-feedback {
    color: #ff4757;
}

/* Responsive Design */
@media (max-width: 768px) {
    .success-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .success-title {
        font-size: 24px;
    }
    
    .success-details {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-btn {
        padding: 15px 20px;
    }
    
    .success-checkmark {
        width: 60px;
        height: 60px;
    }
    
    .checkmark-svg {
        width: 30px;
        height: 30px;
    }
}

@media (max-width: 480px) {
    .success-content {
        padding: 25px 15px;
    }
    
    .success-title {
        font-size: 20px;
    }
    
    .success-message {
        font-size: 14px;
    }
    
    .detail-item {
        padding: 12px;
    }
    
    .detail-icon {
        width: 35px;
        height: 35px;
        font-size: 20px;
    }
}

/* Ripple Effect */
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* --- Validation Feedback Improvements --- */
.validation-feedback {
    min-height: 22px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    opacity: 0;
    height: 0;
    transition: opacity 0.3s, height 0.3s;
    margin-top: 12px;
    pointer-events: none;
    position: relative;
    z-index: 10;
    padding-bottom: 8px;
}
.input-group.success .validation-feedback,
.input-group.error .validation-feedback {
    opacity: 1;
    height: 22px;
    pointer-events: auto;
}
.validation-feedback .validation-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    margin-right: 4px;
    background: #eee;
    color: #888;
    transition: background 0.3s, color 0.3s;
    flex-shrink: 0;
}
.input-group.error .validation-feedback .validation-icon {
    background: #ff4757;
    color: #fff;
    animation: shake 0.3s;
}

.input-group.error .validation-feedback .validation-icon::before {
    content: "✕";
    font-size: 14px;
    font-weight: bold;
}

.input-group.success .validation-feedback .validation-icon {
    background: #00d4aa;
    color: #fff;
    animation: pop 0.3s;
}

.input-group.success .validation-feedback .validation-icon::before {
    content: "✓";
    font-size: 14px;
    font-weight: bold;
}

/* Ensure input groups have enough bottom margin for validation text */
.input-group {
    margin-bottom: 35px;
    position: relative;
}

/* Responsive adjustments for validation feedback */
@media (max-width: 640px) {
    .validation-feedback {
        margin-top: 10px;
        font-size: 12px;
    }
    
    .validation-feedback .validation-icon {
        width: 18px;
        height: 18px;
        font-size: 11px;
    }
    
    .input-group.error .validation-feedback .validation-icon::before,
    .input-group.success .validation-feedback .validation-icon::before {
        font-size: 12px;
    }
    
    .input-group {
        margin-bottom: 30px;
    }
}

/* --- Floating Label Above Border --- */
.form-label {
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 100;
    background: #1a1a1a;
    padding: 0 4px;
}
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
    top: -12px;
    left: 16px;
    transform: none;
    font-size: 13px;
    background: #1a1a1a;
    color: #5A2D5B;
    border-radius: 8px;
    box-shadow: 0 2px 8px 0 rgba(90,45,91,0.04);
    padding: 0 8px;
    z-index: 100;
    border: 1.5px solid #5A2D5B;
}

/* Ensure input-wrapper has enough padding-top for floating label */
.input-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    background: #1a1a1a;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    padding-top: 15px;
    padding-bottom: 5px;
}

/* Optional: Make sure input has enough padding-top */
.form-input {
    width: 100%;
    padding: 20px 24px 12px 24px;
    background: transparent;
    border: none;
    font-size: 16px;
    color: #ffffff;
    outline: none;
    position: relative;
    z-index: 1;
}

.input-group.success .validation-feedback .validation-text {
    color: #00d4aa;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Submit Button */

/* Fix validation icon and text display */
.validation-feedback .validation-icon,
.validation-feedback .validation-text {
  display: none;
}

.input-group.success .validation-feedback .validation-icon.success,
.input-group.success .validation-feedback .validation-text.success {
  display: inline-flex !important;
  align-items: center;
  opacity: 1 !important;
}

.input-group.error .validation-feedback .validation-icon.error,
.input-group.error .validation-feedback .validation-text.error {
  display: inline-flex !important;
  align-items: center;
  opacity: 1 !important;
}

@media (max-width: 576px) {
  .hero {
    overflow-x: hidden;
    max-width: 100vw;
  }
  .hero-content {
    max-width: 100vw;
    overflow-x: hidden;
    padding: 0 8px;
  }
}

@media (max-width: 576px) {
  html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    position: relative;
  }
  * {
    box-sizing: border-box;
  }
}


/*  update form section starts */


