* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --deep-blue: #002e4f;
    --bold-blue: #0056b3;
    --light-blue: #007bff;
    --navy: #001f3f;
    --dark-gray: #333;
    --gradient-blue: linear-gradient(135deg, var(--light-blue), var(--deep-blue));
    --whatsapp-green: #25D366;
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark-gray);
    overflow-x: hidden;
    background-color: #f9f9f9;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 25vw;
    width: auto;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    mix-blend-mode: multiply;
}

.watermark img {
    height: 100%;
    width: auto;
    display: block;
}

.floating-contact {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-contact .contact-btn {
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-contact .contact-btn:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.email-btn {
    background: var(--gradient-blue);
}

.whatsapp-btn {
    background: var(--whatsapp-green);
}

.contact-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.main-nav {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 1200px);
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    z-index: 900;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo img {
    height: 120px;
    width: auto;
}

.nav-logo span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

.nav-contact {
    display: none;
}

.menu-toggle {
    display: none;
}

.nav-container {
  position: relative;
  z-index: 1000;
}

/* Toggle button */
#navToggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-menu {
  display: flex;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 25px;
  background-color: #fcfcfc;
  color: #333;
  font-weight: 500;
  text-decoration: none;
  border: 2px solid #ccc;
  transition: background-color 0.3s ease, transform 0.2s ease, border-color 0.3s ease;
  cursor: pointer;
}

@media (max-width: 768px) {
  #navToggle {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 1100;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
  }
}

.nav-link:hover,
.nav-link.active {
    background-color: #b8c1e4;
    border-color: #999;
    color: #000;
    transform: translateY(-2px);
}

.nav-highlight {
    display: none;
}

.main-nav.glass-effect {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.page-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.page-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.video-hero {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 46, 79, 0);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
    max-width: 900px;
}

.hero-title-container {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--gradient-blue);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.brand-animation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.brand-animation span {
    font-size: 4rem;
    padding: 0 5px;
    text-transform: uppercase;
    color: #fff;
    animation: zoomup 2s linear infinite;
    animation-delay: calc(200ms * var(--i));
    text-shadow: 0 0 10px var(--light-blue), 0 0 20px var(--light-blue), 0 0 30px var(--light-blue);
}

@keyframes zoomup {

    0%,
    100% {
        color: var(--light-blue);
        filter: blur(1px);
        text-shadow: 0 0 10px var(--light-blue), 0 0 20px var(--light-blue), 0 0 30px var(--light-blue),
            0 0 40px var(--light-blue), 0 0 60px var(--light-blue), 0 0 80px var(--light-blue), 0 0 100px var(--light-blue),
            0 0 120px var(--light-blue);
    }

    5%,
    95% {
        filter: blur(0);
        color: white;
        text-shadow: 0 0 10px var(--light-blue), 0 0 20px var(--light-blue), 0 0 30px var(--light-blue);
    }
}

.animated-text-container {
    position: relative;
    height: 180px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.animated-text {
    font-size: 3.5rem;
    font-weight: 800;
    text-transform: uppercase;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    position: absolute;
    width: 100%;
    text-align: center;
    opacity: 0;
    animation: zoomIn 25s ease-in-out infinite;
    line-height: 1.2;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 1rem;
    box-sizing: border-box;
}

@keyframes zoomIn {
    0%, 100% {
        opacity: 0;
        transform: scale(0.8) translateY(-50%);
    }

    4%, 20% {
        opacity: 1;
        transform: scale(1) translateY(-50%);
    }

    24%, 100% {
        opacity: 0;
        transform: scale(1.2) translateY(-50%);
    }
}

.text-1 {
    animation-delay: 0s;
}

.text-2 {
    animation-delay: 5s;
}

.text-3 {
    animation-delay: 10s;
}

.text-4 {
    animation-delay: 15s;
}

.text-5 {
    animation-delay: 20s;
}

.overview-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.overview-content {
    grid-column: 1 / 4;
    text-align: center;
    margin-bottom: 50px;
}

.overview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--deep-blue);
}

.overview-content p {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.1rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.overview-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    grid-column: 1 / 4;
    position: relative;
}

.overview-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 300px;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.overview-image:hover img {
    transform: scale(1.05);
}

.experience-counter {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.counter-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-blue);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.counter-circle::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--light-blue);
    opacity: 0.5;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }

    100% {
        transform: scale(0.95);
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .overview-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .overview-content {
        grid-column: auto; /* reset */
        margin-bottom: 30px;
        text-align: center;
        width: 100%;
    }

    .overview-images {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        gap: 20px;
    }

    .overview-image {
        width: 100%;
        max-width: 350px; /* keeps images from being too wide */
        height: 220px; /* smaller height for mobile */
    }

    .experience-counter {
        position: relative; /* remove absolute positioning */
        top: auto;
        left: auto;
        transform: none;
        margin: 30px 0 0 0;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .counter-circle {
        width: 150px;  /* smaller circle for mobile */
        height: 150px;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .counter-text {
        font-size: 0.9rem;
    }
}


.services-carousel-section {
    padding: 100px 5%;
    background: linear-gradient(to bottom, #f9f9f9, #e6f0ff);
    position: relative;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--deep-blue);
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-blue);
    border-radius: 2px;
}

.services-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 30px;
    padding: 20px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-carousel::-webkit-scrollbar {
    display: none;
}

.service-card {
    flex: 0 0 300px;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--deep-blue);
}

