* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0a0a0a;
    color: #fff;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.circuit-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, #00f2ff 50px, #00f2ff 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, #00f2ff 50px, #00f2ff 51px);
    animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #00f2ff;
    border-radius: 50%;
    animation: float 8s infinite;
    box-shadow: 0 0 10px #00f2ff;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) translateX(50px); opacity: 0; }
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 242, 255, 0.2);
}

.logo {
    font-size: 28px;
    font-weight: bold;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 5px #00f2ff); }
    50% { filter: drop-shadow(0 0 20px #00f2ff); }
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f2ff, #7b2ff7);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #00f2ff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: #00f2ff;
    border-radius: 3px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Hero Slider Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.85), rgba(26, 26, 46, 0.85));
    z-index: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    filter: brightness(0.6);
}

.slide-1::after {
    background-image: url('https://images.unsplash.com/photo-1581092918056-0c4c3acd3789?w=1600&q=80');
}

.slide-2::after {
    background-image: url('https://images.unsplash.com/photo-1581092160562-40aa08e78837?w=1600&q=80');
}

.slide-3::after {
    background-image: url('https://images.unsplash.com/photo-1581092162384-8987c1d64718?w=1600&q=80');
}

.slide-4::after {
    background-image: url('https://images.unsplash.com/photo-1581092160607-ee22621dd758?w=1600&q=80');
}

/* Awards Gallery Section */
.awards-gallery {
    padding: 120px 5%;
    background: linear-gradient(180deg, transparent, rgba(0, 242, 255, 0.05));
    position: relative;
    overflow: hidden;
}

.awards-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 242, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(123, 47, 247, 0.05) 0%, transparent 50%);
    animation: galleryPulse 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes galleryPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.awards-gallery-content {
    position: relative;
    z-index: 1;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.award-photo-card {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), rgba(123, 47, 247, 0.05));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s ease;
    position: relative;
    cursor: pointer;
    backdrop-filter: blur(10px);
}

.award-photo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
}

.award-photo-card:hover::before {
    opacity: 1;
}

.award-photo-card:hover {
    transform: translateY(-20px) scale(1.03);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.4), 0 0 60px rgba(0, 242, 255, 0.3);
}

.award-image-container {
    position: relative;
    width: 100%;
    padding-top: 66.67%;
    overflow: hidden;
    background: #000;
}

.award-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.award-photo-card:hover .award-image-container img {
    transform: scale(1.1);
}

.award-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    z-index: 2;
}

.award-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 165, 0, 0.9));
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 28px;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.5);
    animation: badgeBounce 2s ease-in-out infinite;
    z-index: 3;
}

@keyframes badgeBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(-5deg); }
}

.award-info {
    width: 100%;
}

.award-title {
    font-size: 24px;
    font-weight: bold;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.award-description {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.award-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 242, 255, 0.2);
    border: 1px solid rgba(0, 242, 255, 0.4);
    border-radius: 20px;
    font-size: 13px;
    color: #00f2ff;
    margin-top: 10px;
}

.award-photo-details {
    padding: 30px;
    background: rgba(10, 10, 10, 0.8);
}

.award-photo-details h3 {
    font-size: 22px;
    color: #ffd700;
    margin-bottom: 15px;
}

.award-photo-details p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 15px;
}

/* Education Partners Section */
.edu-partners {
    padding: 120px 5%;
    background: linear-gradient(180deg, rgba(0, 242, 255, 0.05), rgba(123, 47, 247, 0.05));
    position: relative;
    overflow: hidden;
}

.edu-partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(0, 242, 255, 0.02) 60px, rgba(0, 242, 255, 0.02) 61px),
        repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(123, 47, 247, 0.02) 60px, rgba(123, 47, 247, 0.02) 61px);
    animation: partnerGrid 20s linear infinite;
    z-index: 0;
}

@keyframes partnerGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(60px, 60px); }
}

.edu-partners-content {
    position: relative;
    z-index: 1;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.partner-card {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(123, 47, 247, 0.08));
    border: 2px solid rgba(0, 242, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.partner-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00f2ff, #7b2ff7, #00f2ff);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
    background-size: 300% 300%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.partner-card:hover::before {
    opacity: 1;
}

.partner-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 70px rgba(0, 242, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.12), rgba(123, 47, 247, 0.12));
}

.partner-icon {
    font-size: 60px;
    margin-bottom: 25px;
    animation: partnerFloat 3s ease-in-out infinite;
    display: inline-block;
}

