* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
     font-family: "Lucida Console", monospace;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
    line-height: 1.6;
}

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

/* Enhanced Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000000 0%, #111111 50%, #000000 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
}

.preloader-content {
    text-align: center;
    transform: translateY(0);
    transition: transform 0.8s ease;
}

.animated-logo {
    animation: logoFloat 3s infinite ease-in-out, logoGlow 2s infinite alternate;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(180deg); }
}

@keyframes logoGlow {
    0% { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3)); }
    100% { filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.6)); }
}

.loading-text {
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 20px;
    animation: textPulse 2s infinite ease-in-out;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    border-radius: 1px;
    overflow: hidden;
}

.loading-progress {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #ffffff, transparent);
    animation: loadingProgress 2.5s ease-in-out forwards;
}

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

/* Enhanced Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1002;
}

.logo {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Navigation Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1002;
    padding: 10px;
    transition: all 0.3s ease;
}

.nav-toggle:hover {
    transform: scale(1.1);
}

.toggle-line {
    width: 30px;
    height: 3px;
    background: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border-radius: 2px;
}

.nav-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
    background: #ffffff;
}

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

.nav-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
    background: #ffffff;
}

/* Enhanced Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 1001;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
}

.nav-content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 1002;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    animation: navLinkSlide 0.6s ease forwards;
}

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

@keyframes navLinkSlide {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.nav-link:hover {
    transform: scale(1.1);
}

.nav-link.active {
    background: linear-gradient(45deg, #ffffff, #cccccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    z-index: 1;
    position: relative;
}

.hero-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 3px;
    line-height: 1.2;
    margin-bottom: 30px;
}

.hero-line {
    display: block;
    margin-bottom: 20px;
    overflow: hidden;
}

.animate-text .word {
    display: inline-block;
    margin-right: 15px;
    opacity: 0;
    transform: translateY(100px) rotateX(90deg);
    animation: wordReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.animate-text .word:nth-child(1) { animation-delay: 0.5s; }
.animate-text .word:nth-child(2) { animation-delay: 0.7s; }
.animate-text .word:nth-child(3) { animation-delay: 0.9s; }
.animate-text .word:nth-child(4) { animation-delay: 1.1s; }

.hero-line:nth-child(2) .word:nth-child(1) { animation-delay: 1.3s; }
.hero-line:nth-child(2) .word:nth-child(2) { animation-delay: 1.5s; }
.hero-line:nth-child(2) .word:nth-child(3) { animation-delay: 1.7s; }

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

/* Hero Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 6s infinite linear;
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle:nth-child(2) {
    left: 30%;
    animation-delay: 2s;
    animation-duration: 6s;
}

.particle:nth-child(3) {
    left: 50%;
    animation-delay: 4s;
    animation-duration: 10s;
}

.particle:nth-child(4) {
    left: 70%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.particle:nth-child(5) {
    left: 90%;
    animation-delay: 3s;
    animation-duration: 9s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) scale(0);
        opacity: 0;
    }
}

/* Enhanced Sections */
.section-animate {
    padding: 30px 0;
    position: relative;
}





/* Enhanced Section Titles */
.section-title {
    font-size:40px;
    font-weight:bolder;
    text-align: center;
    margin-bottom: 0px;
    letter-spacing: 2px;
    overflow: hidden;
}

