/* Landing Section - Modern Centered Design */
.landing {
    min-height: 100vh;
    background: linear-gradient(135deg, #0c1a21 0%, #1a2d35 50%, #09333f 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 0 80px;
    display: flex;
    align-items: center;
}

.landing-container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Main Content */
.landing-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

/* Animated Text */
.animated-text {
    animation: fadeInUp 1s ease;
    margin-bottom: 60px;
}

.main-heading {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #29dba0, #ffde59);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.main-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #29dba0, #ffde59);
    border-radius: 2px;
}

.text-rotate {
    display: block;
    font-size: 3.5rem;
    margin-top: 10px;
    height: 80px;
    overflow: hidden;
    position: relative;
}

.text-rotate span {
    display: block;
    animation: rotateWords 9s infinite;
    opacity: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffde59, #29dba0);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.text-rotate span:nth-child(2) {
    animation-delay: 3s;
}

.text-rotate span:nth-child(3) {
    animation-delay: 6s;
}

.subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 30px auto 40px;
    line-height: 1.7;
    max-width: 700px;
}

/* Stats Section */
.stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin: 50px 0 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(41, 219, 160, 0.1);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(41, 219, 160, 0.1);
    border-color: rgba(41, 219, 160, 0.3);
    box-shadow: 0 15px 40px rgba(41, 219, 160, 0.2);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #29dba0;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(41, 219, 160, 0.5);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.cta-btn {
    padding: 20px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    text-decoration: none;   /* removes underline */
    color: inherit;          /* removes purple/blue */
    width: auto;
}
.cta-btn:visited,
.cta-btn:hover,
.cta-btn:active {
    color: inherit;
    text-decoration: none;
}

.cta-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.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #29dba0, #1db886);
    color: #09333f;
    box-shadow: 0 10px 30px rgba(41, 219, 160, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(41, 219, 160, 0.6);
}

.cta-btn.secondary {
    background: transparent;
    color: #ffde59;
    border: 2px solid #ffde59;
    box-shadow: 0 5px 20px rgba(255, 222, 89, 0.2);
}

.cta-btn.secondary:hover {
    background: rgba(255, 222, 89, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 222, 89, 0.3);
}

/* Side Floating Elements */
.side-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(41, 219, 160, 0.2);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    width: 160px;
    pointer-events: auto;
    cursor: pointer;
}

.floating-element:hover {
    background: rgba(41, 219, 160, 0.1);
    border-color: #29dba0;
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 50px rgba(41, 219, 160, 0.3);
    z-index: 10;
}

/* Left Side Elements */
.left-elements .floating-element:nth-child(1) {
    top: 15%;
    left: 5%;
    animation: floatLeft 8s ease-in-out infinite;
}

.left-elements .floating-element:nth-child(2) {
    top: 45%;
    left: 8%;
    animation: floatLeft 7s ease-in-out infinite 1s;
}

.left-elements .floating-element:nth-child(3) {
    top: 75%;
    left: 6%;
    animation: floatLeft 9s ease-in-out infinite 2s;
}

/* Right Side Elements */
.right-elements .floating-element:nth-child(1) {
    top: 20%;
    right: 5%;
    animation: floatRight 7s ease-in-out infinite;
}

.right-elements .floating-element:nth-child(2) {
    top: 50%;
    right: 7%;
    animation: floatRight 8s ease-in-out infinite 1.5s;
}

.right-elements .floating-element:nth-child(3) {
    top: 80%;
    right: 5%;
    animation: floatRight 6s ease-in-out infinite 2.5s;
}

.element-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.3rem;
    color: #09333f;
    transition: all 0.3s ease;
}

.floating-element:hover .element-icon {
    transform: rotate(360deg) scale(1.2);
    box-shadow: 0 0 25px rgba(41, 219, 160, 0.6);
}

.floating-element h4 {
    color: #ffde59;
    margin-bottom: 8px;
    font-size: 1rem;
    font-weight: 600;
}

.floating-element p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Animated Orbs */
.animated-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 219, 160, 0.15) 0%, transparent 70%);
    animation: orbFloat 15s infinite linear;
}

.orb.small {
    width: 80px;
    height: 80px;
}

.orb.medium {
    width: 120px;
    height: 120px;
}

.orb.large {
    width: 180px;
    height: 180px;
}

.orb-1 {
    top: 20%;
    left: 8%;
    animation-delay: 0s;
}

.orb-2 {
    top: 60%;
    left: 12%;
    animation-delay: -3s;
}

.orb-3 {
    top: 30%;
    right: 10%;
    animation-delay: -6s;
}

.orb-4 {
    top: 70%;
    right: 8%;
    animation-delay: -9s;
}

/* Feature Cards Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(41, 219, 160, 0.15);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 219, 160, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: rgba(41, 219, 160, 0.4);
    box-shadow: 0 20px 50px rgba(41, 219, 160, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #09333f;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(41, 219, 160, 0.3);
}

.feature-card:hover .card-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(41, 219, 160, 0.5);
}

.feature-card h3 {
    color: #ffde59;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Background Elements */
.background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 219, 160, 0.1) 0%, transparent 70%);
    animation: floatBackground 20s infinite linear;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    top: 60%;
    right: 10%;
    animation-delay: -7s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    bottom: 20%;
    left: 15%;
    animation-delay: -14s;
}

.bg-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 222, 89, 0.05), transparent);
    animation: floatBackground 25s infinite linear reverse;
}

.shape-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 15%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    right: 25%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: rotate(45deg);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotateWords {
    0%, 25% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    5%, 20% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    30%, 100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
}

@keyframes floatLeft {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-20px) translateX(10px);
    }
    50% {
        transform: translateY(10px) translateX(-5px);
    }
    75% {
        transform: translateY(-15px) translateX(5px);
    }
}

@keyframes floatRight {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-15px) translateX(-8px);
    }
    50% {
        transform: translateY(20px) translateX(5px);
    }
    75% {
        transform: translateY(-10px) translateX(-3px);
    }
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-15px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(25px, 15px) rotate(270deg) scale(1.05);
    }
}