@keyframes partnerFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.partner-card:hover .partner-icon {
    animation: partnerSpin 0.6s ease-in-out;
}

@keyframes partnerSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.partner-card h3 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00f2ff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
}

.partner-card:hover h3 {
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.partner-card p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

.partner-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.2), rgba(123, 47, 247, 0.2));
    border: 1px solid rgba(0, 242, 255, 0.4);
    border-radius: 20px;
    font-size: 13px;
    color: #00f2ff;
    font-weight: 600;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.partner-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.partner-card:hover .partner-badge {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.3), rgba(123, 47, 247, 0.3));
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.4);
}

.partner-card:hover .partner-badge::before {
    left: 100%;
}

.partnership-cta {
    margin-top: 80px;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(123, 47, 247, 0.1));
    border: 2px solid rgba(0, 242, 255, 0.3);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.partnership-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 255, 0.05), transparent);
    animation: ctaShine 3s ease-in-out infinite;
}

@keyframes ctaShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.partnership-cta h3 {
    font-size: 36px;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.partnership-cta p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.slide-content {
    z-index: 10;
    max-width: 1200px;
    position: relative;
}

/* Floating Graphics */
.floating-graphic {
    position: absolute;
    z-index: 5;
    animation: floatGraphic 6s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes floatGraphic {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
}

.gear-icon {
    width: 80px;
    height: 80px;
    border: 4px solid #00f2ff;
    border-radius: 50%;
    position: relative;
    animation: rotateGear 10s linear infinite;
}

@keyframes rotateGear {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gear-icon::before,
.gear-icon::after {
    content: '';
    position: absolute;
    background: #00f2ff;
}

.gear-icon::before {
    width: 100%;
    height: 8px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}

.gear-icon::after {
    width: 8px;
    height: 100%;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
}

.circuit-line {
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00f2ff, transparent);
    box-shadow: 0 0 10px #00f2ff;
}

.code-bracket {
    font-size: 80px;
    color: #7b2ff7;
    font-weight: bold;
    text-shadow: 0 0 20px #7b2ff7;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hexagon {
    width: 100px;
    height: 57.735px;
    background: rgba(0, 242, 255, 0.2);
    position: relative;
    border-left: 2px solid #00f2ff;
    border-right: 2px solid #00f2ff;
}

.hexagon::before,
.hexagon::after {
    content: '';
    position: absolute;
    width: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
}

.hexagon::before {
    bottom: 100%;
    border-bottom: 28.8675px solid rgba(0, 242, 255, 0.2);
    border-top: 2px solid #00f2ff;
}

.hexagon::after {
    top: 100%;
    border-top: 28.8675px solid rgba(0, 242, 255, 0.2);
    border-bottom: 2px solid #00f2ff;
}

.robot-icon {
    width: 60px;
    height: 80px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.3), rgba(123, 47, 247, 0.3));
    border: 3px solid #00f2ff;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.robot-icon::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #00f2ff;
    border-radius: 50%;
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.robot-icon::after {
    content: '';
    width: 30px;
    height: 3px;
    background: #7b2ff7;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 -10px 0 #7b2ff7;
}

/* Positioning for each slide */
.slide-1 .gear-icon { top: 20%; left: 10%; }
.slide-1 .circuit-line { top: 70%; right: 15%; transform: rotate(-30deg); }
.slide-1 .code-bracket { top: 30%; right: 10%; }

.slide-2 .hexagon { top: 15%; right: 12%; }
.slide-2 .robot-icon { bottom: 25%; left: 8%; }
.slide-2 .circuit-line { top: 60%; left: 15%; transform: rotate(45deg); }

.slide-3 .gear-icon { bottom: 20%; right: 10%; }
.slide-3 .code-bracket { top: 25%; left: 8%; }
.slide-3 .hexagon { top: 65%; left: 12%; }

.slide-4 .robot-icon { top: 20%; right: 10%; }
.slide-4 .circuit-line { bottom: 30%; left: 10%; transform: rotate(-45deg); }
.slide-4 .hexagon { top: 60%; right: 15%; }

.slide h1 {
    font-size: 72px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff, #00f2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideUp 1s ease-out;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

.slide p {
    font-size: 24px;
    margin-bottom: 40px;
    color: #b0b0b0;
    animation: slideUp 1s ease-out 0.2s backwards;
}

.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 100;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.dot.active {
    background: #00f2ff;
    box-shadow: 0 0 20px #00f2ff;
    border-color: #00f2ff;
    transform: scale(1.2);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 100;
    pointer-events: none;
}

.arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 242, 255, 0.2);
    border: 2px solid #00f2ff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.arrow:hover {
    background: rgba(0, 242, 255, 0.4);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.arrow span {
    color: #00f2ff;
    font-size: 24px;
    font-weight: bold;
}

.cta-button {
    padding: 18px 40px;
    font-size: 18px;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    border: none;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    animation: slideUp 1s ease-out 0.4s backwards;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.5);
}