.title-word {
    display: inline-block;
    margin-right: 20px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible .title-word {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.visible .title-word:nth-child(1) { transition-delay: 0s; }
.animate-on-scroll.visible .title-word:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll.visible .title-word:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll.visible .title-word:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll.visible .title-word:nth-child(5) { transition-delay: 0.4s; }

/* Enhanced Story Section */
.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-paragraph {
    font-size: 1.3rem;
    margin-bottom: 40px;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.paragraph-line {
    display: block;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-paragraph.visible .paragraph-line {
    opacity: 1;
    transform: translateX(0);
}

.story-paragraph.visible .paragraph-line:nth-child(1) { transition-delay: 0s; }
.story-paragraph.visible .paragraph-line:nth-child(2) { transition-delay: 0.2s; }
.story-paragraph.visible .paragraph-line:nth-child(3) { transition-delay: 0.4s; }

/* Enhanced Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 80px;
    margin-top: 80px;
}

.service-item {
    opacity: 0;
    transform: translateY(80px) scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom:10px;
    color: #ffffff;
    overflow: hidden;
}

.service-word {
    display: inline-block;
    margin-right: 10px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item.visible .service-word {
    opacity: 1;
    transform: translateY(0);
}

.service-item.visible .service-word:nth-child(1) { transition-delay: 0s; }
.service-item.visible .service-word:nth-child(2) { transition-delay: 0.1s; }
.service-item.visible .service-word:nth-child(3) { transition-delay: 0.2s; }
.service-item.visible .service-word:nth-child(4) { transition-delay: 0.3s; }
.service-item.visible .service-word:nth-child(5) { transition-delay: 0.4s; }
.service-item.visible .service-word:nth-child(6) { transition-delay: 0.5s; }
.service-item.visible .service-word:nth-child(7) { transition-delay: 0.6s; }

.service-description {
    font-size:20px;
    line-height: 1.8;
    color:white;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item.visible .service-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.desc-line {
    display: block;
    margin-bottom: 8px;
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-description.visible .desc-line {
    opacity: 1;
    transform: translateX(0);
}

.service-description.visible .desc-line:nth-child(1) { transition-delay: 0s; }
.service-description.visible .desc-line:nth-child(2) { transition-delay: 0.2s; }
.service-description.visible .desc-line:nth-child(3) { transition-delay: 0.4s; }


/* Enhanced Footer */
.footer {
    padding: 80px 0 30px;
   
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
   
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

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

.footer-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-20px);
    position: relative;
    padding-left: 20px;
}

.footer-link.visible {
    opacity: 1;
    transform: translateX(0);
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(10px);
}

.footer-link:hover::before {
    opacity: 1;
}

.footer-contact {
    color: #cccccc;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(20px);
    display: inline-block;
}

.footer-contact.visible {
    opacity: 1;
    transform: translateY(0);
}

.footer-contact:hover {
    color: #ffffff;
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888888;
}

.footer-bottom p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-bottom p.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
    opacity: 1;
    font-size: 20px;
    transform: translateY(0);
}

/* Page-specific styles */
.page-hero {
    padding: 150px 0 100px;
    text-align: center;
    background: linear-gradient(135deg, #000000 0%, #111111 100%);
}

.page-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 30px;
    overflow: hidden;
}

.page-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-subtitle.visible {
    opacity: 1;
    transform: translateY(0);
}

/* About Page Styles */
.about-content {
    background: #000000;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-element {
    width: 300px;
    height: 300px;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.data-flow {
    display: flex;
    gap: 30px;
    align-items: center;
}

.flow-node {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    animation: nodeGlow 2s infinite alternate;
}

.flow-node:nth-child(2) {
    animation-delay: 0.5s;
}

.flow-node:nth-child(3) {
    animation-delay: 1s;
}

@keyframes nodeGlow {
    0% { opacity: 0.5; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.2); }
}

.values {
    background: linear-gradient(135deg, #111111 0%, #000000 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.4s ease;
}

.value-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px);
}

.value-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
}

.value-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
}

/* Services Page Styles */
.services-detail {
    background: #000000;
}

.services-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

.service-detail-item {
    text-align: center;
    color:white !important;
    padding: 50px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
}

.service-detail-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-15px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.icon-animation {
    width: 30px;
    height: 30px;
    background: #ffffff;
    border-radius: 50%;
    animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.7; }
}

.service-detail-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}

.service-detail-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #cccccc;
}

/* Technologies Page Styles */
.technologies {
    background: #000000;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 80px;
    margin-top: 80px;
}

.tech-category {
    text-align: center;
}

.tech-category-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: #ffffff;
}

.tech-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tech-item {
    padding: 15px 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateX(-30px);
}

.tech-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.tech-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.15) 100%);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(10px);
}

/* Contact Page Styles */
.contact-content {
    background: #000000;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 80px;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-value {
    font-size: 1.1rem;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-value:hover {
    color: #ffffff;
}

/* Contact Form */
.contact-form-container {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form-container.visible {
    opacity: 1;
    transform: translateY(0);
}

.contact-form {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    position: relative;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group.visible {
    opacity: 1;
    transform: translateY(0);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom-color: #ffffff;
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #cccccc;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    font-size: 0.9rem;
    color: #ffffff;
}

.submit-btn {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.2) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff !important;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}



.submit-btn:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.3) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
     color: #ffffff !important;
}



.btn-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateY(100%);
    opacity: 0;
}


/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .story-paragraph,
    .summary-text {
        font-size: 1.1rem;
    }

    .service-title {
        font-size: 1.6rem;
    }

    .service-description {
        font-size: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .tech-categories {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
                margin-top: 60px;
    }

    .brand-text {
        font-size: 20px;
    }

    .section-animate {
        padding: 20px 0;
    }

    .page-hero {
        padding: 120px 0 80px;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .contact-form {
        padding: 20px;
    }
}

/* Smooth scrolling enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}