.app-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.app-btn {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1rem 1.75rem;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    min-width: 180px;
}

.app-btn:hover {
    background: #F9622c;
    transform: translateY(-2px);
}

.app-btn i {
    font-size: 1.8rem;
}

.app-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.app-btn-text small {
    font-size: 0.85rem;
    opacity: 0.8;
    margin-bottom: 3px;
}

.app-btn-text strong {
    font-size: 1.1rem;
    font-weight: 600;
}
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #333;
        }

        /* Header Styles */
        header {
            background: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.4rem 1rem;
            background: white;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

        .logo-section img {
            height: 45px;
            width: auto;
        }

        .logo-section a {
            font-weight: 700;
            font-size: 1rem;
            text-decoration: none;
            color: inherit;
        }

        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            gap: 1.5rem;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: #4B5563;
            font-weight: 600;
            text-decoration: none;
        }

        .flag-container {
            display: flex;
            gap: 0.5rem;
        }

        .flag-badge {
            display: flex;
            align-items: center;
            gap: 0.3rem;
            padding: 0.25rem 0.5rem;
            border-radius: 9999px;
            font-size: 0.75rem;
            font-weight: 600;
            background: #FFF7ED;
            color: #F9622c;
            border: 2px solid #F9622c;
        }

        .flag-badge img {
            width: 16px;
            height: auto;
            border-radius: 3px;
        }

        .download-btn {
            padding: 0.5rem 1rem;
            background-color: #F9622c;
            border-radius: 8px;
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }

        /* Hero Section with Video Background */
       .xt-hero {
  position: relative;
  width: 100%;
  height: 86vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image Slider */
.hero-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.hero-slide {
  position: absolute;
  width: 100%; height: 100%;
  opacity: 0;
  animation: slideShow 25s infinite;
}

.hero-slide img.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;   /* fills screen completely */
  object-position: center;
  animation: zoomRotate 12s ease-in-out infinite;
  transition: transform 1.5s ease;
}

/* Slide timing */
.slide1 { animation-delay: 0s; }
.slide2 { animation-delay: 5s; }
.slide3 { animation-delay: 10s; }
.slide4 { animation-delay: 15s; }
.slide5 { animation-delay: 20s; }

/* Overlay */
.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(
    rgba(233,114,46,0.5),
    rgba(255,165,0,0.3),
    rgba(255,200,100,0.4)
  );
  z-index: 2;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 15px;
}

.hero-content h1 {
  font-size: 3.5rem; /* smaller headline */
  margin-bottom: 20px;
  animation: fadeDown 2s ease forwards;
}

.hero-content p {
  margin-bottom: 50px; /* spacing from buttons */
  font-size: 1.5rem;
  animation: fadeUp 3s ease forwards;
}

.hero-content h1,
.hero-content p {
  background: rgba(255,140,0,0.4);
  padding: 10px 20px;
  border-radius: 8px;
  backdrop-filter: blur(3px);
  display: inline-block;
}

.animate-btns {
  animation: fadeUp 3.5s ease forwards;
}

/* Registration Cards Styles */
.registration-cards .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 2rem;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.registration-cards .card {
    flex: 0 1 calc(50% - 1rem);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.2),
        inset 0 0 80px rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.registration-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px 0 rgba(31, 38, 135, 0.25),
        inset 0 0 80px rgba(255, 255, 255, 0.2);
}

.registration-cards button {
    background-color: #000;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.registration-cards button:hover {
    background: #F9622c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 98, 44, 0.3);
}

@media (max-width: 768px) {
    .registration-cards .container {
        flex-direction: column;
        align-items: center;
    }
    
    .registration-cards .card {
        flex: 0 1 100%;
        width: 100%;
        max-width: 400px;
    }
}

/* Animations */
@keyframes slideShow {
  0% { opacity: 0; }
  5% { opacity: 1; }
  30% { opacity: 1; }
  33% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes zoomRotate {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.05) rotate(0.5deg); }
  50% { transform: scale(1.08) rotate(-0.5deg); }
  75% { transform: scale(1.05) rotate(0.5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.team-section {
    background-color: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 5px solid rgba(44, 123, 229, 0.1);
    transition: var(--transition);
}

.team-card:hover .team-photo {
    border-color: var(--primary-color);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    color: var(--dark-color);
    margin-bottom: 5px;
}

.team-card p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: rgba(44, 123, 229, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}