@keyframes floatBackground {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-heading {
        font-size: 3rem;
    }
    
    .text-rotate {
        font-size: 2.5rem;
        height: 60px;
    }
    
    .subtitle {
        font-size: 1.1rem;
        margin: 25px auto 35px;
    }
    
    .stats {
        gap: 30px;
        margin: 40px 0 50px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .cta-btn {
        padding: 18px 35px;
        font-size: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Hide side elements on mobile */
    .side-elements {
        display: none;
    }
    
    .animated-orbs {
        display: none;
    }
}

@media (max-width: 576px) {
    .landing {
        padding: 30px 0 60px;
    }
    
    .main-heading {
        font-size: 2.5rem;
    }
    
    .text-rotate {
        font-size: 2rem;
        height: 50px;
    }
    
    .stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #09333f 0%, #0c1a21 50%, #1a2d35 100%);
    position: relative;
    overflow: hidden;
}

.about-container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-content {
    text-align: center;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #29dba0, #ffde59);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #29dba0, #ffde59);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Mission Grid */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.mission-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    border: 1px solid rgba(41, 219, 160, 0.15);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 219, 160, 0.1), transparent);
    transition: left 0.7s ease;
}

.mission-card:hover::before {
    left: 100%;
}

.mission-card:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: rgba(41, 219, 160, 0.4);
    box-shadow: 0 25px 60px rgba(41, 219, 160, 0.25);
}

.mission-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.5rem;
    color: #09333f;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(41, 219, 160, 0.3);
    position: relative;
}

.mission-card:hover .mission-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 20px 45px rgba(41, 219, 160, 0.5);
}

.mission-card h3 {
    color: #ffde59;
    margin-bottom: 20px;
    font-size: 1.6rem;
    font-weight: 700;
}

.mission-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.mission-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 25px;
}

.mission-stat {
    text-align: center;
}

.mission-stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #29dba0;
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(41, 219, 160, 0.5);
}

.mission-stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Book Packages Showcase */
.packages-showcase {
    margin: 80px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.package-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 222, 89, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 222, 89, 0.1), transparent);
    transition: left 0.6s ease;
}

.package-card:hover::before {
    left: 100%;
}

.package-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 222, 89, 0.3);
    box-shadow: 0 20px 50px rgba(255, 222, 89, 0.2);
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffde59, #f0c900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #09333f;
    transition: all 0.4s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 15px 35px rgba(255, 222, 89, 0.4);
}

.package-card h4 {
    color: #29dba0;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.package-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.package-features {
    list-style: none;
    text-align: left;
    margin-top: 20px;
}

.package-features li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    font-size: 0.95rem;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #29dba0;
    font-weight: bold;
}

/* Guarantee Badge */
.guarantee-badge {
    background: linear-gradient(135deg, #29dba0, #1db886);
    color: #09333f;
    padding: 25px 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px auto;
    max-width: 600px;
    box-shadow: 0 15px 40px rgba(41, 219, 160, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    animation: pulseGlow 2s ease-in-out infinite;
}

.guarantee-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 10s linear infinite;
}

.guarantee-badge h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.guarantee-badge p {
    font-size: 1.1rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* About Background Elements */
.about-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.about-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 222, 89, 0.1) 0%, transparent 70%);
    animation: aboutOrbFloat 20s infinite linear;
}

.about-orb-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.about-orb-2 {
    width: 150px;
    height: 150px;
    top: 70%;
    right: 8%;
    animation-delay: -5s;
}

.about-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(41, 219, 160, 0.05), transparent);
    animation: aboutShapeFloat 25s infinite linear reverse;
}

.about-shape-1 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 10%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.about-shape-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 8%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: rotate(45deg);
}

/* About Animations */
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(41, 219, 160, 0.3);
    }
    50% {
        box-shadow: 0 20px 50px rgba(41, 219, 160, 0.6);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes aboutOrbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg) scale(1.05);
    }
}

@keyframes aboutShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(25px, -25px) rotate(120deg);
    }
    66% {
        transform: translate(-15px, 15px) rotate(240deg);
    }
}

/* Responsive About Section */
@media (max-width: 768px) {
    .about {
        padding: 80px 0;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .mission-card {
        padding: 40px 25px;
    }
    
    .mission-stats {
        gap: 20px;
    }
    
    .mission-stat-number {
        font-size: 1.8rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .guarantee-badge {
        margin: 40px auto;
        padding: 20px 30px;
    }
    
    .guarantee-badge h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2.3rem;
    }
    
    .mission-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .package-card {
        padding: 30px 20px;
    }
}
/* Our School Packages & Services – /* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(135deg, #0c1a21 0%, #09333f 50%, #1a2d35 100%);
    position: relative;
    overflow: hidden;
}

.services-container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.services-content {
    text-align: center;
}

/* Package Tiers */
.packages-tiers {
    margin: 60px 0;
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
    align-items: stretch;
}

.tier-wrapper {
    display: flex;
}

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 35px 25px;
    text-align: center;
    border: 2px solid rgba(41, 219, 160, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Make 2nd and 3rd containers broader on desktop */
@media (min-width: 1201px) {
    .tier-wrapper:nth-child(2),
    .tier-wrapper:nth-child(3) {
        grid-column: span 1.2;
    }
    
    .tier-wrapper:first-child,
    .tier-wrapper:last-child {
        grid-column: span 0.9;
    }
    
    /* Adjust padding for broader containers */
    .tier-wrapper:nth-child(2) .tier-card,
    .tier-wrapper:nth-child(3) .tier-card {
        padding: 40px 30px;
    }
    
    /* Adjust content inside broader containers */
    .tier-wrapper:nth-child(2) .tier-features,
    .tier-wrapper:nth-child(3) .tier-features {
        padding: 0 15px;
    }
    
    .tier-wrapper:nth-child(2) .tier-features li,
    .tier-wrapper:nth-child(3) .tier-features li {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 219, 160, 0.1), transparent);
    transition: left 0.7s ease;
}

.tier-card:hover::before {
    left: 100%;
}

.tier-card:hover {
    transform: translateY(-20px) scale(1.05);
    border-color: rgba(41, 219, 160, 0.5);
    box-shadow: 0 30px 60px rgba(41, 219, 160, 0.25);
}

.tier-card.popular {
    border-color: rgba(255, 222, 89, 0.4);
    transform: scale(1.05);
}

.tier-card.popular:hover {
    border-color: rgba(255, 222, 89, 0.6);
    box-shadow: 0 35px 70px rgba(255, 222, 89, 0.3);
}

.tier-card .popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ffde59, #f0c900);
    color: #09333f;
    padding: 10px 25px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 8px 20px rgba(255, 222, 89, 0.4);
    white-space: nowrap;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.tier-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
    color: #09333f;
    transition: all 0.5s ease;
    box-shadow: 0 15px 35px rgba(41, 219, 160, 0.3);
}