/* About Section */
.about {
    padding: 120px 5%;
    background: linear-gradient(180deg, transparent, rgba(123, 47, 247, 0.1));
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 242, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(123, 47, 247, 0.08) 0%, transparent 50%);
    animation: aboutGlow 8s ease-in-out infinite;
    z-index: 0;
}

@keyframes aboutGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.about::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 80px, rgba(0, 242, 255, 0.02) 80px, rgba(0, 242, 255, 0.02) 81px),
        repeating-linear-gradient(-45deg, transparent, transparent 80px, rgba(123, 47, 247, 0.02) 80px, rgba(123, 47, 247, 0.02) 81px);
    animation: aboutPattern 25s linear infinite;
    z-index: 0;
}

@keyframes aboutPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

.about > * {
    position: relative;
    z-index: 1;
}

.about-intro {
    max-width: 1000px;
    margin: 0 auto 60px;
    text-align: center;
    position: relative;
    padding: 50px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), rgba(123, 47, 247, 0.05));
    border-radius: 30px;
    border: 2px solid rgba(0, 242, 255, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.about-intro::before {
    content: '💡';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 60px;
    animation: bulbGlow 2s ease-in-out infinite;
}

@keyframes bulbGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 10px #ffed4e);
        transform: translateX(-50%) scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 30px #ffd700);
        transform: translateX(-50%) scale(1.1);
    }
}

.about-intro::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 255, 0.05), transparent);
    animation: introShine 3s ease-in-out infinite;
    pointer-events: none;
    border-radius: 30px;
}

@keyframes introShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.about-intro p {
    color: #d0d0d0;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: justify;
    position: relative;
}

.about-intro p:first-of-type::before {
    content: '🎓';
    position: absolute;
    left: -40px;
    font-size: 24px;
}

.about-intro p:nth-of-type(2)::before {
    content: '🌍';
    position: absolute;
    left: -40px;
    font-size: 24px;
}

.about-intro p:last-of-type::before {
    content: '🏆';
    position: absolute;
    left: -40px;
    font-size: 24px;
}

.about-intro strong {
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    position: relative;
    padding: 0 4px;
}

.about-intro strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #00f2ff, #7b2ff7);
    opacity: 0.5;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #00f2ff, #7b2ff7, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px #00f2ff;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.about-card:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.about-card::after {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.2), transparent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s;
}

.about-card:hover::after {
    opacity: 1;
    transform: scale(1.5);
}

.about-card:hover {
    transform: translateY(-10px);
    border-color: #00f2ff;
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.about-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #00f2ff;
    position: relative;
    padding-left: 40px;
}

.about-card:nth-child(1) h3::before {
    content: '🎯';
    position: absolute;
    left: 0;
    font-size: 32px;
    animation: iconBounce 2s ease-in-out infinite;
}

.about-card:nth-child(2) h3::before {
    content: '🔭';
    position: absolute;
    left: 0;
    font-size: 32px;
    animation: iconBounce 2s ease-in-out infinite 0.2s;
}

.about-card:nth-child(3) h3::before {
    content: '🚀';
    position: absolute;
    left: 0;
    font-size: 32px;
    animation: iconBounce 2s ease-in-out infinite 0.4s;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.about-card p {
    color: #b0b0b0;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-top: 80px;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(123, 47, 247, 0.08));
    border-radius: 30px;
    border: 2px solid rgba(0, 242, 255, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.about-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 255, 0.05), transparent);
    animation: statsShine 4s ease-in-out infinite;
}

@keyframes statsShine {
    0%, 100% { transform: translateX(-100%) translateY(-100%); }
    50% { transform: translateX(100%) translateY(100%); }
}