.service-desc {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-link {
    display: inline-block;
    color: var(--bold-blue);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    align-self: flex-start;
    margin-top: auto;
}

.service-link:hover {
    color: var(--deep-blue);
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.carousel-btn:hover {
    transform: scale(1.1);
}

.text-animation-section {
    padding: 80px 5%;
    background: var(--navy);
    text-align: center;
}

.text-animation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.text-animation span {
    font-size: 60px;
    padding: 0 10px;
    text-transform: uppercase;
    color: #fff;
    animation: zoomup 2s linear infinite;
    animation-delay: calc(200ms * var(--i));
}

.stats-section {
    background: var(--gradient-blue);
    color: white;
    text-align: center;
    padding: 80px 5%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    padding: 30px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
}

.about-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--deep-blue);
}

.about-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-media {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  height: clamp(700px, 80vh, 1200px);
}


.about-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-media::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-blue);
  opacity: 0.2;
}

.services-page-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-features {
    margin: 15px 0;
    padding-left: 20px;
}

.service-features li {
    margin-bottom: 8px;
    color: var(--bold-blue);
}

.resources-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.resource-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 极 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-content {
    padding: 25px;
}

.resource-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--deep-blue);
}

.resource-desc {
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.contact-section {
    padding: 100px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    background: var(--gradient-blue);
    color: white;
    padding: 40px;
    border-radius: 10px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
}

.contact-details i {
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 极.1);
    border: 1px solid var(--glass-border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark-gray);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Raleway', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--bold-blue);
    outline: none;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    padding: 12px 30px;
    background: var(--gradient-blue);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.map-container {
    margin-top: 50px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 400px;
    grid-column: 1 / -1;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer {
    background: rgba(26, 26, 46, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    padding: 80px 5% 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 50px;
}

.footer-col h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--light-blue);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 极.3s ease;
}

.footer-links a:hover {
    color: var(--light-blue);
}

.contact-info-list {
    list-style: none;
}

.contact-info-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.contact-info-list i {
    margin-right: 15px;
    color: var(--light-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.9rem;
    color: #ccc;
}

.developer {
    margin-top: 10px;
}

.developer a {
    color: var(--light-blue);
    text-decoration: none;
}

.developer a:hover {
    text-decoration: underline;
}


.service-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .overview-grid {
        grid-template-columns: 1fr;
    }

    .overview-images {
        grid-column: 1;
    }

}

@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .brand-animation span {
        font-size: 3rem;
    }

    .animated-text {
        font-size: 2.8rem;
    }

    .nav-menu {
        gap: 20px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .brand-animation span {
        font-size: 2.2rem;
    }

    .animated-text {
        font-size: 2.2rem;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--deep-blue);
        margin: 2px 0;
        transition: all 0.3s ease;
    }

    .nav-contact {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        gap: 30px;
    }

    .nav-menu.active {
        left: 0;
    }

    .services-carousel-section {
        padding: 80px 5%;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-btn {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }


    .text-animation span {
        font-size: 40px;
    }

    .overview-images {
        grid-template-columns: 1fr;
    }

    .main-nav {
        top: 10px;
        width: 95%;
        padding: 12px 20px;
    }

    .nav-logo img {
        height: 35px;
    }

    .nav-logo span {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .brand-animation span {
        font-size: 1.8rem;
        padding: 0 2px;
    }

    .animated-text {
        font-size: 1.8rem;
    }

    .video-hero {
        height: 80vh;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-info {
        padding: 20px;
    }

    .text-animation span {
        font-size: 30px;
    }

    .counter-circle {
        width: 150px;
        height: 150px;
    }

    .counter-number {
        font-size: 2.5rem;
    }

    .main-nav {
        top: 5px;
        width: 95%;
        padding: 10px 15px;
    }

    .nav-logo img {
        height: 30px;
    }

    .nav-logo span {
        font-size: 18px;
    }
}

.animated-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: clamp(1.5rem, 6vw, 4rem); /* Scales better on mobile */
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  padding: 1.5rem 1rem;
  text-transform: uppercase;
  background: transparent;

 
  text-shadow:
    0 0 4px rgba(0, 0, 0, 0.6),
    0 2px 6px rgba(0, 0, 0, 0.4);

  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.3);
}

/* Responsive animation spans */
.animated-title span {
  display: inline-block;
  animation: fadeInUp 0.6s ease forwards;
  animation-delay: calc(var(--i) * 0.1s);
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 480px) {
  .animated-title {
    gap: 0.3rem;
    padding: 1rem 0.5rem;
    font-size: clamp(1.2rem, 7vw, 2.5rem);
  }
}