.tier-card.popular .tier-icon {
    background: linear-gradient(135deg, #ffde59, #f0c900);
    box-shadow: 0 15px 35px rgba(255, 222, 89, 0.4);
}

.tier-card:hover .tier-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 20px 45px rgba(41, 219, 160, 0.5);
}

.tier-card.popular:hover .tier-icon {
    box-shadow: 0 20px 45px rgba(255, 222, 89, 0.6);
}

.tier-card h3 {
    color: #ffde59;
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
}

.tier-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: #29dba0;
    margin-bottom: 8px;
    text-shadow: 0 0 20px rgba(41, 219, 160, 0.5);
    word-break: break-word;
    padding: 0 10px;
    line-height: 1.2;
}

.tier-card.popular .tier-price {
    color: #ffde59;
    text-shadow: 0 0 20px rgba(255, 222, 89, 0.5);
}

.tier-period {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.9rem;
    padding: 0 10px;
    line-height: 1.4;
}

/* Adjust tier features */
.tier-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    flex-grow: 1;
    padding: 0 10px;
}

.tier-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
    padding-left: 30px;
    position: relative;
    font-size: 0.9rem;
    line-height: 1.4;
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #29dba0;
    font-weight: bold;
    font-size: 1.2rem;
    width: 25px;
    height: 25px;
    background: rgba(41, 219, 160, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tier-card.popular .tier-features li::before {
    color: #ffde59;
    background: rgba(255, 222, 89, 0.1);
}

.tier-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: inherit;
    line-height: 1.4;
}

.tier-btn.primary {
    background: linear-gradient(135deg, #29dba0, #1db886);
    color: #09333f;
    box-shadow: 0 10px 30px rgba(41, 219, 160, 0.3);
}

.tier-btn.popular-btn {
    background: linear-gradient(135deg, #ffde59, #f0c900);
    color: #09333f;
    box-shadow: 0 10px 30px rgba(255, 222, 89, 0.3);
}

.tier-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(41, 219, 160, 0.5);
}

.tier-btn.popular-btn:hover {
    box-shadow: 0 15px 40px rgba(255, 222, 89, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Reset all padding to equal on medium screens */
    .tier-card {
        padding: 35px 25px !important;
    }
    
    .tier-features {
        padding: 0 10px !important;
    }
    
    .tier-features li {
        font-size: 0.9rem !important;
        margin-bottom: 10px !important;
    }
    
    .tier-card h3 {
        font-size: 1.5rem;
    }
    
    .tier-price {
        font-size: 2.2rem;
    }
    
    .tier-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .tier-card h3 {
        font-size: 1.4rem;
    }
    
    .tier-price {
        font-size: 2rem;
    }
    
    .tier-features li {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .tier-icon {
        width: 75px;
        height: 75px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .tiers-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .packages-tiers {
        margin: 40px 0;
        padding: 0 10px;
    }
    
    .tier-card {
        padding: 30px 20px !important;
    }
    
    .tier-card.popular {
        transform: scale(1);
    }
    
    .tier-card h3 {
        font-size: 1.5rem;
    }
    
    .tier-price {
        font-size: 2rem;
    }
    
    .tier-period {
        font-size: 0.85rem;
    }
    
    .tier-features li {
        font-size: 0.85rem;
        padding-left: 28px;
    }
    
    .tier-icon {
        width: 70px;
        height: 70px;
        font-size: 1.7rem;
        margin-bottom: 20px;
    }
    
    .tier-btn {
        padding: 12px 18px;
        font-size: 0.9rem;
    }
    
    .services {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .tier-card {
        padding: 25px 15px !important;
    }
    
    .tier-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
    
    .tier-price {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }
    
    .tier-period {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .tier-features {
        margin: 15px 0;
    }
    
    .tier-features li {
        font-size: 0.8rem;
        padding-left: 25px;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .tier-features li::before {
        width: 22px;
        height: 22px;
        font-size: 1rem;
    }
    
    .tier-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    
    .tier-btn {
        padding: 11px 16px;
        font-size: 0.85rem;
        border-radius: 12px;
    }
    
    .tier-card .popular-badge {
        padding: 8px 20px;
        font-size: 0.75rem;
        top: -12px;
    }
}

@media (max-width: 400px) {
    .tier-card {
        padding: 20px 12px !important;
    }
    
    .tier-card h3 {
        font-size: 1.2rem;
    }
    
    .tier-price {
        font-size: 1.6rem;
    }
    
    .tier-features li {
        font-size: 0.75rem;
    }
    
    .tier-btn {
        padding: 10px 14px;
        font-size: 0.8rem;
    }
}

/* Additional Services */
.additional-services {
    margin: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 222, 89, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 222, 89, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 222, 89, 0.3);
    box-shadow: 0 20px 50px rgba(255, 222, 89, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ffde59, #f0c900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 1.8rem;
    color: #09333f;
    transition: all 0.4s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
    box-shadow: 0 15px 35px rgba(255, 222, 89, 0.4);
}

.service-item h4 {
    color: #29dba0;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.service-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Services Background Elements */
.services-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.services-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 219, 160, 0.1) 0%, transparent 70%);
    animation: servicesOrbFloat 25s infinite linear;
}

.services-orb-1 {
    width: 250px;
    height: 250px;
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}

.services-orb-2 {
    width: 180px;
    height: 180px;
    bottom: 20%;
    left: 6%;
    animation-delay: -8s;
}

.services-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 222, 89, 0.05), transparent);
    animation: servicesShapeFloat 30s infinite linear reverse;
}

.services-shape-1 {
    width: 120px;
    height: 120px;
    top: 40%;
    left: 10%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: rotate(45deg);
}

.services-shape-2 {
    width: 90px;
    height: 90px;
    bottom: 30%;
    right: 12%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Services Animations */
@keyframes servicesOrbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(40px, -50px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-30px, 40px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(50px, 30px) rotate(270deg) scale(1.05);
    }
}

@keyframes servicesShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(35px, -35px) rotate(120deg);
    }
    66% {
        transform: translate(-25px, 25px) rotate(240deg);
    }
}