.about-stats::after {
    content: '📊';
    position: absolute;
    top: -20px;
    right: 30px;
    font-size: 50px;
    opacity: 0.3;
    animation: statsBounce 3s ease-in-out infinite;
}

@keyframes statsBounce {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(10deg); }
}

.about-stat-item {
    text-align: center;
    padding: 20px;
    transition: all 0.4s;
    position: relative;
    background: rgba(10, 10, 10, 0.3);
    border-radius: 15px;
    border: 1px solid rgba(0, 242, 255, 0.1);
}

.about-stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 15px;
    padding: 2px;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.about-stat-item:hover::before {
    opacity: 1;
}

.about-stat-item:hover {
    transform: translateY(-15px) scale(1.05);
    background: rgba(0, 242, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 242, 255, 0.3);
}

.about-stat-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: inline-block;
    animation: statFloat 3s ease-in-out infinite;
    position: relative;
}

@keyframes statFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.about-stat-item:hover .about-stat-icon {
    animation: statSpin 0.6s ease-in-out;
    filter: drop-shadow(0 0 20px #00f2ff);
}

@keyframes statSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.3); }
    100% { transform: rotate(360deg) scale(1); }
}

.about-stat-number {
    font-size: 48px;
    font-weight: bold;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
    position: relative;
}

.about-stat-item:hover .about-stat-number {
    background: linear-gradient(135deg, #7b2ff7, #00f2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-stat-label {
    font-size: 16px;
    color: #b0b0b0;
    font-weight: 500;
    transition: color 0.3s;
}

.about-stat-item:hover .about-stat-label {
    color: #00f2ff;
}

/* Services Section */
.services {
    padding: 120px 5%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    align-items: stretch;
}

.service-card:nth-child(4) {
    grid-column: 2/span 2;
}

.service-card:nth-child(5) {
    grid-column: 4/span 2;
}

.service-card {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(123, 47, 247, 0.1));
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 255, 0.3);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    grid-column: span 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.service-card:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(123, 47, 247, 0.4);
}

.service-icon {
    font-size: 64px;
    margin-bottom: 25px;
    display: inline-block;
    animation: serviceFloat 3s ease-in-out infinite;
}

@keyframes serviceFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(5deg); }
}

.service-card:hover .service-icon {
    animation: serviceRotate 0.6s ease-in-out;
}

@keyframes serviceRotate {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    background: linear-gradient(135deg, #00f2ff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card:hover h3 {
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
}

.service-card:hover p {
    color: #d0d0d0;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #b0b0b0;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
    transition: all 0.3s;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-card:hover .service-features li {
    color: #00f2ff;
    padding-left: 10px;
}

/* Our Team Section */
.leader-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
}

.leader-card {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(123, 47, 247, 0.08));
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 20px;
    overflow: hidden;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.leader-image-container {
    height: 350px;
    overflow: hidden;
}

.leader-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.leader-content h3 {
    font-size: 32px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.leader-badge {
    display: inline-block;
    padding: 6px 15px;
    border-radius: 20px;
    background: rgba(0, 242, 255, 0.2);
    color: #00f2ff;
    font-size: 15px;
    margin-bottom: 10px;
}

.leader-tagline {
    color: #00f2ff;
    margin-bottom: 20px;
}

.leader-bio {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.leader-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
}

.highlight-item {
    display: flex;
    gap: 10px;
    align-items: center;
}

.leader-highlights span {
    background: rgba(0, 242, 255, 0.1);
    padding: 5px 10px;
    border-radius: 10px;
    font-size: 12px;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 10, 20, 0.3);
}

@media (max-width: 768px) {
    .leader-row {
        grid-template-columns: 1fr;
    }

    .leader-image-container {
        height: 280px;
    }
}

.team-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, rgba(0, 242, 255, 0.05), rgba(123, 47, 247, 0.05));
    position: relative;
    overflow: hidden;
}

.team-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
    radial-gradient(circle at 25% 25%, rgba(0, 242, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(123, 47, 247, 0.05) 0%, transparent 50%);
    animation: teamGlow 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes teamGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.team-content {
    position: relative;
    z-index: 1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.team-card {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(123, 47, 247, 0.08));
    border: 2px solid rgba(0, 242, 255, 0.2);
    border-radius: 25px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
}

.team-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 25px;
    padding: 2px;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
}

.team-image-container {
    position: relative;
    width: 100%;
    height: 320px;
    overflow: hidden;
}

.team-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-image-container img {
    transform: scale(1.1);
}

