/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #121418;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease-in-out;
}

.loading-screen.swipe-out {
    transform: translateY(-100%);
}

.loading-text {
    font-size: 3vw;
    color: #fff;
    text-align: center;
    position: absolute;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpIn 0.8s ease-out forwards;
    top: 40%;
}

@media (max-width: 768px) {
    .loading-text {
        font-size: 10vw;
    }
}

.loading-text:nth-child(1) {
    animation-delay: 0.3s;
}

.loading-text:nth-child(2) {
    animation-delay: 1s;
}

.loading-text:nth-child(3) {
    animation-delay: 1.7s;
}

.loading-bar-container {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar {
    height: 100%;
    background: linear-gradient(90deg, #ff8c00, #ffa500);
    border-radius: 2px;
    width: 0%;
    animation: fillBar 2.8s ease-in-out forwards;
}

@keyframes fillBar {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

.loading-text:nth-child(4) {
    animation-delay: 2s;
}

@keyframes fadeUpIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    20%, 80% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-30px);
    }
}


/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    backdrop-filter: none;
}

.nav-container {
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    flex: 0 0 auto;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    background-color: #fff;
    border-radius: 50%;
}


.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
    user-select: none;
}

.nav-logo-line1 {
    color: #d9981e;
    font-weight: 700;
    font-size: 1.2rem;
}

.nav-logo-line2 {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2rem;
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: rgba(30, 41, 59, 0.98);
    backdrop-filter: blur(20px);
    padding: 6rem 3rem 3rem 3rem;
    flex-direction: column;
    align-items: flex-start;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu.active {
    display: flex;
    right: 0;
}

.nav-menu a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    padding: 1rem 0;
    position: relative;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.4s ease-out forwards;
}

.nav-menu.active a:nth-child(1) { animation-delay: 0.1s; }
.nav-menu.active a:nth-child(2) { animation-delay: 0.2s; }
.nav-menu.active a:nth-child(3) { animation-delay: 0.3s; }
.nav-menu.active a:nth-child(4) { animation-delay: 0.4s; }
.nav-menu.active a:nth-child(5) { animation-delay: 0.5s; }

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff8c00, #ffa500);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: #ff8c00;
    transform: translateX(10px);
}

.nav-menu a:hover::before {
    width: 100%;
}

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    flex: 0 0 auto;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/landing.jpg') center center/cover no-repeat;
    filter: blur(20px);
    transform: scale(1.1);
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(30, 41, 59, 0.85) 0%, rgba(30, 41, 59, 0.3) 60%, rgba(30, 41, 59, 0) 100%);
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/landing.jpg') center center/cover no-repeat;
    transform: scale(1);
    transition: transform 0.1s ease-out;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
}

.gradient-text {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    -webkit-background-clip: text;
    -moz-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    -moz-text-fill-color: transparent;
    animation: pulseGlow 2s ease-in-out infinite;
    -webkit-animation: pulseGlow 2s ease-in-out infinite;
    -moz-animation: pulseGlow 2s ease-in-out infinite;
    position: relative;
    will-change: text-shadow, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    /* Ensure gradient text doesn't break on mobile */
    display: inline-block;
    word-wrap: normal;
    white-space: nowrap;
    /* Prevent any text modifications */
    text-transform: none;
    font-variant: normal;
    font-feature-settings: normal;
}

.gradient-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 140, 0, 0.3), rgba(255, 165, 0, 0.3));
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    filter: blur(15px);
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
    -webkit-animation: pulseGlow 2s ease-in-out infinite;
    -moz-animation: pulseGlow 2s ease-in-out infinite;
    will-change: opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
}

@keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
        opacity: 1;
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 140, 0, 0.6);
        opacity: 1.2;
    }
}

@-webkit-keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
        opacity: 1;
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 140, 0, 0.6);
        opacity: 1.2;
    }
}

@-moz-keyframes pulseGlow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(255, 140, 0, 0.3);
        opacity: 1;
    }
    50% {
        text-shadow: 0 0 40px rgba(255, 140, 0, 0.6);
        opacity: 1.2;
    }
}




.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(45deg, #ff8c00, #ffa500);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 140, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
}

.hero-graphic {
    position: relative;
    width: 100%;
    height: 100%;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

.floating-card i {
    font-size: 2rem;
    color: #ff8c00;
    margin-bottom: 0.5rem;
    display: block;
}

.floating-card span {
    font-weight: 600;
    font-size: 0.9rem;
}

.card-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 30%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    animation: fadeInScroll 1s ease-out 1.5s;
}