/* Responsive Additional Services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .service-item {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .service-item {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .service-item h4 {
        font-size: 1.2rem;
    }
    
    .service-item p {
        font-size: 0.9rem;
    }
}

/* Success Stories Section - Keep existing */
.success-stories {
    padding: 120px 0;
    background: linear-gradient(135deg, #09333f 0%, #0c1a21 50%, #1a2d35 100%);
    position: relative;
    overflow: hidden;
}

.stories-container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stories-content {
    text-align: center;
}

/* Spacing fix */
@media (max-width: 768px) {
    .services {
        padding: 80px 0;
    }
}

.services-content {
    row-gap: 40px;
}

@media (max-width: 768px) {
    .services-content {
        row-gap: 28px;
    }
}
/* Success Stories Section */
.success-stories {
    padding: 120px 0;
    background: linear-gradient(135deg, #09333f 0%, #0c1a21 50%, #1a2d35 100%);
    position: relative;
    overflow: hidden;
}

.stories-container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.stories-content {
    text-align: center;
}

/* Impact Stats */
.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.impact-stat {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(41, 219, 160, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.impact-stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 219, 160, 0.1), transparent);
    transition: left 0.6s ease;
}

.impact-stat:hover::before {
    left: 100%;
}

.impact-stat:hover {
    transform: translateY(-10px);
    border-color: rgba(41, 219, 160, 0.4);
    box-shadow: 0 20px 40px rgba(41, 219, 160, 0.2);
}

.impact-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: #29dba0;
    margin-bottom: 10px;
    text-shadow: 0 0 25px rgba(41, 219, 160, 0.6);
}

.impact-label {
    color: #ffde59;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.impact-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Case Studies Slider */
.case-studies-slider {
    margin: 80px 0;
    position: relative;
}

.slider-container {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    margin: 40px 0;
    padding: 10px 0;
}

.slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 40px;
    padding: 0 20px;
}

/* Original Case Study Styles (unchanged) */
.case-study {
    flex: 0 0 calc(33.333% - 27px);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 1px solid rgba(255, 222, 89, 0.2);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

.case-study::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 222, 89, 0.1), transparent);
    transition: left 0.7s ease;
}

.case-study:hover::before {
    left: 100%;
}

.case-study:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(255, 222, 89, 0.4);
    box-shadow: 0 25px 50px rgba(255, 222, 89, 0.25);
}

.study-header {
    background: linear-gradient(135deg, #29dba0, #1db886);
    padding: 30px;
    text-align: center;
    position: relative;
}

.study-school {
    font-size: 1.6rem;
    font-weight: 700;
    color: #09333f;
    margin-bottom: 10px;
}

.study-location {
    color: rgba(9, 51, 63, 0.8);
    font-size: 1.1rem;
    font-weight: 600;
}

.study-body {
    padding: 40px 30px;
}

.study-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.stat-before, .stat-after {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
}

.stat-before {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-after {
    border: 1px solid rgba(41, 219, 160, 0.3);
    background: rgba(41, 219, 160, 0.05);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffde59;
}

.stat-after .stat-number {
    color: #29dba0;
}

.stat-period {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    margin-top: 5px;
}

.study-growth {
    text-align: center;
    margin: 20px 0;
}

.growth-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffde59, #f0c900);
    color: #09333f;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(255, 222, 89, 0.3);
}

.study-testimonial {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 15px;
    margin-top: 25px;
    border-left: 4px solid #29dba0;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 15px;
}

.testimonial-author {
    color: #ffde59;
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-role {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
    padding: 0 20px;
}

.slider-btn {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 222, 89, 0.3);
    border-radius: 50%;
    color: #ffde59;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 222, 89, 0.2);
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 222, 89, 0.3);
}

.slider-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none !important;
}

.slider-dots {
    display: flex;
    gap: 12px;
}