.team-info {
    padding: 30px;
    text-align: center;
}

.team-info h3 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #00f2ff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-card:hover .team-info h3 {
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-role {
    font-size: 16px;
    color: #00f2ff;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-description {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 20px;
}

.team-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.2), rgba(123, 47, 247, 0.2));
    border: 1px solid rgba(0, 242, 255, 0.4);
    border-radius: 20px;
    font-size: 13px;
    color: #00f2ff;
    font-weight: 600;
    transition: all 0.3s;
}

.team-card:hover .team-badge {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.4), rgba(123, 47, 247, 0.4));
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.4);
}

.join-team {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(123, 47, 247, 0.1));
    border: 2px solid rgba(0, 242, 255, 0.3);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.join-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 255, 0.05), transparent);
    animation: joinShine 3s ease-in-out infinite;
}

@keyframes joinShine {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.join-team h3 {
    font-size: 36px;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.join-team p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

/* Stats Section */
.stats {
    padding: 80px 5%;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), rgba(123, 47, 247, 0.05));
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 56px;
    font-weight: bold;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    color: #b0b0b0;
}

/* Achievements Section */
.achievements {
    padding: 120px 5%;
    background: linear-gradient(180deg, rgba(123, 47, 247, 0.05), transparent);
    position: relative;
    overflow: hidden;
}

.achievements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(0, 242, 255, 0.03) 40px, rgba(0, 242, 255, 0.03) 41px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(123, 47, 247, 0.03) 40px, rgba(123, 47, 247, 0.03) 41px);
    animation: achievementPattern 30s linear infinite;
    z-index: 0;
}

@keyframes achievementPattern {
    0% { transform: translate(0, 0); }
    100% { transform: translate(40px, 40px); }
}

.achievements-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.achievement-card {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), rgba(123, 47, 247, 0.05));
    border: 1px solid rgba(0, 242, 255, 0.2);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transform-style: preserve-3d;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.achievement-card:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.achievement-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0, 242, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.achievement-card:hover::after {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: #00f2ff;
    box-shadow: 0 25px 70px rgba(0, 242, 255, 0.4), 0 0 40px rgba(123, 47, 247, 0.3);
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(123, 47, 247, 0.1));
}

.achievement-icon {
    font-size: 50px;
    min-width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.2), rgba(123, 47, 247, 0.2));
    border-radius: 15px;
    border: 2px solid rgba(0, 242, 255, 0.3);
    transition: all 0.4s;
    position: relative;
    animation: iconFloat 4s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 242, 255, 0.5);
    animation: none;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.4), rgba(123, 47, 247, 0.4));
}

.achievement-icon::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    border-radius: 15px;
    border: 2px solid rgba(0, 242, 255, 0.3);
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: scale(1.2);
        opacity: 0;
    }
}

.achievement-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.achievement-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #00f2ff, #fff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    transition: all 0.3s;
}

.achievement-card:hover .achievement-content h3 {
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transform: translateX(5px);
}

.achievement-content p {
    color: #b0b0b0;
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
    transition: color 0.3s;
}

.achievement-card:hover .achievement-content p {
    color: #d0d0d0;
}

.achievement-year {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.2), rgba(123, 47, 247, 0.2));
    border: 1px solid rgba(0, 242, 255, 0.3);
    border-radius: 20px;
    font-size: 13px;
    color: #00f2ff;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.achievement-year::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.achievement-card:hover .achievement-year {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.3), rgba(123, 47, 247, 0.3));
    box-shadow: 0 5px 15px rgba(0, 242, 255, 0.3);
    transform: translateX(5px);
}

.achievement-card:hover .achievement-year::before {
    left: 100%;
}

/* Featured Achievement Highlight */
.featured-achievement {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 242, 255, 0.1), rgba(123, 47, 247, 0.1));
    border: 2px solid rgba(255, 215, 0, 0.5);
    position: relative;
}

.featured-achievement::after {
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 215, 0, 0.15), transparent 50%);
}

.featured-achievement:hover {
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 25px 70px rgba(255, 215, 0, 0.4), 0 0 60px rgba(0, 242, 255, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(0, 242, 255, 0.15), rgba(123, 47, 247, 0.15));
}

.featured-achievement .achievement-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
    border-color: rgba(255, 215, 0, 0.5);
    font-size: 55px;
    animation: featuredPulse 2s ease-in-out infinite;
}