@keyframes fadeInScroll {
    to {
        opacity: 1;
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}



/* Services Section */
.services {
    padding: 6rem 0;
    background: #f8fafc;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.03) 100%),
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 25px 25px, 25px 25px;
    pointer-events: none;
    z-index: 1;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-features {
    display: grid;
    gap: 1rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature span {
    font-weight: 500;
    color: #374151;
}

.about-mission {
    display: flex;
    justify-content: center;
}

.mission-card {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border-radius: 20px;
    color: white;
    transition: all 0.3s ease;
    max-width: 500px;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.mission-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.mission-card p {
    font-weight: 400;
    opacity: 0.95;
    line-height: 1.6;
}

/* Logo Section */
.logos {
    padding: 6rem 0 8rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.logos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at center, transparent 30%, rgba(0, 0, 0, 0.01) 50%, rgba(0, 0, 0, 0.03) 100%),
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 25px 25px, 25px 25px;
    pointer-events: none;
    z-index: 1;
}

/* Logo Section inside Contact */
.contact .logos-container {
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.logos-container {
    overflow: hidden;
    position: relative;
    margin: 0 -20px;
    padding: 0 20px 40px 20px;
    z-index: 2;
}

.logos-track {
    display: flex;
    gap: 2rem;
    animation: scrollLogos var(--logo-animation-duration, 60s) linear infinite;
    width: max-content;
    padding: 20px 0;
}



@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--logo-scroll-distance, -50%));
    }
}

.logo-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    min-width: 200px;
    max-width: 250px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
}

.logo-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
}

.logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.logo-card:hover .logo-img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0 8rem 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
    pointer-events: none;
    z-index: 1;
}

.testimonials-container {
    overflow: hidden;
    position: relative;
    margin: 0 -20px;
    padding: 0 20px 40px 20px;
    z-index: 2;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    animation: scrollTestimonials var(--testimonial-animation-duration, 60s) linear infinite;
    width: max-content;
    padding: 20px 0;
}



@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(var(--testimonial-scroll-distance, -50%));
    }
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.06), 0 0 0 1px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    margin-bottom: 20px;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.author-info p {
    color: #64748b;
    font-size: 0.85rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(248, 250, 252, 1), rgba(248, 250, 252, 0));
    pointer-events: none;
    z-index: 1;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}


.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-details {
    display: grid;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #ff8c00, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-item span,
.contact-item .contact-link {
    color: #374151;
    font-weight: 500;
}

.contact-item .contact-link {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item .contact-link:hover {
    color: #ff8c00;
}



/* Footer */
.footer {
    background: #1e293b;
    color: white;
    padding: 4rem 0 2rem;
    padding-bottom: 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #f8fafc;
}

.footer-section p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a i {
    font-size: 0.9rem;
    width: 16px;
}

.footer-section ul li a:hover {
    color: #ff8c00;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff8c00;
    color: #333;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #cbd5e1;
}

/* Responsive Design */
@media (max-width: 768px) {

    div.contact-info  {
        padding: 10px;
    }
    
    .nav-brand span {
        font-size: 1rem;
    }
    
    .nav-logo-img {
        height: 35px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        transform: none;
        padding: 0 20px 100px 20px;
        justify-content: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    /* Ensure gradient text is properly displayed on mobile */
    .gradient-text {
        display: inline-block;
        word-wrap: normal;
        white-space: nowrap;
    }
    
    .hero-visual {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-mission {
        justify-content: flex-start;
    }
    
    .mission-card {
        text-align: left;
        margin: 0;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .logos-container {
        margin: 0 -10px;
        padding: 0 10px 30px 10px;
    }
    
    .logos {
        padding: 6rem 0 6rem 0;
    }
    
    .logos::before {
        height: 60px;
    }
    
    .logo-card {
        min-width: 180px;
        max-width: 220px;
        padding: 1.25rem;
        height: 100px;
    }
    
    .logo-img {
        max-height: 60px;
    }
    
    .testimonials-container {
        margin: 0 -10px;
        padding: 0 10px 30px 10px;
    }
    
    .testimonials {
        padding: 6rem 0 6rem 0;
    }
    
    .testimonials::before {
        height: 60px;
    }
    
    .testimonial-card {
        min-width: 260px;
        max-width: 300px;
        padding: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .testimonials-track {
        animation-duration: 60s;
    }
}

@media (max-width: 500px) {

    .dissapearMobile {
        display: none;
    }

    .hero-container {
        width: 90vw;
    }

    .hero-content {
        width: 90vw;
    }

    .gradient-text{
        font-size: 7vw;
    }

}

@media (max-width: 480px) {

    .nav-brand span {
        font-size: 0.9rem;
    }
    
    .nav-logo-img {
        height: 30px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
  
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .logo-card {
        min-width: 160px;
        max-width: 200px;
        padding: 1rem;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .logo-img {
        max-height: 50px;
    }
    
    .logos-track {
        animation-duration: 60s;
    }
    
    .testimonial-card {
        min-width: 240px;
        max-width: 280px;
        padding: 1.25rem;
        margin-bottom: 15px;
    }
    
    .testimonials-track {
        animation-duration: 60s;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

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

.service-card,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* CTA Buttons */
.services-cta,
.testimonials-cta {
    text-align: center;
    margin-top: 3rem;
}

.services-cta .btn,
.about-cta .btn,
.testimonials-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.contact-cta {
    margin-top: 1rem;
    text-align: center;
    justify-self: baseline;
}

.contact-cta .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.about-cta {
    margin-top: 0;
    justify-self: baseline;
}