.slider-dot {
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.slider-dot:hover {
    background: rgba(255, 222, 89, 0.4);
    transform: scale(1.2);
}

.slider-dot.active {
    background: #29dba0;
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(41, 219, 160, 0.5);
}

.slider-status {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    font-weight: 600;
}

.current-slide {
    color: #ffde59;
    font-size: 1.4rem;
}

.total-slides {
    color: #29dba0;
}

/* Auto-slide Indicator */
.auto-slide-indicator {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.auto-slide-toggle {
    width: 40px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auto-slide-toggle.active {
    background: rgba(41, 219, 160, 0.3);
}

.auto-slide-toggle::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: #ffde59;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.auto-slide-toggle.active::after {
    transform: translateX(20px);
    background: #29dba0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .case-study {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .case-study {
        flex: 0 0 calc(100% - 20px);
    }
    
    .slider-controls {
        flex-direction: column;
        gap: 20px;
    }
    
    .slider-btn {
        width: 50px;
        height: 50px;
    }
    
    .study-body {
        padding: 30px 20px;
    }
    
    .study-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (max-width: 576px) {
    .case-studies-slider {
        margin: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem !important;
    }
    
    .study-header {
        padding: 25px 20px;
    }
    
    .study-school {
        font-size: 1.4rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .growth-badge {
        padding: 10px 20px;
        font-size: 1rem;
    }
}
/* Pricing Calculator Section */
.pricing-calculator {
    padding: 120px 0;
    background: linear-gradient(135deg, #0c1a21 0%, #09333f 50%, #1a2d35 100%);
    position: relative;
    overflow: hidden;
}

.calculator-container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.calculator-content {
    text-align: center;
}

/* Calculator Layout */
.calculator-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px 0;
    align-items: start;
}

.calculator-inputs {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(41, 219, 160, 0.2);
}

.calculator-results {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 222, 89, 0.2);
    position: sticky;
    top: 100px;
}

/* Input Groups */
.input-group {
    margin-bottom: 40px;
    text-align: left;
}

.input-group label {
    display: block;
    color: #ffde59;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.input-group .helper-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-top: 8px;
}

/* Slider Styling */
.slider-container {
    position: relative;
    margin: 25px 0;
}

.slider {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    outline: none;
    -webkit-appearance: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(41, 219, 160, 0.5);
    border: 3px solid #09333f;
}

.slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(41, 219, 160, 0.5);
    border: 3px solid #09333f;
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Package Selector */
.package-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.package-option {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.package-option:hover {
    border-color: rgba(41, 219, 160, 0.3);
    transform: translateY(-5px);
}

.package-option.selected {
    background: rgba(41, 219, 160, 0.1);
    border-color: #29dba0;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(41, 219, 160, 0.2);
}

.package-option h4 {
    color: #ffde59;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.package-option .price {
    color: #29dba0;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.package-option .period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Results Display */
.results-summary {
    text-align: center;
    margin-bottom: 40px;
}

.estimated-cost {
    font-size: 3.5rem;
    font-weight: 800;
    color: #29dba0;
    margin: 20px 0;
    text-shadow: 0 0 25px rgba(41, 219, 160, 0.6);
}

.cost-period {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.roi-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.roi-metric {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    border: 1px solid rgba(255, 222, 89, 0.1);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: #ffde59;
    margin-bottom: 5px;
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.growth-projection {
    background: rgba(41, 219, 160, 0.1);
    border-radius: 15px;
    padding: 25px;
    margin: 30px 0;
    border: 1px solid rgba(41, 219, 160, 0.3);
}

.growth-title {
    color: #29dba0;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.growth-bar {
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin: 15px 0;
    overflow: hidden;
}

.growth-fill {
    height: 100%;
    background: linear-gradient(90deg, #29dba0, #1db886);
    border-radius: 10px;
    transition: width 1s ease;
}

.growth-stats {
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* CTA Section */
.calculator-cta {
    text-align: center;
    margin-top: 50px;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.calc-btn {
    padding: 18px 35px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.calc-btn.primary {
    background: linear-gradient(135deg, #29dba0, #1db886);
    color: #09333f;
    box-shadow: 0 10px 30px rgba(41, 219, 160, 0.3);
}

.calc-btn.secondary {
    background: transparent;
    color: #ffde59;
    border: 2px solid #ffde59;
    box-shadow: 0 5px 20px rgba(255, 222, 89, 0.2);
}

.calc-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(41, 219, 160, 0.5);
}

.calc-btn.secondary:hover {
    background: rgba(255, 222, 89, 0.1);
    box-shadow: 0 15px 40px rgba(255, 222, 89, 0.3);
}

/* Calculator Background Elements */
.calculator-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.calc-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 222, 89, 0.1) 0%, transparent 70%);
    animation: calcOrbFloat 25s infinite linear;
}

.calc-orb-1 {
    width: 180px;
    height: 180px;
    top: 20%;
    right: 12%;
    animation-delay: 0s;
}

.calc-orb-2 {
    width: 120px;
    height: 120px;
    bottom: 25%;
    left: 10%;
    animation-delay: -8s;
}

.calc-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(41, 219, 160, 0.05), transparent);
    animation: calcShapeFloat 30s infinite linear reverse;
}

.calc-shape-1 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.calc-shape-2 {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 12%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: rotate(45deg);
}

/* Calculator Animations */
@keyframes calcOrbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-25px, 35px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(40px, 25px) rotate(270deg) scale(1.05);
    }
}

@keyframes calcShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(25px, -25px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Responsive Calculator */
@media (max-width: 992px) {
    .calculator-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .calculator-results {
        position: static;
    }
    
    .package-selector {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .pricing-calculator {
        padding: 80px 0;
    }
    
    .calculator-inputs,
    .calculator-results {
        padding: 40px 30px;
    }
    
    .estimated-cost {
        font-size: 2.8rem;
    }
    
    .roi-metrics {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        align-items: center;
    }
    
    .calc-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .calculator-inputs,
    .calculator-results {
        padding: 30px 20px;
    }
    
    .input-group {
        margin-bottom: 30px;
    }
}
/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #09333f 0%, #0c1a21 50%, #1a2d35 100%);
    position: relative;
    overflow: hidden;
}

.contact-container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-content {
    text-align: center;
}

/* Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin: 60px 0;
    align-items: start;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(41, 219, 160, 0.2);
}

.contact-form-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 222, 89, 0.2);
}

/* Contact Information */
.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: rgba(41, 219, 160, 0.05);
    border-color: rgba(41, 219, 160, 0.2);
    transform: translateY(-5px);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #09333f;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 10px 25px rgba(41, 219, 160, 0.4);
}

.info-content h4 {
    color: #ffde59;
    margin-bottom: 8px;
    font-size: 1.3rem;
    font-weight: 600;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 5px;
}

.info-content a {
    color: #29dba0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #ffde59;
    text-decoration: underline;
}

/* Regional Offices */
.regional-offices {
    margin-top: 50px;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.office-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 25px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all 0.3s ease;
}

.office-card:hover {
    background: rgba(255, 222, 89, 0.05);
    border-color: rgba(255, 222, 89, 0.2);
    transform: translateY(-5px);
}

.office-city {
    color: #29dba0;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.office-address {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.office-phone {
    color: #ffde59;
    font-weight: 500;
}

/* Contact Form */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    color: #ffde59;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #29dba0;
    background: rgba(41, 219, 160, 0.05);
    box-shadow: 0 0 0 2px rgba(41, 219, 160, 0.2);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* Form Options */
.form-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.option-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.option-card:hover {
    border-color: rgba(41, 219, 160, 0.3);
    transform: translateY(-3px);
}

.option-card.selected {
    background: rgba(41, 219, 160, 0.1);
    border-color: #29dba0;
    transform: translateY(-3px);
}

.option-icon {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #29dba0;
}

.option-card.selected .option-icon {
    color: #ffde59;
}

.option-card h4 {
    color: #ffde59;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.option-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    color: #09333f;
    border: none;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(41, 219, 160, 0.5);
}

.submit-btn:active {
    transform: translateY(-2px);
}

/* Response Time */
.response-time {
    text-align: center;
    margin-top: 20px;
    padding: 15px;
    background: rgba(255, 222, 89, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(255, 222, 89, 0.2);
}

.response-time p {
    color: #ffde59;
    font-weight: 600;
    margin: 0;
}

/* Contact Background Elements */
.contact-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.contact-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 219, 160, 0.1) 0%, transparent 70%);
    animation: contactOrbFloat 20s infinite linear;
}

.contact-orb-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.contact-orb-2 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 8%;
    animation-delay: -5s;
}