@keyframes featuredPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
    }
}

.featured-achievement:hover .achievement-icon {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.5), rgba(255, 165, 0, 0.5));
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.7);
}

.featured-achievement .achievement-content h3 {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 26px;
}

.featured-achievement:hover .achievement-content h3 {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.featured-achievement .achievement-year {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.3), rgba(255, 165, 0, 0.3));
    border-color: rgba(255, 215, 0, 0.5);
    color: #ffd700;
    font-weight: 600;
}

.featured-achievement:hover .achievement-year {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 165, 0, 0.4));
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.5);
}

/* Achievement particles */
.achievement-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #00f2ff;
    border-radius: 50%;
    opacity: 0;
    animation: achievementParticle 3s ease-in-out infinite;
    box-shadow: 0 0 8px #00f2ff;
    pointer-events: none;
}

@keyframes achievementParticle {
    0% { 
        transform: translate(0, 0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% { 
        transform: translate(var(--tx), var(--ty)) scale(1);
        opacity: 0;
    }
}

/* Location Section */
.location-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, rgba(0, 242, 255, 0.05), rgba(123, 47, 247, 0.05));
    position: relative;
    overflow: hidden;
}

.location-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 30% 50%, rgba(0, 242, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(123, 47, 247, 0.05) 0%, transparent 50%);
    animation: locationGlow 10s ease-in-out infinite;
    z-index: 0;
}

@keyframes locationGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.location-content {
    position: relative;
    z-index: 1;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.location-card {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(123, 47, 247, 0.08));
    border: 2px solid rgba(0, 242, 255, 0.2);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.location-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.location-card:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.location-card:hover {
    transform: translateY(-10px);
    border-color: #00f2ff;
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.3);
}

.location-icon {
    font-size: 40px;
    margin-bottom: 15px;
    display: inline-block;
    animation: locationFloat 3s ease-in-out infinite;
}

@keyframes locationFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.location-card h3 {
    font-size: 24px;
    color: #00f2ff;
    margin-bottom: 15px;
    font-weight: 600;
}

.location-card p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 8px;
}

.location-card strong {
    color: #fff;
}

.map-container {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid rgba(0, 242, 255, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s ease;
}

.map-container:hover {
    border-color: #00f2ff;
    box-shadow: 0 30px 80px rgba(0, 242, 255, 0.4);
    transform: scale(1.02);
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 10;
}

.map-marker {
    font-size: 60px;
    animation: markerBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
}

@keyframes markerBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.map-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid #00f2ff;
    border-radius: 50%;
    animation: mapPulse 2s ease-in-out infinite;
}

@keyframes mapPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(3);
        opacity: 0;
    }
}

.service-area {
    text-align: center;
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.05), rgba(123, 47, 247, 0.05));
    border-radius: 30px;
    border: 2px solid rgba(0, 242, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-area h3 {
    font-size: 32px;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    align-items: center;
}

.service-tag {
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.2), rgba(123, 47, 247, 0.2));
    border: 1px solid rgba(0, 242, 255, 0.4);
    border-radius: 25px;
    font-size: 16px;
    color: #00f2ff;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.service-tag:hover {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.3), rgba(123, 47, 247, 0.3));
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.4);
}

.service-tag:hover::before {
    left: 100%;
}

/* Client Message Section */
.contact {
    padding: 120px 5%;
    background: linear-gradient(180deg, rgba(0, 242, 255, 0.05), rgba(123, 47, 247, 0.05));
    position: relative;
}

.contact-form-container {
    display: flex;
    justify-content: center;
}

.contact-form-section {
    width: 100%;
    max-width: 900px;
    padding: 40px;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(123, 47, 247, 0.08));
    border: 1px solid rgba(0, 242, 255, 0.3);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.1);
    transition: 0.4s;
}

.contact-form-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 242, 255, 0.25);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #00f2ff;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 242, 255, 0.2);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 14px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00f2ff;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
    background: rgba(0, 0, 0, 0.6);
}

::placeholder {
    color: #888;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.5);
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        padding: 25px;
    }
}

/* Client Feedback Section */
.feedback-section {
    padding: 120px 5%;
    background: linear-gradient(180deg, rgba(123, 47, 247, 0.05), rgba(0, 242, 255, 0.05));
    position: relative;
    overflow: hidden;
}

.feedback-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 242, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(123, 47, 247, 0.08) 0%, transparent 50%);
    animation: feedbackGlow 12s ease-in-out infinite;
    z-index: 0;
}

