*{box-sizing:border-box;margin:0;padding:0}:root{--primary-blue:#3b82f6;--dark-bg:#1a1a2e;--darker-bg:#0f0f1e;--light-blue:#60a5fa;--text-gray:#94a3b8;--white:#fff}body{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#0f0f1e;background-color:var(--darker-bg);color:#fff;color:var(--white);font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}html{scroll-behavior:smooth}a{color:inherit;text-decoration:none}button{border:none;cursor:pointer;outline:none}.App{background-color:var(--darker-bg);min-height:100vh}.container{margin:0 auto;max-width:1200px;padding:0 20px}.section{padding:80px 0}.section-title{color:var(--white);font-size:2.5rem;font-weight:700;margin-bottom:1rem;text-align:center}.section-subtitle{color:var(--text-gray);font-size:1.1rem;margin-bottom:3rem;text-align:center}.btn{border-radius:5px;display:inline-block;font-size:1rem;font-weight:600;padding:12px 30px;transition:all .3s ease}.btn-primary{background-color:var(--primary-blue);color:var(--white)}.btn-primary:hover{background-color:var(--light-blue);box-shadow:0 10px 25px #3b82f64d;transform:translateY(-2px)}@media (max-width:768px){.section{padding:50px 0}.section-title{font-size:2rem}.section-subtitle{font-size:1rem}}.header{background-color:var(--dark-bg);left:0;position:fixed;top:0;transition:all .3s ease;width:100%;z-index:1000}.header.scrolled{background-color:#1a1a2ef2;box-shadow:0 2px 20px #0000004d}.navbar{justify-content:space-between;padding:1rem 0}.logo,.navbar{align-items:center;display:flex}.logo{color:var(--white);cursor:pointer;font-size:1.5rem;font-weight:700;gap:.8rem}.logo-img{border-radius:8px;height:50px;object-fit:contain;width:auto}.logo-text{font-size:1.5rem}.nav-menu{display:flex;gap:2rem;list-style:none}.nav-menu li a{color:var(--white);cursor:pointer;font-weight:500;transition:color .3s ease}.nav-menu li a:hover{color:var(--primary-blue)}.hamburger{cursor:pointer;display:none;flex-direction:column;gap:4px}.hamburger span{background-color:var(--white);height:3px;transition:all .3s ease;width:25px}.hamburger.active span:first-child{transform:rotate(45deg) translate(5px,5px)}.hamburger.active span:nth-child(2){opacity:0}.hamburger.active span:nth-child(3){transform:rotate(-45deg) translate(7px,-6px)}@media (max-width:768px){.hamburger{display:flex}.logo-img{height:40px}.logo-text{font-size:1.2rem}.nav-menu{background-color:var(--dark-bg);flex-direction:column;gap:1.5rem;left:-100%;padding:2rem 0;position:fixed;text-align:center;top:70px;transition:.3s;width:100%}.nav-menu.active{left:0}}.hero{align-items:center;display:flex;min-height:100vh;overflow:hidden;padding-top:80px;position:relative}.hero-slider{z-index:0}.hero-slide,.hero-slider{height:100%;left:0;position:absolute;top:0;width:100%}.hero-slide{background-position:50%;background-repeat:no-repeat;background-size:cover;opacity:0;transition:opacity 1.5s ease-in-out}.hero-slide.active{opacity:1}.hero-overlay{background:linear-gradient(135deg,#000000b3,#0009);height:100%;left:0;position:absolute;top:0;width:100%;z-index:1}.hero-stats-corner{display:flex;flex-direction:column;gap:2rem;position:absolute;right:2rem;top:70%;transform:translateY(-50%);z-index:3}.corner-stat-item{animation:fadeInLeft 1s ease-out;text-align:right}.corner-stat-item:first-child{animation-delay:.2s}.corner-stat-item:nth-child(2){animation-delay:.4s}.corner-stat-item:nth-child(3){animation-delay:.6s}.corner-stat-number{color:#fff;font-size:3rem;font-weight:900;line-height:1;margin-bottom:.3rem;text-shadow:0 0 20px #ffffff80}.corner-stat-label{color:#fffc;font-size:.9rem;font-weight:400;line-height:1.3;max-width:150px}.hero-content{min-height:calc(100vh - 80px);padding:2rem 0;position:relative;z-index:2}.hero-center,.hero-content{align-items:center;display:flex;justify-content:center}.hero-center{margin:0 auto;max-width:800px;width:100%}.hero-box{animation:fadeInUp 1s ease-out;-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:#ffffff0d;border:1px solid #ffffff1a;border-radius:20px;box-shadow:0 20px 60px #0006;padding:3rem;text-align:center}.hero-title{color:var(--white);font-size:2.5rem;font-weight:800;line-height:1.2;margin-bottom:1.5rem}.hero-description{color:#ffffffe6;font-size:1.1rem;line-height:1.6;margin-bottom:2rem}.hero-button{box-shadow:0 10px 30px #3b82f666;font-size:1rem;padding:12px 32px}.hero-button:hover{box-shadow:0 15px 40px #3b82f699;transform:translateY(-3px)}.slider-indicators{bottom:3rem;display:flex;gap:.8rem;left:50%;position:absolute;transform:translateX(-50%);z-index:2}.indicator{background:#fff6;border:2px solid #fff9;border-radius:50%;cursor:pointer;height:12px;padding:0;transition:all .3s ease;width:12px}.indicator:hover{background:#fff9;transform:scale(1.2)}.indicator.active{background:var(--white);border-color:var(--white);border-radius:6px;width:32px}@keyframes fadeInLeft{0%{opacity:0;transform:translateX(-30px)}to{opacity:1;transform:translateX(0)}}@keyframes fadeInUp{0%{opacity:0;transform:translateY(40px)}to{opacity:1;transform:translateY(0)}}@media (max-width:1200px){.hero-stats-corner{gap:1.5rem;left:1.5rem}.corner-stat-number{font-size:2.5rem}.corner-stat-label{font-size:.85rem}.hero-title{font-size:2.2rem}.hero-description{font-size:1rem}}@media (max-width:1024px){.hero-box{padding:2.5rem}.hero-title{font-size:2rem}.hero-stats-corner{gap:1.2rem}.corner-stat-number{font-size:2.2rem}}@media (max-width:768px){.hero{padding-top:70px}.hero-stats-corner{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:#00000080;border-radius:15px;flex-direction:row;justify-content:space-around;margin-bottom:2rem;padding:1.5rem 1rem;position:static;transform:none}.corner-stat-item{text-align:center}.corner-stat-number{font-size:1.8rem}.corner-stat-label{font-size:.7rem;max-width:100px}.hero-box{padding:2rem}.hero-title{font-size:1.75rem}.hero-button,.hero-description{font-size:.95rem}.hero-button{padding:10px 24px}.slider-indicators{bottom:2rem}}@media (max-width:480px){.hero-stats-corner{align-items:center;flex-direction:column;gap:1rem;padding:1rem}.corner-stat-item{text-align:center}.corner-stat-number{font-size:2rem}.corner-stat-label{font-size:.75rem;max-width:120px}.hero-box{padding:1.5rem}.hero-title{font-size:1.5rem}.hero-button,.hero-description{font-size:.9rem}.hero-button{padding:10px 20px}.slider-indicators{bottom:1.5rem;gap:.6rem}.indicator{height:10px;width:10px}.indicator.active{width:28px}}.about{background-color:var(--darker-bg);overflow:hidden;position:relative}.about:before{animation:backgroundPulse 10s ease-in-out infinite;background:radial-gradient(circle at 20% 50%,#3b82f60d 0,#0000 50%),radial-gradient(circle at 80% 80%,#3b82f60d 0,#0000 50%);content:"";height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}.about-content{margin:0 auto;max-width:1000px;position:relative;z-index:1}.about .section-title{opacity:0;transform:translateY(-30px);transition:all .8s ease-out}.about.visible .section-title{opacity:1;transform:translateY(0)}.about-text{color:var(--text-gray);font-size:1.15rem;line-height:1.8;margin-bottom:1.5rem;opacity:0;text-align:justify;transform:translateY(20px);transition:all .8s ease-out}.about.visible .about-text{opacity:1;transform:translateY(0)}.about-text strong{color:var(--primary-blue);font-weight:600;position:relative}.about-text strong:after{background-color:var(--primary-blue);bottom:-2px;content:"";height:2px;left:0;position:absolute;transition:width .3s ease;width:0}.about-text strong:hover:after{width:100%}.about-highlights{grid-gap:2rem;display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));margin-top:3rem}.highlight-item{background-color:var(--darker-bg);border:1px solid #3b82f61a;border-radius:15px;opacity:0;overflow:hidden;padding:2rem;position:relative;transform:translateY(30px) scale(.95);transition:all .8s cubic-bezier(.4,0,.2,1)}.about.visible .highlight-item{opacity:1;transform:translateY(0) scale(1)}.highlight-item:before{background:linear-gradient(90deg,#0000,#3b82f61a,#0000);content:"";height:100%;left:-100%;position:absolute;top:0;transition:left .5s ease;width:100%}.highlight-item:hover:before{left:100%}.highlight-item:hover{border-color:var(--primary-blue);box-shadow:0 10px 30px #3b82f633;transform:translateY(-5px)}.highlight-item h3{color:var(--primary-blue);display:inline-block;font-size:1.5rem;margin-bottom:1rem;position:relative}.highlight-item h3:after{animation:expandLine 1s ease-out forwards;background:linear-gradient(90deg,var(--primary-blue),#0000);border-radius:2px;bottom:-5px;content:"";height:3px;left:0;position:absolute;width:50px}@keyframes expandLine{0%{width:0}to{width:50px}}.highlight-item p{color:var(--text-gray);line-height:1.6}.highlight-item ul{list-style:none;padding:0}.value-item{align-items:flex-start;color:var(--text-gray);display:flex;gap:1rem;line-height:1.8;margin-bottom:1rem;opacity:0;transform:translateX(-20px);transition:all .6s ease-out}.about.visible .value-item{opacity:1;transform:translateX(0)}.checkmark{align-items:center;animation:checkPop .5s ease-out;background:#3b82f61a;border-radius:50%;color:var(--primary-blue);display:flex;flex-shrink:0;font-size:1.2rem;font-weight:700;height:24px;justify-content:center;width:24px}@keyframes checkPop{0%{transform:scale(0)}50%{transform:scale(1.2)}to{transform:scale(1)}}.value-item strong,.value-item:hover{color:var(--white)}.value-item:hover{transform:translateX(5px)}.value-item:hover .checkmark{background:#3b82f633;transform:scale(1.1)}.about.visible .about-text.delay-1{transition-delay:.1s}.about.visible .about-text.delay-2{transition-delay:.2s}.about.visible .highlight-item.delay-3{transition-delay:.3s}.about.visible .highlight-item.delay-4{transition-delay:.4s}.about.visible .value-item.delay-5{transition-delay:.5s}.about.visible .value-item.delay-6{transition-delay:.6s}.about.visible .value-item.delay-7{transition-delay:.7s}.about.visible .value-item.delay-8{transition-delay:.8s}@media (max-width:768px){.about-text{font-size:1rem;text-align:left}.about-highlights{gap:1.5rem;grid-template-columns:1fr}.highlight-item{padding:1.5rem}.highlight-item h3{font-size:1.3rem}.value-item{font-size:.95rem}}@keyframes float{0%,to{transform:translateY(0)}50%{transform:translateY(-5px)}}.highlight-item:hover{animation:float 2s ease-in-out infinite}.services{background-color:var(--dark-bg)}.services-header-wrapper{margin-bottom:3rem;position:relative}.services-logo-section{left:0;position:absolute;top:50%;transform:translateY(-50%);z-index:1}.services-logo{border:2px solid #3b82f633;border-radius:15px;box-shadow:0 10px 30px #3b82f64d;height:120px;object-fit:contain;transition:all .3s ease;width:120px}.services-logo:hover{border-color:var(--primary-blue);box-shadow:0 15px 40px #3b82f680;transform:scale(1.05) rotate(2deg)}.services-header-content{padding:0 140px;text-align:center}.services-header-content .section-title{margin-bottom:1rem;text-align:center}.services-header-content .section-subtitle{margin-bottom:0;text-align:center}.services-grid{grid-gap:2rem;display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));margin-top:3rem}.service-card{background-color:var(--dark-bg);border:1px solid #3b82f61a;border-radius:10px;cursor:pointer;padding:2rem;transition:all .3s ease}.service-card:hover{border-color:var(--primary-blue);box-shadow:0 10px 30px #3b82f633;transform:translateY(-10px)}.service-icon{color:var(--primary-blue);font-size:2.5rem;margin-bottom:1rem}.service-title{color:var(--white);font-size:1.3rem;font-weight:600;margin-bottom:.8rem}.service-description{color:var(--text-gray);font-size:.95rem;line-height:1.6}@media (max-width:1024px){.services-logo{height:100px;width:100px}.services-header-content{padding:0 120px}}@media (max-width:768px){.services-header-wrapper{align-items:center;display:flex;flex-direction:column;gap:1.5rem}.services-logo-section{position:static;transform:none}.services-logo{height:80px;width:80px}.services-header-content{padding:0}.services-grid{gap:1.5rem;grid-template-columns:1fr}}.how-it-works{background-color:var(--darker-bg)}.steps-container{grid-gap:2rem;display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));margin-top:3rem;position:relative}.step-card{background-color:var(--darker-bg);border:2px solid #3b82f633;border-radius:15px;padding:2.5rem 2rem;position:relative;text-align:center;transition:all .3s ease}.step-card:hover{border-color:var(--primary-blue);box-shadow:0 15px 40px #3b82f64d;transform:translateY(-10px)}.step-number{align-items:center;background:linear-gradient(135deg,var(--primary-blue),var(--light-blue));border-radius:50%;box-shadow:0 5px 15px #3b82f666;color:var(--white);display:flex;font-size:1.5rem;font-weight:700;height:50px;justify-content:center;left:50%;position:absolute;top:-20px;transform:translateX(-50%);width:50px}.step-icon{color:var(--primary-blue);font-size:3rem;margin:2rem 0 1.5rem}.step-title{color:var(--white);font-size:1.4rem;font-weight:600;margin-bottom:1rem}.step-description{color:var(--text-gray);font-size:.95rem;line-height:1.6}@media (max-width:768px){.steps-container{gap:3rem;grid-template-columns:1fr}}.industries{background-color:var(--dark-bg)}.industries-grid{grid-gap:1.5rem;display:grid;gap:1.5rem;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));margin-top:3rem}.industry-card{background-color:var(--dark-bg);border:1px solid #ffffff0d;border-radius:10px;cursor:pointer;padding:2rem 1rem;text-align:center;transition:all .3s ease}.industry-card:hover{background-color:#3b82f60d;border-color:var(--primary-blue);transform:translateY(-5px)}.industry-icon{color:var(--primary-blue);font-size:2.5rem;margin-bottom:1rem}.industry-name{color:var(--white);font-size:1rem;font-weight:600}@media (max-width:768px){.industries-grid{gap:1rem;grid-template-columns:repeat(auto-fit,minmax(120px,1fr))}.industry-card{padding:1.5rem .5rem}.industry-icon{font-size:2rem}}.why-choose-us{background-color:var(--dark-bg)}.reasons-grid{grid-gap:2rem;display:grid;gap:2rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));margin-top:3rem}.reason-card{background-color:var(--darker-bg);border:1px solid #3b82f61a;border-radius:10px;padding:2.5rem 2rem;text-align:center;transition:all .3s ease}.reason-card:hover{border-color:var(--primary-blue);box-shadow:0 15px 40px #3b82f633;transform:translateY(-10px)}.reason-icon{color:var(--primary-blue);font-size:3rem;margin-bottom:1.5rem}.reason-title{color:var(--white);font-size:1.3rem;font-weight:600;margin-bottom:1rem}.reason-description{color:var(--text-gray);font-size:.95rem;line-height:1.6}@media (max-width:768px){.reasons-grid{gap:1.5rem;grid-template-columns:1fr}}.team{background-color:var(--darker-bg);overflow:hidden;position:relative}.team:before{animation:backgroundPulse 15s ease-in-out infinite;background:radial-gradient(circle at 30% 50%,#3b82f60d 0,#0000 50%),radial-gradient(circle at 70% 80%,#8b5cf60d 0,#0000 50%);content:"";height:100%;left:0;pointer-events:none;position:absolute;top:0;width:100%}@keyframes backgroundPulse{0%,to{opacity:.5}50%{opacity:1}}.team .container{position:relative;z-index:1}.team-grid{grid-gap:2.5rem;display:grid;gap:2.5rem;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));margin-top:3rem}.team-card{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);background:linear-gradient(135deg,#1a1a2ecc,#0f0f1ecc);border:1px solid #3b82f633;border-radius:20px;overflow:hidden;padding:2.5rem 2rem;position:relative;text-align:center;transition:all .4s cubic-bezier(.4,0,.2,1)}.team-card:before{background:radial-gradient(circle,#3b82f64d 0,#0000 70%);border-radius:50%;content:"";height:0;left:50%;pointer-events:none;position:absolute;top:50%;transform:translate(-50%,-50%);transition:width .6s ease,height .6s ease;width:0}.team-card:hover:before{height:400px;width:400px}.team-card:hover{border-color:var(--primary-blue);box-shadow:0 20px 50px #3b82f64d;transform:translateY(-10px)}.team-icon-wrapper{margin:0 auto 1.5rem;position:relative;z-index:1}.team-icon{align-items:center;background:linear-gradient(135deg,#3b82f633,#1e40af33);border:3px solid var(--primary-blue);border-radius:50%;color:var(--primary-blue);display:flex;font-size:4rem;height:150px;justify-content:center;margin:0 auto;overflow:hidden;position:relative;transition:all .4s ease;width:150px}.team-icon:before{animation:shimmer 3s infinite;background:linear-gradient(45deg,#0000 30%,#ffffff1a 50%,#0000 70%);content:"";height:200%;left:-50%;position:absolute;top:-50%;transform:rotate(45deg);width:200%}@keyframes shimmer{0%{transform:translateX(-100%) translateY(-100%) rotate(45deg)}to{transform:translateX(100%) translateY(100%) rotate(45deg)}}.team-card:hover .team-icon{background:linear-gradient(135deg,#3b82f64d,#1e40af4d);border-color:var(--light-blue);box-shadow:0 10px 40px #3b82f680;transform:scale(1.1) rotate(5deg)}.team-card:hover .team-icon svg{animation:iconBounce .6s ease}@keyframes iconBounce{0%,to{transform:scale(1)}50%{transform:scale(1.2)}}.team-info{position:relative;z-index:1}.team-name{color:var(--white);font-size:1.5rem;font-weight:700;margin-bottom:.5rem}.team-position{color:var(--primary-blue);font-size:1rem;font-weight:600;letter-spacing:1px;margin-bottom:1rem;text-transform:uppercase}.team-description{color:var(--text-gray);font-size:.95rem;line-height:1.6;margin-bottom:1.5rem}.team-social{gap:1rem}.team-social,.team-social-link{display:flex;justify-content:center}.team-social-link{align-items:center;background:#3b82f61a;border:1px solid #3b82f64d;border-radius:50%;color:var(--primary-blue);font-size:1.1rem;height:40px;transition:all .3s ease;width:40px}.team-social-link:hover{background:var(--primary-blue);box-shadow:0 5px 15px #3b82f666;color:var(--white);transform:translateY(-3px)}@media (max-width:1024px){.team-grid{gap:2rem;grid-template-columns:repeat(auto-fit,minmax(280px,1fr))}.team-icon{font-size:3.5rem;height:130px;width:130px}}@media (max-width:768px){.team-grid{gap:2rem;grid-template-columns:1fr}.team-card{padding:2rem 1.5rem}.team-icon{font-size:3rem;height:120px;width:120px}.team-name{font-size:1.3rem}.team-description,.team-position{font-size:.9rem}}@media (max-width:480px){.team-card{padding:1.5rem 1rem}.team-icon{font-size:2.5rem;height:100px;width:100px}.team-name{font-size:1.2rem}.team-description,.team-position{font-size:.85rem}.team-social-link{font-size:1rem;height:36px;width:36px}}.footer{background-color:var(--darker-bg);border-top:1px solid #3b82f61a;padding:4rem 0 2rem}.footer-content{grid-gap:1.8rem;display:grid;gap:1.8rem;grid-template-columns:2fr 1fr 1.5fr 2fr;margin-bottom:3rem}.footer-section{display:flex;flex-direction:column}.footer-logo{align-items:center;color:var(--white);display:flex;font-size:1.8rem;font-weight:700;gap:.8rem;margin-bottom:1rem}.footer-logo-img{border-radius:8px;height:50px;object-fit:contain;width:auto}.logo-text{color:var(--white);font-size:1.8rem;font-weight:700}.footer-description{color:var(--text-gray);line-height:1.6;margin-bottom:1.5rem}.social-links{display:flex;gap:1rem}.social-link{align-items:center;background-color:var(--dark-bg);border-radius:50%;color:var(--white);display:flex;font-size:1.2rem;height:40px;justify-content:center;transition:all .3s ease;width:40px}.social-link:hover{background-color:var(--primary-blue);transform:translateY(-3px)}.footer-title{color:var(--white);font-size:1.2rem;font-weight:600;margin-bottom:1.5rem}.footer-links{display:flex;flex-direction:column;gap:.8rem;list-style:none}.footer-links li a{color:var(--text-gray);transition:color .3s ease}.footer-links li a:hover{color:var(--primary-blue)}.footer-contact{display:flex;flex-direction:column;gap:1.2rem;list-style:none}.footer-contact li{align-items:flex-start;color:var(--text-gray);display:flex;gap:.8rem}.contact-icon{color:var(--primary-blue);flex-shrink:0;font-size:1.1rem;margin-top:.2rem}.footer-contact li a{word-wrap:break-word;color:var(--text-gray);line-height:1.5;max-width:100%;overflow-wrap:break-word;transition:color .3s ease}.footer-contact li a:hover{color:var(--primary-blue)}.footer-bottom{align-items:center;border-top:1px solid #ffffff0d;display:flex;flex-wrap:wrap;gap:1rem;justify-content:space-between;padding-top:2rem}.footer-bottom p{color:var(--text-gray)}.footer-bottom-links{display:flex;gap:2rem}.footer-bottom-links a{color:var(--text-gray);transition:color .3s ease}.footer-bottom-links a:hover{color:var(--primary-blue)}@media (max-width:1024px){.footer-content{gap:2rem;grid-template-columns:repeat(2,1fr)}}@media (max-width:768px){.footer-content{gap:2rem;grid-template-columns:1fr}.footer-bottom{flex-direction:column;text-align:center}.footer-contact li{align-items:flex-start;flex-direction:row}.contact-icon{margin-top:.3rem}}
/*# sourceMappingURL=main.310b55db.css.map*/