.contact-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 222, 89, 0.05), transparent);
    animation: contactShapeFloat 25s infinite linear reverse;
}

.contact-shape-1 {
    width: 80px;
    height: 80px;
    top: 40%;
    right: 15%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.contact-shape-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    left: 12%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: rotate(45deg);
}

/* Contact Animations */
@keyframes contactOrbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(25px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 25px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(30px, 20px) rotate(270deg) scale(1.05);
    }
}

@keyframes contactShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(20px, -20px) rotate(120deg);
    }
    66% {
        transform: translate(-15px, 15px) rotate(240deg);
    }
}

/* Responsive Contact Section */
@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-options {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 80px 0;
    }
    
    .contact-info,
    .contact-form-section {
        padding: 40px 30px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-info,
    .contact-form-section {
        padding: 30px 20px;
    }
    
    .info-item {
        padding: 20px 15px;
    }
    
    .office-card {
        padding: 20px 15px;
    }
}
/* Footer Section */
.footer {
    background: linear-gradient(135deg, #0c1a21 0%, #070f14 100%);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(41, 219, 160, 0.1);
}

.footer-container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
/* Add these styles to fix padding issues */

/* Reset body and html */
html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

/* Make all containers full width */
.container, 
.about-hero-container,
.mvi-container,
.director-container,
.roadmap-container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Fix footer specifically */
.footer {
    width: 100%;
}

.footer .footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Ensure sections take full width */
section {
    width: 100%;
}
/* Footer Content */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    color: #ffde59;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #29dba0, #ffde59);
    border-radius: 1px;
}

/* Logo Column */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    text-decoration: none;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #09333f;
}

.footer-logo-text {
    color: #ffde59;
    font-size: 1.8rem;
    font-weight: 800;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link:hover {
    background: rgba(41, 219, 160, 0.2);
    border-color: #29dba0;
    color: #29dba0;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(41, 219, 160, 0.3);
}

/* Footer Links */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: #29dba0;
    transform: translateX(5px);
}

.footer-links a::before {
    content: '▸';
    color: #ffde59;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

/* Contact Info Footer */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-contact i {
    color: #29dba0;
    font-size: 1rem;
    width: 16px;
    margin-top: 2px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #29dba0;
}

/* Newsletter */
.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-size: 0.9rem;
}

.newsletter-input:focus {
    outline: none;
    border-color: #29dba0;
}

.newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    color: #09333f;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(41, 219, 160, 0.4);
}

.newsletter-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    line-height: 1.4;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #29dba0;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    color: #09333f;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(41, 219, 160, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(41, 219, 160, 0.6);
}

/* Footer Background Elements */
.footer-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.footer-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 219, 160, 0.05) 0%, transparent 70%);
    animation: footerOrbFloat 30s infinite linear;
}

.footer-orb-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.footer-orb-2 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 8%;
    animation-delay: -10s;
}

/* Footer Animations */
@keyframes footerOrbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(20px, -25px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-15px, 20px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(25px, 15px) rotate(270deg) scale(1.05);
    }
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .footer-column:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 25px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 40px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 50px 0 20px;
    }
    
    .footer-logo {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 10px;
    }
}
/* NEP Compliance Section */
.nep-compliance {
    padding: 120px 0;
    background: linear-gradient(135deg, #09333f 0%, #0c1a21 50%, #1a2d35 100%);
    position: relative;
    overflow: hidden;
}

.nep-container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.nep-header {
    text-align: center;
    margin-bottom: 60px;
}

.nep-badge {
    display: inline-block;
    background: linear-gradient(135deg, #29dba0, #1db886);
    color: #09333f;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(41, 219, 160, 0.3);
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 30px;
    border: 1px solid rgba(41, 219, 160, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(41, 219, 160, 0.1), transparent);
    transition: left 0.6s ease;
}

.pillar-card:hover::before {
    left: 100%;
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(41, 219, 160, 0.4);
    box-shadow: 0 20px 40px rgba(41, 219, 160, 0.2);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #09333f;
    transition: all 0.4s ease;
}

.pillar-card:hover .pillar-icon {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(41, 219, 160, 0.4);
}

.pillar-card h3 {
    color: #ffde59;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
    font-weight: 600;
}

.pillar-features {
    list-style: none;
}

.pillar-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.pillar-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #29dba0;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Program Alignment */
.program-alignment {
    margin: 80px 0;
}

.alignment-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.alignment-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px 25px;
    border: 1px solid rgba(255, 222, 89, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.alignment-card:hover {
    border-color: rgba(255, 222, 89, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 222, 89, 0.1);
}

.alignment-card h4 {
    color: #29dba0;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.alignment-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Compliance Benefits */
.compliance-benefits {
    background: rgba(41, 219, 160, 0.1);
    border-radius: 20px;
    padding: 50px 40px;
    margin: 60px 0;
    border: 1px solid rgba(41, 219, 160, 0.3);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ffde59, #f0c900);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    color: #09333f;
}

.benefit-item h4 {
    color: #ffde59;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* NEP Background Elements */
.nep-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.nep-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 222, 89, 0.1) 0%, transparent 70%);
    animation: nepOrbFloat 25s infinite linear;
}

.nep-orb-1 {
    width: 200px;
    height: 200px;
    top: 15%;
    right: 8%;
    animation-delay: 0s;
}

.nep-orb-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 6%;
    animation-delay: -8s;
}

.nep-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(41, 219, 160, 0.05), transparent);
    animation: nepShapeFloat 30s infinite linear reverse;
}