@keyframes feedbackGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.feedback-content {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.08), rgba(123, 47, 247, 0.08));
    border: 2px solid rgba(0, 242, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s;
}

.testimonial-card:hover::before {
    transform: rotate(45deg) translate(100%, 100%);
}

.testimonial-card:hover {
    transform: translateY(-15px);
    border-color: #00f2ff;
    box-shadow: 0 25px 70px rgba(0, 242, 255, 0.4);
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.12), rgba(123, 47, 247, 0.12));
}

.featured-testimonial {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(0, 242, 255, 0.08), rgba(123, 47, 247, 0.08));
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.featured-testimonial:hover {
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 30px 80px rgba(255, 215, 0, 0.4), 0 0 60px rgba(0, 242, 255, 0.3);
}

.quote-icon {
    font-size: 80px;
    color: rgba(0, 242, 255, 0.3);
    line-height: 0.5;
    margin-bottom: 20px;
    font-family: Georgia, serif;
    position: relative;
    z-index: 1;
}

.featured-testimonial .quote-icon {
    color: rgba(255, 215, 0, 0.4);
}

.stars {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    color: #d0d0d0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    position: relative;
    z-index: 1;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(0, 242, 255, 0.4);
    box-shadow: 0 5px 20px rgba(0, 242, 255, 0.3);
    transition: all 0.4s;
}

.testimonial-card:hover .author-image {
    border-color: #00f2ff;
    box-shadow: 0 8px 30px rgba(0, 242, 255, 0.5);
    transform: scale(1.1);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-details h4 {
    color: #00f2ff;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.author-details p {
    color: #b0b0b0;
    font-size: 14px;
}

.feedback-cta {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(123, 47, 247, 0.1));
    border: 2px solid rgba(0, 242, 255, 0.3);
    border-radius: 30px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feedback-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(0, 242, 255, 0.05), transparent);
    animation: ctaShine 3s ease-in-out infinite;
}

.feedback-cta h3 {
    font-size: 36px;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

.feedback-cta p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 30px;
}

/* Gallery Section */
.gallery-section {
    padding: 110px 5%;
    background: linear-gradient(180deg, rgba(123, 47, 247, 0.05), rgba(0, 242, 255, 0.05));
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 50px, rgba(0, 242, 255, 0.02) 50px, rgba(0, 242, 255, 0.02) 51px),
        repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(123, 47, 247, 0.02) 50px, rgba(123, 47, 247, 0.02) 51px);
    animation: galleryGrid 20s linear infinite;
    z-index: 0;
}

@keyframes galleryGrid {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.gallery-content {
    position: relative;
    z-index: 1;
}

.gallery-filters {
    display: flex;
    justify-content: justify; 
    align-items: justify;
    gap: 15px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), rgba(123, 47, 247, 0.1));
    border: 2px solid rgba(0, 242, 255, 0.3);
    border-radius: 25px;
    color: #00f2ff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.3), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before,
.filter-btn.active::before {
    left: 100%;
}

.filter-btn:hover,
.filter-btn.active {
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.3), rgba(123, 47, 247, 0.3));
    border-color: #00f2ff;
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.4);
    transform: translateY(-3px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.gallery-item {
    display: none;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.gallery-item.hidden {
    display: none;
}

.gallery-image {
    position: relative;
    width: 100%;
    padding-top: 75%;
    overflow: hidden;
    background: #000;
}

.gallery-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.15) rotate(2deg);
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 3px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, #00f2ff, #7b2ff7) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 5;
}

.gallery-item:hover::before {
    opacity: 1;
}

/* Footer */
.footer {
    padding: 20px 5%;
    text-align: center;
    border-top: 1px solid rgba(0, 242, 255, 0.2);
    background: rgba(10, 10, 10, 0.8);
}

footer p {
    color: #b0b0b0;
}

/* Responsive */
@media (max-width: 1024px) {
    .location-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 450px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.3s;
        border-left: 1px solid rgba(0, 242, 255, 0.2);
    }

    .nav-links.active {
        right: 0;
    }

    .menu-toggle {
        display: flex;
    }

    .slide h1 {
        font-size: 36px;
    }

    .slide p {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .slider-arrows {
        padding: 0 20px;
    }

    .arrow {
        width: 40px;
        height: 40px;
    }

    .arrow span {
        font-size: 18px;
    }
}