.nep-shape-1 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 10%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

/* NEP Animations */
@keyframes nepOrbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -35px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-25px, 30px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(35px, 25px) rotate(270deg) scale(1.05);
    }
}

@keyframes nepShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(25px, -25px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Responsive NEP Section */
@media (max-width: 768px) {
    .nep-compliance {
        padding: 80px 0;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .alignment-cards {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .compliance-benefits {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .pillar-card {
        padding: 30px 20px;
    }
    
    .alignment-card {
        padding: 25px 20px;
    }
    
    .compliance-benefits {
        padding: 30px 25px;
    }
}
/* Implementation Roadmap Section */
.implementation-roadmap {
    padding: 120px 0;
    background: linear-gradient(135deg, #0c1a21 0%, #09333f 50%, #1a2d35 100%);
    position: relative;
    overflow: hidden;
}

.roadmap-container {
    width: 98%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.roadmap-header {
    text-align: center;
    margin-bottom: 80px;
}

.process-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffde59, #f0c900);
    color: #09333f;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(255, 222, 89, 0.3);
}

/* Timeline */
.roadmap-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background: linear-gradient(to bottom, #29dba0, #ffde59);
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 40px 35px;
    border: 1px solid rgba(41, 219, 160, 0.2);
    width: 45%;
    position: relative;
    transition: all 0.4s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 5%;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 5%;
}

.timeline-content:hover {
    transform: translateY(-10px);
    border-color: rgba(41, 219, 160, 0.4);
    box-shadow: 0 20px 40px rgba(41, 219, 160, 0.2);
}

.timeline-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #09333f;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(41, 219, 160, 0.3);
}

.timeline-item:nth-child(odd) .timeline-icon {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-icon {
    left: -40px;
}

.timeline-content:hover .timeline-icon {
    transform: translateY(-50%) scale(1.1) rotate(10deg);
    box-shadow: 0 15px 35px rgba(41, 219, 160, 0.5);
}

.timeline-step {
    display: inline-block;
    background: linear-gradient(135deg, #ffde59, #f0c900);
    color: #09333f;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.timeline-content h3 {
    color: #ffde59;
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 600;
}

.timeline-features {
    list-style: none;
    margin-top: 20px;
}

.timeline-features li {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.timeline-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #29dba0;
    font-weight: bold;
}

/* Daily Structure */
.daily-structure {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 50px 40px;
    margin: 80px 0;
    border: 1px solid rgba(255, 222, 89, 0.2);
}

.structure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.structure-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.structure-card:hover {
    border-color: rgba(255, 222, 89, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 222, 89, 0.1);
}

.structure-time {
    color: #29dba0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.structure-activity {
    color: #ffde59;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.structure-duration {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px 15px;
    border-radius: 15px;
    display: inline-block;
}
/* Testimonials Carousel */
.testimonials-carousel {
    margin: 80px 0;
    position: relative;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 25px;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(41, 219, 160, 0.2);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #29dba0, #1db886);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: #09333f;
    box-shadow: 0 15px 35px rgba(41, 219, 160, 0.3);
}

.testimonial-quote {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-name {
    color: #ffde59;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-position {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(41, 219, 160, 0.3);
    border-radius: 50%;
    color: #29dba0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(41, 219, 160, 0.2);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #29dba0;
    transform: scale(1.2);
}

/* Success Stories Background Elements */
.stories-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.stories-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 222, 89, 0.1) 0%, transparent 70%);
    animation: storiesOrbFloat 30s infinite linear;
}

.stories-orb-1 {
    width: 200px;
    height: 200px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.stories-orb-2 {
    width: 150px;
    height: 150px;
    bottom: 25%;
    left: 8%;
    animation-delay: -10s;
}

.stories-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(41, 219, 160, 0.05), transparent);
    animation: storiesShapeFloat 35s infinite linear reverse;
}

.stories-shape-1 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 15%;
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.stories-shape-2 {
    width: 80px;
    height: 80px;
    top: 30%;
    left: 12%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    transform: rotate(45deg);
}

/* Success Stories Animations */
@keyframes storiesOrbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(35px, -45px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-25px, 35px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(45px, 25px) rotate(270deg) scale(1.05);
    }
}

@keyframes storiesShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Responsive Success Stories */
@media (max-width: 768px) {
    .success-stories {
        padding: 80px 0;
    }
    
    .impact-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .impact-number {
        font-size: 2.8rem;
    }
    
    .studies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .study-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .carousel-slide {
        padding: 40px 30px;
    }
    
    .testimonial-quote {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .study-body {
        padding: 30px 20px;
    }
    
    .carousel-slide {
        padding: 35px 25px;
    }
    
    .testimonial-avatar {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}
/* Success Metrics */
.success-metrics {
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin: 50px 0;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 15px;
    padding: 30px 25px;
    border: 1px solid rgba(41, 219, 160, 0.1);
    transition: all 0.3s ease;
}

.metric-card:hover {
    border-color: rgba(41, 219, 160, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(41, 219, 160, 0.1);
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: #29dba0;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(41, 219, 160, 0.5);
}

.metric-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

/* Roadmap Background Elements */
.roadmap-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.roadmap-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(41, 219, 160, 0.1) 0%, transparent 70%);
    animation: roadmapOrbFloat 30s infinite linear;
}

.roadmap-orb-1 {
    width: 180px;
    height: 180px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.roadmap-orb-2 {
    width: 120px;
    height: 120px;
    bottom: 25%;
    left: 8%;
    animation-delay: -10s;
}

.roadmap-shape {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 222, 89, 0.05), transparent);
    animation: roadmapShapeFloat 35s infinite linear reverse;
}

.roadmap-shape-1 {
    width: 90px;
    height: 90px;
    top: 60%;
    right: 12%;
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

/* Roadmap Animations */
@keyframes roadmapOrbFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(25px, -30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 25px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(30px, 20px) rotate(270deg) scale(1.05);
    }
}

@keyframes roadmapShapeFloat {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(20px, -20px) rotate(120deg);
    }
    66% {
        transform: translate(-15px, 15px) rotate(240deg);
    }
}

/* Responsive Roadmap */
@media (max-width: 768px) {
    .implementation-roadmap {
        padding: 80px 0;
    }
    
    .roadmap-timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
        justify-content: flex-start;
    }
    
    .timeline-content {
        width: calc(100% - 80px);
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-icon {
        left: -40px !important;
        right: auto !important;
    }
    
    .structure-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .timeline-content {
        padding: 30px 25px;
    }
    
    .daily-structure {
        padding: 40px 30px;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .structure-card {
        padding: 25px 20px;
    }
}
/* About Us Hero Section */
.about-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0c1a21 0%, #1a2d35 50%, #09333f 100%);
    position: relative;
    overflow: hidden;
    padding: 60px 40px 80px;
    display: flex;
    align-items: center;
}
@media (max-width: 768px) {
    .about-hero {
        min-height: auto;
        padding: 80px 0 40px;
    }
}


.about-hero-container {
    width: 98%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-hero-text {
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #29dba0, #ffde59);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.about-hero-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, #29dba0, #ffde59);
    border-radius: 3px;
}

.about-hero-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.about-stat {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(41, 219, 160, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-stat:hover {
    transform: translateY(-10px);
    border-color: rgba(41, 219, 160, 0.4);
    box-shadow: 0 20px 40px rgba(41, 219, 160, 0.2);
}

.about-stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #29dba0;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(41, 219, 160, 0.5);
}

.about-stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

/* 3D Visualization Container */
.about-visualization {
    position: relative;
    height: 500px;
    perspective: 1000px;
}

.cube-container {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: cubeRotate 20s infinite linear;
}

.cube-face {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(41, 219, 160, 0.1);
    border: 2px solid rgba(41, 219, 160, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.5s ease;
}

.cube-face img {
    width: 80%;
    height: 80%;
    object-fit: contain;
    filter: drop-shadow(0 0 20px rgba(41, 219, 160, 0.5));
}

.cube-face-front {
    transform: translateZ(150px);
    background: linear-gradient(135deg, rgba(41, 219, 160, 0.15), rgba(255, 222, 89, 0.1));
}

.cube-face-back {
    transform: rotateY(180deg) translateZ(150px);
    background: linear-gradient(135deg, rgba(255, 222, 89, 0.15), rgba(41, 219, 160, 0.1));
}

.cube-face-right {
    transform: rotateY(90deg) translateZ(150px);
    background: linear-gradient(135deg, rgba(9, 51, 63, 0.2), rgba(41, 219, 160, 0.15));
}

.cube-face-left {
    transform: rotateY(-90deg) translateZ(150px);
    background: linear-gradient(135deg, rgba(41, 219, 160, 0.15), rgba(9, 51, 63, 0.2));
}

.cube-face-top {
    transform: rotateX(90deg) translateZ(150px);
    background: linear-gradient(135deg, rgba(255, 222, 89, 0.15), rgba(9, 51, 63, 0.2));
}

.cube-face-bottom {
    transform: rotateX(-90deg) translateZ(150px);
    background: linear-gradient(135deg, rgba(9, 51, 63, 0.2), rgba(255, 222, 89, 0.15));
}

.floating-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #29dba0, #ffde59);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #09333f;
    animation: floatAround 15s infinite linear;
    box-shadow: 0 10px 25px rgba(41, 219, 160, 0.4);
}

.floating-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 60%;
    left: 15%;
    animation-delay: -3s;
}

.floating-icon:nth-child(3) {
    top: 30%;
    right: 10%;
    animation-delay: -6s;
}

.floating-icon:nth-child(4) {
    top: 70%;
    right: 15%;
    animation-delay: -9s;
}

/* Animations */
@keyframes cubeRotate {
    0% {
        transform: rotateX(0) rotateY(0) rotateZ(0);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
    }
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(30px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-20px, 30px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg) scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-visualization {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero-title {
        font-size: 3.5rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-visualization {
        height: 300px;
    }
    
    .cube-face {
        width: 200px;
        height: 200px;
    }
    
    .cube-face-front {
        transform: translateZ(100px);
    }
    
    .cube-face-back {
        transform: rotateY(180deg) translateZ(100px);
    }
    
    .cube-face-right {
        transform: rotateY(90deg) translateZ(100px);
    }
    
    .cube-face-left {
        transform: rotateY(-90deg) translateZ(100px);
    }
    
    .cube-face-top {
        transform: rotateX(90deg) translateZ(100px);
    }
    
    .cube-face-bottom {
        transform: rotateX(-90deg) translateZ(100px);
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 2.8rem;
    }
    
    .about-hero-subtitle {
        font-size: 1.1rem;
    }
}

.student-name {
    color: #1db954;   /* Change to your exact brand green */
    font-weight: 700;
    font-size: 26px;
    margin: 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
