* {
 margin: 0;
 padding: 0;
 box-sizing: border-box;
}
html {
 scroll-behavior: smooth;
}
body {
 font-family: 'Alexandria', 'Arial', 'Helvetica', sans-serif;
 background-color: #000000;
 color: #FFFFFF;
 line-height: 1.6;
 overflow-x: hidden;
 font-display: swap;
}
body:not(.loaded) .navbar,
body:not(.loaded) .hero,
body:not(.loaded) .services,
body:not(.loaded) .portfolio,
body:not(.loaded) .about,
body:not(.loaded) .contact,
body:not(.loaded) .footer,
body:not(.loaded) .floating-buttons,
body:not(.loaded) .back-to-top {
 visibility: hidden;
 opacity: 0;
}
.container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
}
.navbar {
 position: fixed;
 top: 0;
 width: 100%;
 background: rgba(0, 0, 0, 0.95);
 backdrop-filter: blur(10px);
 z-index: 1000;
 padding: 1rem 0;
 transition: all 0.3s ease;
}
.nav-container {
 max-width: 1200px;
 margin: 0 auto;
 padding: 0 20px;
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.nav-logo .logo-image {
 height: 40px;
 width: auto;
 transition: all 0.3s ease;
 position: relative;
 cursor: pointer;
 filter: drop-shadow(0 0 10px rgba(0, 127, 255, 0.3));
 animation: logoFloat 3s ease-in-out infinite alternate;
}
.nav-logo .logo-image:hover {

 filter: drop-shadow(0 0 20px rgba(0, 127, 255, 0.6));
}
.nav-logo::before {
 content: '';
 position: absolute;
 top: -5px;
 left: -5px;
 right: -5px;
 bottom: -5px;
 background: linear-gradient(45deg, #007fff, #0066cc, #007fff);
 border-radius: 10px;
 opacity: 0;
 z-index: -1;
 transition: opacity 0.3s ease;
 animation: logoBackground 2s linear infinite;
}
.nav-logo:hover::before {
 opacity: 0.2;
}
@keyframes logoFloat {
 0% {
 transform: translateY(0px) rotate(0deg);
 filter: drop-shadow(0 0 10px rgba(0, 127, 255, 0.3));
 }
 100% {
 transform: translateY(-5px) rotate(2deg);
 filter: drop-shadow(0 0 20px rgba(0, 127, 255, 0.8));
 }
}
@keyframes logoBackground {
 0% {background-position: 0% 50%;}
 50% {background-position: 100% 50%;}
 100% {background-position: 0% 50%;}
}
.nav-menu {
 display: flex;
 list-style: none;
 gap: 2rem;
}
.nav-link {
 color: #FFFFFF;
 text-decoration: none;
 font-weight: 500;
 transition: color 0.3s ease;
 position: relative;
}
.nav-link:hover {
 color: #007fff;
}
.nav-link::after {
 content: '';
 position: absolute;
 bottom: -5px;
 right: 0;
 width: 0;
 height: 2px;
 background: #007fff;
 transition: width 0.3s ease;
}
.nav-link:hover::after {
 width: 100%;
}
.hamburger {
 display: none;
 flex-direction: column;
 cursor: pointer;
}
.bar {
 width: 25px;
 height: 3px;
 background: #FFFFFF;
 margin: 3px 0;
 transition: 0.3s;
}
.hero {
 min-height: 100vh;
 background: #000000;
 display: flex;
 align-items: center;
 position: relative;
 overflow: hidden;
 padding: 120px 0 80px;
}
.hero-container {
 max-width: 1400px;
 margin: 0 auto;
 padding: 0 40px;
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 position: relative;
 z-index: 2;
}
.hero-content {
 animation: slideInFromLeft 1s ease-out;
}
.hero-badge {
 display: inline-flex;
 align-items: center;
 gap: 10px;
 background: linear-gradient(135deg, rgba(0, 127, 255, 0.15), rgba(0, 191, 255, 0.1));
 border: 1px solid rgba(0, 127, 255, 0.3);
 border-radius: 50px;
 padding: 10px 20px;
 margin-bottom: 2rem;
 backdrop-filter: blur(10px);
 animation: badgeFloat 3s ease-in-out infinite;
}
.badge-icon {
 font-size: 18px;
 animation: sparkle 2s ease-in-out infinite;
}
.badge-text {
 color: #00bfff;
 font-size: 14px;
 font-weight: 600;
 letter-spacing: 0.3px;
 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-title-wrapper {
 position: relative;
 margin-bottom: 2rem;
}
.hero-title {
 font-size: 3.2rem;
 font-weight: 700;
 line-height: 1.5;
 margin-bottom: 1rem;
 position: relative;
}
.title-main {
 display: block;
 color: #FFFFFF;
 margin-bottom: 0.5rem;
 animation: titleSlideIn 1s ease-out 0.3s both;
 text-shadow: 0 4px 8px rgba(0, 0, 0, 0.8), 0 2px 4px rgba(0, 0, 0, 0.6);
}
.title-highlight {
 display: block;
 background: linear-gradient(135deg, #007fff 0%, #00bfff 50%, #0099ff 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 background-size: 200% 200%;
 animation: titleSlideIn 1s ease-out 0.6s both, gradientShift 3s ease-in-out infinite;
}
.title-decoration {
 width: 80px;
 height: 4px;
 background: linear-gradient(90deg, #007fff, #00bfff);
 border-radius: 2px;
 margin-top: 1rem;
 justify-self: center;
 animation: decorationGrow 1s ease-out 0.9s both;
}
.hero-subtitle {
 font-size: 1rem;
 color: #e0e0e0;
 justify-self: center;
 line-height: 1.75;
 max-width: 600px;
 margin-bottom: 2.5rem;
 animation: subtitleFadeIn 1s ease-out 1.2s both;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}
.hero-features {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 grid-template-rows: repeat(2, 1fr);
 gap: 1.5rem;
 margin-bottom: 2.5rem;
 animation: featuresFadeIn 1s ease-out 1.5s both;
 max-width: 900px;
 margin-left: auto;
 margin-right: auto;
}
.feature-card {
 display: flex;
 align-items: center;
 gap: 16px;
 padding: 20px;
 background: rgba(255, 255, 255, 0.02);
 border: 1px solid rgba(255, 255, 255, 0.08);
 border-radius: 12px;
 transition: all 0.3s ease;
 backdrop-filter: blur(10px);
 animation: cardFloat 6s ease-in-out infinite;
 position: relative;
 overflow: hidden;
}
.feature-card:nth-child(1) {animation-delay: 0s;}
.feature-card:nth-child(2) {animation-delay: 0.5s;}
.feature-card:nth-child(3) {animation-delay: 1s;}
.feature-card:nth-child(4) {animation-delay: 1.5s;}
.feature-card:nth-child(5) {animation-delay: 2s;}
.feature-card:nth-child(6) {animation-delay: 2.5s;}
.feature-card:hover {
 background: rgba(0, 127, 255, 0.05);
 border-color: rgba(0, 127, 255, 0.2);
 transform: translateY(-5px) scale(1.02);
 box-shadow: 0 10px 25px rgba(0, 127, 255, 0.15);
}
.feature-icon {
 width: 40px;
 height: 40px;
 background: linear-gradient(135deg, #007fff, #00bfff);
 border-radius: 10px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: white;
 flex-shrink: 0;
}
.feature-content h3 {
 font-size: 1rem;
 font-weight: 600;
 color: #FFFFFF;
 margin-bottom: 4px;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}
.feature-content p {
 font-size: 0.9rem;
 color: #d0d0d0;
 margin: 0;
 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
.hero-cta {
 display: flex;
 gap: 1.5rem;
 align-items: center;
 justify-content: center;
 flex-wrap: wrap;
 animation: ctaFadeIn 1s ease-out 1.8s both;
}
.btn-outline {
 background: transparent;
 color: #FFFFFF;
 border: 2px solid rgba(255, 255, 255, 0.2);
 padding: 14px 28px;
 border-radius: 50px;
 font-weight: 600;
 text-decoration: none;
 transition: all 0.3s ease;
 display: inline-flex;
 align-items: center;
 gap: 8px;
}
.btn-outline:hover {
 background: rgba(255, 255, 255, 0.1);
 border-color: rgba(255, 255, 255, 0.4);
 transform: translateY(-2px);
}
.hero-visual {
 position: relative;
 animation: slideInFromRight 1s ease-out 0.6s both;
}
.visual-container {
 position: relative;
 width: 100%;
 height: 500px;
}
.hero-background {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 pointer-events: none;
 z-index: 1;
}
.bg-gradient {
 position: absolute;
 border-radius: 50%;
 filter: blur(100px);
 opacity: 0.3;
}
.bg-gradient-1 {
 width: 600px;
 height: 600px;
 background: radial-gradient(circle, #007fff 0%, transparent 70%);
 top: -200px;
 right: -200px;
 animation: gradientMove 20s ease-in-out infinite;
}
.bg-gradient-2 {
 width: 400px;
 height: 400px;
 background: radial-gradient(circle, #00bfff 0%, transparent 70%);
 bottom: -100px;
 left: -100px;
 animation: gradientMove 25s ease-in-out infinite reverse;
}
.bg-particles {
 position: absolute;
 width: 100%;
 height: 100%;
}
.particle {
 position: absolute;
 width: 4px;
 height: 4px;
 background: #007fff;
 border-radius: 50%;
 animation: particleFloat 15s linear infinite;
}
.particle-1 {
 top: 20%;
 left: 10%;
 animation-delay: 0s;
}
.particle-2 {
 top: 60%;
 left: 80%;
 animation-delay: 3s;
}
.particle-3 {
 top: 80%;
 left: 20%;
 animation-delay: 6s;
}
.particle-4 {
 top: 30%;
 left: 70%;
 animation-delay: 9s;
}
.particle-5 {
 top: 50%;
 left: 50%;
 animation-delay: 12s;
}
.btn {
 padding: 1rem 2rem;
 border: none;
 border-radius: 50px;
 font-size: 1rem;
 font-weight: 600;
 text-decoration: none;
 cursor: pointer;
 transition: all 0.3s ease;
 display: inline-block;
 text-align: center;
}
.btn-primary {
 background: #007fff;
 color: #FFFFFF;
 box-shadow: 0 4px 15px rgba(0, 127, 255, 0.3);
}
.btn-primary:hover {
 background: #0066cc;
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(0, 127, 255, 0.4);
}
.btn-secondary {
 background: transparent;
 color: #FFFFFF;
 border: 2px solid #FFFFFF;
}
.btn-secondary:hover {
 background: #FFFFFF;
 color: #000000;
 transform: translateY(-2px);
}
.hero-image {
 text-align: center;
 animation: slideInFromRight 1s ease-out;
}
.hero-placeholder {
 width: 100%;
 max-width: 500px;
 height: 400px;
 background: linear-gradient(135deg, #007fff, #0056b3);
 border-radius: 20px;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #FFFFFF;
 font-size: 1.5rem;
 font-weight: 600;
 box-shadow: 0 20px 40px rgba(0, 127, 255, 0.3);
 animation: float 6s ease-in-out infinite 2s;
}
@keyframes float {
 0%, 100% {transform: translateY(0px) rotate(0deg);}
 25% {transform: translateY(-10px) rotate(2deg);}
 50% {transform: translateY(-20px) rotate(0deg);}
 75% {transform: translateY(-10px) rotate(-2deg);}
}
@keyframes badgeFloat {
 0%, 100% {
 transform: translateY(0px) scale(1);
 }
 50% {
 transform: translateY(-5px) scale(1.02);
 }
}
@keyframes sparkle {
 0%, 100% {
 opacity: 1;
 transform: scale(1);
 }
 50% {
 opacity: 0.7;
 transform: scale(1.1);
 }
}
@keyframes titleSlideIn {
 0% {
 opacity: 0;
 transform: translateY(30px);
 }
 100% {
 opacity: 1;
 transform: translateY(0);
 }
}
@keyframes gradientShift {
 0% {
 background-position: 0% 50%;
 }
 50% {
 background-position: 100% 50%;
 }
 100% {
 background-position: 0% 50%;
 }
}
@keyframes decorationGrow {
 0% {
 width: 0;
 opacity: 0;
 }
 100% {
 width: 80px;
 opacity: 1;
 }
}
@keyframes subtitleFadeIn {
 0% {
 opacity: 0;
 transform: translateY(20px);
 }
 100% {
 opacity: 1;
 transform: translateY(0);
 }
}
@keyframes featuresFadeIn {
 0% {
 opacity: 0;
 transform: translateY(30px);
 }
 100% {
 opacity: 1;
 transform: translateY(0);
 }
}
@keyframes ctaFadeIn {
 0% {
 opacity: 0;
 transform: translateY(20px);
 }
 100% {
 opacity: 1;
 transform: translateY(0);
 }
}
@keyframes cardFloat {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 }
 33% {
 transform: translateY(-10px) rotate(1deg);
 }
 66% {
 transform: translateY(-5px) rotate(-1deg);
 }
}
@keyframes iconFloat {
 0%, 100% {
 transform: translateY(0px) rotate(0deg);
 }
 50% {
 transform: translateY(-15px) rotate(180deg);
 }
}
@keyframes gradientMove {
 0%, 100% {
 transform: translate(0, 0) rotate(0deg);
 }
 33% {
 transform: translate(30px, -30px) rotate(120deg);
 }
 66% {
 transform: translate(-20px, 20px) rotate(240deg);
 }
}
@keyframes particleFloat {
 0% {
 transform: translateY(0px) translateX(0px);
 opacity: 0;
 }
 10% {
 opacity: 1;
 }
 90% {
 opacity: 1;
 }
 100% {
 transform: translateY(-100vh) translateX(50px);
 opacity: 0;
 }
}
@keyframes borderGlow {
 0%, 100% {
 opacity: 0.2;
 transform: scale(1);
 }
 50% {
 opacity: 0.4;
 transform: scale(1.01);
 }
}
@keyframes iconGlow {
 0%, 100% {
 opacity: 0.4;
 box-shadow: 0 0 15px rgba(0, 127, 255, 0.25);
 }
 50% {
 opacity: 0.6;
 box-shadow: 0 0 25px rgba(0, 127, 255, 0.4);
 }
}
@keyframes pulse {
 0%, 100% {transform: scale(1);}
 50% {transform: scale(1.05);}
}
@keyframes slideInFromRight {
 0% {transform: translateX(100px);opacity: 0;}
 100% {transform: translateX(0);opacity: 1;}
}
@keyframes slideInFromLeft {
 0% {transform: translateX(-100px);opacity: 0;}
 100% {transform: translateX(0);opacity: 1;}
}
.section-header {
 text-align: center;
 margin-bottom: 3rem;
}
.section-title {
 font-size: 2.4rem;
 font-weight: 700;
 margin-bottom: 1.2rem;
 color: #FFFFFF;
 position: relative;
 display: inline-block;
 letter-spacing: 0.5px;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
 background: linear-gradient(135deg, #FFFFFF 0%, #e6e6e6 100%);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
}
.section-title::after {
 content: '';
 position: absolute;
 bottom: -8px;
 left: 50%;
 transform: translateX(-50%);
 width: 60px;
 height: 3px;
 background: linear-gradient(90deg, #007fff, #00bfff);
 border-radius: 2px;
 animation: titleUnderlineGrow 1s ease-out 0.3s both;
}
@keyframes titleUnderlineGrow {
 0% {
 width: 0;
 opacity: 0;
 }
 100% {
 width: 60px;
 opacity: 1;
 }
}
.section-subtitle {
 font-size: 1rem;
 color: #cccccc;
 max-width: 520px;
 margin: 0 auto;
 line-height: 1.5;
}
.services {
 padding: 6rem 0;
 background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
 position: relative;
 overflow: hidden;
}
.services::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: radial-gradient(circle at 20% 30%, rgba(0, 127, 255, 0.05) 0%, transparent 50%),
 radial-gradient(circle at 80% 70%, rgba(0, 191, 255, 0.03) 0%, transparent 50%);
 pointer-events: none;
}
.services-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
 gap: 2rem;
 position: relative;
 z-index: 1;
}
.service-card {
 background: rgba(255, 255, 255, 0.02);
 backdrop-filter: blur(20px);
 padding: 2rem 1.8rem;
 border-radius: 20px;
 text-align: center;
 transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 border: 1px solid rgba(255, 255, 255, 0.08);
 position: relative;
 overflow: hidden;
 cursor: pointer;
 transform-style: preserve-3d;
}
.service-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(135deg, 
 rgba(0, 127, 255, 0.08) 0%, 
 rgba(0, 191, 255, 0.04) 50%, 
 rgba(0, 86, 179, 0.06) 100%);
 opacity: 0;
 transition: all 0.4s ease;
 border-radius: 24px;
}
.service-card::after {
 content: '';
 position: absolute;
 top: -2px;
 left: -2px;
 right: -2px;
 bottom: -2px;
 background: linear-gradient(135deg, #007fff, #00bfff, #0099ff);
 border-radius: 26px;
 opacity: 0;
 z-index: -1;
 transition: all 0.4s ease;
}
.service-card:hover::before {
 opacity: 1;
}
.service-card:hover::after {
 opacity: 0.2;
 animation: borderGlow 3s ease-in-out infinite;
}
.service-card:hover {
 transform: translateY(-6px);
 border-color: rgba(0, 127, 255, 0.25);
 box-shadow: 
 0 12px 28px rgba(0, 127, 255, 0.12),
 0 0 0 1px rgba(0, 127, 255, 0.1),
 inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.service-card:hover .service-icon-wrapper {
 transform: scale(1.05);
}
.service-card:hover .service-title {
 color: #00bfff;
 transform: translateY(-2px);
 text-shadow: 0 2px 8px rgba(0, 191, 255, 0.3);
}
.service-card:hover .service-description {
 color: #f0f0f0;
 transform: translateY(-1px);
 text-shadow: 0 1px 4px rgba(255, 255, 255, 0.1);
}
.service-card:hover .service-features {
 transform: translateY(-1px);
}
.service-icon-wrapper {
 width: 70px;
 height: 70px;
 margin: 0 auto 1.5rem;
 background: linear-gradient(135deg, #007fff, #00bfff);
 border-radius: 16px;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
 position: relative;
 box-shadow: 0 6px 20px rgba(0, 127, 255, 0.2);
}
.service-icon-wrapper::before {
 content: '';
 position: absolute;
 top: -2px;
 left: -2px;
 right: -2px;
 bottom: -2px;
 background: linear-gradient(135deg, #007fff, #00bfff, #0099ff);
 border-radius: 22px;
 z-index: -1;
 opacity: 0;
 transition: all 0.3s ease;
}
.service-card:hover .service-icon-wrapper::before {
 opacity: 0.4;
 animation: iconGlow 3s ease-in-out infinite;
}
.service-icon {
 display: flex;
 justify-content: center;
 align-items: center;
 transition: all 0.4s ease;
}
.service-icon svg {
 width: 36px;
 height: 36px;
 transition: all 0.4s ease;
 filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
}
.service-card:hover .service-icon svg {
 transform: scale(1.1);
 filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}
.service-title {
 font-size: 1.4rem;
 font-weight: 600;
 margin-bottom: 1rem;
 color: #FFFFFF;
 transition: all 0.4s ease;
 position: relative;
 letter-spacing: 0.3px;
}
.service-title::after {
 content: '';
 position: absolute;
 bottom: -8px;
 left: 50%;
 transform: translateX(-50%);
 width: 0;
 height: 3px;
 background: linear-gradient(90deg, #007fff, #00bfff);
 border-radius: 2px;
 transition: all 0.4s ease;
}
.service-card:hover .service-title::after {
 width: 60px;
}
.service-description {
 color: #b3b3b3;
 margin-bottom: 1.5rem;
 line-height: 1.6;
 font-size: 0.95rem;
 transition: all 0.3s ease;
}
.service-features {
 list-style: none;
 text-align: right;
 transition: all 0.3s ease;
 display: grid;
 gap: 0.6rem;
}
.service-features li {
 color: #007fff;
 font-size: 0.9rem;
 font-weight: 500;
 position: relative;
 padding: 0.6rem 2.5rem 0.6rem 0.8rem;
 background: rgba(0, 127, 255, 0.05);
 border-radius: 10px;
 border: 1px solid rgba(0, 127, 255, 0.1);
 transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-features li::before {
 content: '✓';
 position: absolute;
 right: 1.2rem;
 top: 50%;
 transform: translateY(-50%);
 color: #007fff;
 font-weight: bold;
 font-size: 11px;
 width: 18px;
 height: 18px;
 background: rgba(0, 127, 255, 0.2);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
}
.service-card:hover .service-features li {
 background: rgba(0, 127, 255, 0.08);
 border-color: rgba(0, 127, 255, 0.18);
 color: #00bfff;
 transform: translateX(-3px);
 text-shadow: 0 1px 3px rgba(0, 191, 255, 0.2);
}
.service-card:hover .service-features li::before {
 background: rgba(0, 127, 255, 0.25);
 color: #ffffff;
 box-shadow: 0 2px 6px rgba(0, 127, 255, 0.3);
}
.portfolio {
 padding: 100px 0;
 background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}
.portfolio-filter {
 display: flex;
 justify-content: center;
 gap: 20px;
 margin-bottom: 50px;
 flex-wrap: wrap;
}
.filter-btn {
 background: transparent;
 border: 2px solid #007fff;
 color: #007fff;
 padding: 12px 24px;
 border-radius: 30px;
 cursor: pointer;
 transition: all 0.3s ease;
 font-family: 'Alexandria', sans-serif;
 font-weight: 600;
 font-size: 14px;
}
.filter-btn:hover,
.filter-btn.active {
 background: #007fff;
 color: #ffffff;
 transform: translateY(-2px);
 box-shadow: 0 10px 30px rgba(0, 127, 255, 0.3);
}
.portfolio-grid {
 display: grid;
 grid-template-columns: repeat(2, 1fr);
 gap: 30px;
 margin-top: 50px;
}
.portfolio-item {
 position: relative;
 border-radius: 15px;
 overflow: hidden;
 background: #1a1a1a;
 transition: all 0.3s ease;
 cursor: pointer;
 height: 300px;
}
.portfolio-item:hover {
 transform: translateY(-10px);
 box-shadow: 0 20px 40px rgba(0, 127, 255, 0.2);
}
.portfolio-image {
 width: 100%;
 height: 100%;
 position: relative;
 overflow: hidden;
}
.portfolio-image img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 transition: all 0.3s ease;
}
.portfolio-item:hover .portfolio-image img {
 transform: scale(1.05);
}
.portfolio-overlay {
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: rgba(0, 0, 0, 0.8);
 display: flex;
 align-items: center;
 justify-content: center;
 opacity: 0;
 transition: all 0.3s ease;
 padding: 30px;
}
.portfolio-item:hover .portfolio-overlay {
 opacity: 1;
}
.portfolio-info {
 text-align: center;
 color: #ffffff;
 transform: translateY(20px);
 transition: all 0.3s ease;
}
.portfolio-item:hover .portfolio-info {
 transform: translateY(0);
}
.portfolio-info h3 {
 font-size: 24px;
 font-weight: 700;
 margin-bottom: 15px;
 color: #007fff;
}
.portfolio-info p {
 font-size: 16px;
 line-height: 1.6;
 margin-bottom: 20px;
 opacity: 0.9;
}
.portfolio-tags {
 display: flex;
 gap: 10px;
 justify-content: center;
 flex-wrap: wrap;
}
.portfolio-tags .tag {
 background: rgba(0, 127, 255, 0.2);
 color: #007fff;
 padding: 5px 12px;
 border-radius: 15px;
 font-size: 12px;
 font-weight: 600;
 border: 1px solid #007fff;
}
.portfolio-link {
 display: inline-block;
 background: #007fff;
 color: #ffffff;
 padding: 12px 24px;
 border-radius: 25px;
 text-decoration: none;
 font-weight: 600;
 font-size: 14px;
 margin-top: 15px;
 transition: all 0.3s ease;
 border: 2px solid #007fff;
}
.portfolio-link:hover {
 background: transparent;
 color: #007fff;
 transform: translateY(-2px);
 box-shadow: 0 8px 20px rgba(0, 127, 255, 0.3);
}
.about {
 padding: 8rem 0;
 background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
 position: relative;
 overflow: hidden;
}
.about::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: radial-gradient(circle at 30% 70%, rgba(0, 127, 255, 0.03) 0%, transparent 50%);
 pointer-events: none;
}
.about-content {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 position: relative;
 z-index: 2;
 max-width: 800px;
 margin: 0 auto;
}
.about-text {
 width: 100%;
}
.about .section-title {
 font-size: 2.8rem;
 font-weight: 700;
 color: #FFFFFF;
 margin-bottom: 1.5rem;
 position: relative;
 display: inline-block;
}
.about .section-title::after {
 content: '';
 position: absolute;
 bottom: -10px;
 left: 50%;
 transform: translateX(-50%);
 width: 80px;
 height: 4px;
 background: linear-gradient(90deg, #007fff, #00bfff);
 border-radius: 2px;
 animation: decorationGrow 1s ease-out 0.5s both;
}
.about-description {
 font-size: 1.2rem;
 color: #e6e6e6;
 margin-bottom: 3rem;
 line-height: 1.8;
 max-width: 100%;
 opacity: 0.9;
 text-align: center;
}
.about-stats {
 display: grid;
 grid-template-columns: repeat(3, 1fr);
 gap: 2.5rem;
 margin-top: 1rem;
}
.team-section {
 margin-top: 4rem;
}
.team-title {
 font-size: 1.8rem;
 font-weight: 600;
 color: #FFFFFF;
 margin-bottom: 2rem;
 text-align: center;
 position: relative;
}
.team-title::after {
 content: '';
 position: absolute;
 bottom: -8px;
 left: 50%;
 transform: translateX(-50%);
 width: 50px;
 height: 3px;
 background: linear-gradient(90deg, #007fff, #00bfff);
 border-radius: 2px;
}
.team-members {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 1.5rem;
 margin-top: 1rem;
 max-width: 900px;
 margin-left: auto;
 margin-right: auto;
}
.team-member {
 display: flex;
 flex-direction: column;
 align-items: center;
 text-align: center;
 gap: 1rem;
 padding: 1.5rem;
 background: rgba(255, 255, 255, 0.03);
 border: 1px solid rgba(0, 127, 255, 0.1);
 border-radius: 16px;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
}
.team-member::before {
 content: '';
 position: absolute;
 top: 0;
 left: -100%;
 width: 100%;
 height: 100%;
 background: linear-gradient(90deg, transparent, rgba(0, 127, 255, 0.05), transparent);
 transition: all 0.6s ease;
}
.team-member:hover::before {
 left: 100%;
}
.team-member:hover {
 transform: translateY(-5px);
 border-color: rgba(0, 127, 255, 0.3);
 box-shadow: 0 10px 30px rgba(0, 127, 255, 0.1);
}
.member-avatar {
 width: 70px;
 height: 70px;
 background: linear-gradient(135deg, #007fff, #00bfff);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 color: #ffffff;
 font-size: 1.4rem;
 font-weight: 600;
 flex-shrink: 0;
 transition: all 0.3s ease;
 box-shadow: 0 6px 20px rgba(0, 127, 255, 0.4);
 margin-bottom: 0.5rem;
}
.team-member:hover .member-avatar {
 background: linear-gradient(135deg, rgba(0, 127, 255, 0.2), rgba(0, 191, 255, 0.1));
 border-color: #007fff;
 transform: scale(1.1);
}
.member-info {
 flex: 1;
}
.member-name {
 font-size: 1.1rem;
 font-weight: 600;
 color: #FFFFFF;
 margin-bottom: 0.5rem;
 transition: all 0.3s ease;
}
.member-role {
 font-size: 0.9rem;
 color: #b3b3b3;
 margin: 0;
 transition: all 0.3s ease;
}
.team-member:hover .member-name {
 color: #007fff;
}
.team-member:hover .member-role {
 color: #cccccc;
}
.member-social {
 display: flex;
 gap: 0.8rem;
 justify-content: center;
 margin-top: 1rem;
}
.social-icon {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 36px;
 height: 36px;
 background: rgba(0, 127, 255, 0.1);
 border: 1px solid rgba(0, 127, 255, 0.2);
 border-radius: 50%;
 color: #007fff;
 text-decoration: none;
 transition: all 0.3s ease;
 backdrop-filter: blur(10px);
}
.social-icon:hover {
 background: #007fff;
 color: #ffffff;
 transform: translateY(-2px);
 box-shadow: 0 8px 20px rgba(0, 127, 255, 0.3);
 border-color: #007fff;
}
.social-icon svg {
 transition: all 0.3s ease;
}
.social-icon:hover svg {
 transform: scale(1.1);
}
.stat {
 text-align: center;
 padding: 2rem 1.5rem;
 background: rgba(255, 255, 255, 0.02);
 border: 1px solid rgba(0, 127, 255, 0.1);
 border-radius: 16px;
 transition: all 0.4s ease;
 position: relative;
 overflow: hidden;
}
.stat::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(135deg, rgba(0, 127, 255, 0.05), rgba(0, 191, 255, 0.02));
 opacity: 0;
 transition: all 0.3s ease;
}
.stat:hover {
 transform: translateY(-8px);
 border-color: rgba(0, 127, 255, 0.3);
 box-shadow: 0 15px 35px rgba(0, 127, 255, 0.15);
}
.stat:hover::before {
 opacity: 1;
}
.stat-number {
 font-size: 3rem;
 font-weight: 700;
 background: linear-gradient(135deg, #007fff, #00bfff);
 -webkit-background-clip: text;
 -webkit-text-fill-color: transparent;
 background-clip: text;
 margin-bottom: 0.8rem;
 position: relative;
 z-index: 2;
 transition: all 0.3s ease;
}
.stat:hover .stat-number {
 transform: scale(1.1);
}
.stat-label {
 color: #cccccc;
 font-size: 1rem;
 font-weight: 500;
 position: relative;
 z-index: 2;
 transition: all 0.3s ease;
}
.stat:hover .stat-label {
 color: #ffffff;
}
@keyframes pulseGlow {
 0%, 100% {
 opacity: 0.3;
 transform: scale(1);
 }
 50% {
 opacity: 0.6;
 transform: scale(1.1);
 }
}
.contact {
 padding: 100px 0;
 background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}
.contact-cards {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 30px;
 margin-top: 50px;
}
.contact-card {
 background: rgba(255, 255, 255, 0.02);
 border: 1px solid rgba(0, 127, 255, 0.1);
 border-radius: 20px;
 padding: 40px 30px;
 text-align: center;
 transition: all 0.3s ease;
 position: relative;
 overflow: hidden;
}
.contact-card::before {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(135deg, rgba(0, 127, 255, 0.05), rgba(0, 86, 179, 0.05));
 opacity: 0;
 transition: all 0.3s ease;
}
.contact-card:hover {
 transform: translateY(-10px);
 border-color: rgba(0, 127, 255, 0.3);
 box-shadow: 0 20px 40px rgba(0, 127, 255, 0.1);
}
.contact-card:hover::before {
 opacity: 1;
}
.contact-card-icon {
 width: 80px;
 height: 80px;
 background: linear-gradient(135deg, #007fff, #0056b3);
 border-radius: 50%;
 display: flex;
 align-items: center;
 justify-content: center;
 margin: 0 auto 25px;
 transition: all 0.3s ease;
 position: relative;
 z-index: 1;
}
.contact-card:hover .contact-card-icon {
 transform: scale(1.1);
 box-shadow: 0 10px 30px rgba(0, 127, 255, 0.3);
}
.contact-card-icon svg {
 color: #ffffff;
 transition: all 0.3s ease;
}
.contact-card:hover .contact-card-icon svg {
 transform: scale(1.1);
}
.contact-card-content {
 position: relative;
 z-index: 1;
}
.contact-card-content h3 {
 color: #007fff;
 font-size: 22px;
 font-weight: 700;
 margin-bottom: 15px;
 transition: all 0.3s ease;
}
.contact-card:hover .contact-card-content h3 {
 color: #ffffff;
}
.contact-card-content p {
 color: #cccccc;
 font-size: 16px;
 line-height: 1.6;
 margin-bottom: 20px;
 opacity: 0.8;
}
.contact-link {
 color: #007fff;
 font-weight: 600;
 font-size: 16px;
 text-decoration: none;
 transition: all 0.3s ease;
 display: inline-block;
 padding: 8px 0;
 border-bottom: 2px solid transparent;
}
.contact-link:hover {
 color: #ffffff;
 border-bottom-color: #007fff;
 transform: translateY(-2px);
}
.contact-card:hover .contact-link {
 color: #ffffff;
}
.footer {
 background: #000000;
 padding: 2rem 0 1rem;
 border-top: 1px solid #333333;
}
.footer-content {
 display: flex;
 justify-content: center;
 margin-bottom: 2rem;
}
.footer-social {
 display: flex;
 gap: 1.5rem;
 align-items: center;
}
.social-link {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 48px;
 height: 48px;
 background: rgba(255, 255, 255, 0.05);
 border: 1px solid rgba(0, 127, 255, 0.2);
 border-radius: 12px;
 color: #cccccc;
 text-decoration: none;
 transition: all 0.3s ease;
 backdrop-filter: blur(10px);
}
.social-link:hover {
 background: rgba(0, 127, 255, 0.1);
 border-color: #007fff;
 color: #007fff;
 transform: translateY(-2px);
 box-shadow: 0 8px 20px rgba(0, 127, 255, 0.3);
}
.social-link svg {
 transition: all 0.3s ease;
}
.social-link:hover svg {
 transform: scale(1.1);
}
.footer-bottom {
 text-align: center;
 padding-top: 2rem;
 border-top: 1px solid #333333;
 color: #666666;
}
html {
 scroll-behavior: smooth;
}
section {
 opacity: 0;
 transform: translateY(50px);
 transition: all 0.8s ease;
}
section.visible {
 opacity: 1;
 transform: translateY(0);
}
.services-grid .service-card,
.portfolio-grid .portfolio-item,
.contact-cards .contact-card {
 opacity: 0;
 transform: translateY(30px);
 transition: all 0.6s ease;
}
.services-grid .service-card.animate,
.portfolio-grid .portfolio-item.animate,
.contact-cards .contact-card.animate {
 opacity: 1;
 transform: translateY(0);
}
.services-grid .service-card:nth-child(1) {transition-delay: 0.1s;}
.services-grid .service-card:nth-child(2) {transition-delay: 0.2s;}
.services-grid .service-card:nth-child(3) {transition-delay: 0.3s;}
.portfolio-grid .portfolio-item:nth-child(1) {transition-delay: 0.1s;}
.portfolio-grid .portfolio-item:nth-child(2) {transition-delay: 0.2s;}
.portfolio-grid .portfolio-item:nth-child(3) {transition-delay: 0.3s;}
.portfolio-grid .portfolio-item:nth-child(4) {transition-delay: 0.4s;}
.portfolio-grid .portfolio-item:nth-child(5) {transition-delay: 0.5s;}
.portfolio-grid .portfolio-item:nth-child(6) {transition-delay: 0.6s;}
.contact-cards .contact-card:nth-child(1) {transition-delay: 0.1s;}
.contact-cards .contact-card:nth-child(2) {transition-delay: 0.2s;}
.contact-cards .contact-card:nth-child(3) {transition-delay: 0.3s;}
.contact-cards .contact-card:nth-child(4) {transition-delay: 0.4s;}
.contact-cards .contact-card:nth-child(5) {transition-delay: 0.5s;}
.contact-cards .contact-card:nth-child(6) {transition-delay: 0.6s;}
.page-loader {
 position: fixed;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 background: radial-gradient(ellipse at center, #001122 0%, #000000 100%);
 display: flex;
 align-items: center;
 justify-content: center;
 z-index: 9999;
 transition: opacity 0.6s ease-out, visibility 0.6s ease-out;
 will-change: opacity, visibility;
 overflow: hidden;
}
.page-loader.hidden {
 opacity: 0;
 visibility: hidden;
 pointer-events: none;
}
.loader-content {
 text-align: center;
 color: #007fff;
 position: relative;
 z-index: 2;
 animation: loaderContentFadeIn 1s ease-out;
}
.loader-logo {
 margin-bottom: 3rem;
 position: relative;
}
.logo-wrapper {
 position: relative;
 display: inline-block;
 animation: logoFloat 3s ease-in-out infinite;
}
.loader-logo-image {
 height: 120px;
 width: auto;
 filter: drop-shadow(0 0 30px rgba(0, 127, 255, 0.8));
 animation: logoGlow 2s ease-in-out infinite alternate;
 position: relative;
 z-index: 2;
}
.logo-glow {
 position: absolute;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 width: 150px;
 height: 150px;
 background: radial-gradient(circle, rgba(0, 127, 255, 0.3) 0%, transparent 70%);
 border-radius: 50%;
 animation: glowPulse 2s ease-in-out infinite;
 z-index: 1;
}
.loader-text {
 margin-bottom: 2rem;
 display: flex;
 align-items: center;
 justify-content: center;
 gap: 1rem;
}
.loading-text {
 font-size: 1.4rem;
 font-weight: 600;
 color: #FFFFFF;
 letter-spacing: 1px;
 animation: textFadeIn 1s ease-out 0.5s both;
}
.loading-dots {
 display: flex;
 gap: 8px;
 align-items: center;
}
.dot {
 width: 8px;
 height: 8px;
 background: #007fff;
 border-radius: 50%;
 animation: dotBounce 1.4s ease-in-out infinite;
}
.dot:nth-child(1) {
 animation-delay: 0s;
}
.dot:nth-child(2) {
 animation-delay: 0.2s;
}
.dot:nth-child(3) {
 animation-delay: 0.4s;
}
.loader-progress {
 width: 300px;
 margin: 0 auto;
 animation: progressFadeIn 1s ease-out 1s both;
}
.progress-bar {
 width: 100%;
 height: 4px;
 background: rgba(255, 255, 255, 0.1);
 border-radius: 2px;
 overflow: hidden;
 margin-bottom: 1rem;
 position: relative;
}
.progress-fill {
 height: 100%;
 background: linear-gradient(90deg, #007fff, #00bfff, #0099ff);
 border-radius: 2px;
 width: 0%;
 animation: progressFill 3s ease-out;
 position: relative;
}
.progress-fill::after {
 content: '';
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
 animation: progressShine 2s ease-in-out infinite;
}
.progress-text {
 font-size: 1.2rem;
 color: #007fff;
 font-weight: 700;
 text-align: center;
 text-shadow: 0 0 10px rgba(0, 127, 255, 0.5);
 transition: all 0.3s ease;
 letter-spacing: 0.5px;
}
.progress-text.complete {
 color: #007fff;
 text-shadow: 0 0 15px rgb(52, 147, 255);
 transform: scale(1.1);
 animation: completeGlow 0.5s ease-out;
}
@keyframes completeGlow {
 0% {
 transform: scale(1);
 text-shadow: 0 0 10px rgba(0, 127, 255, 0.5);
 }
 50% {
 transform: scale(1.2);
 text-shadow: 0 0 20px rgba(0, 255, 136, 1);
 }
 100% {
 transform: scale(1.1);
 text-shadow: 0 0 15px rgba(0, 255, 136, 0.7);
 }
}
.loader-background {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 pointer-events: none;
 z-index: 1;
}
.bg-circle {
 position: absolute;
 border-radius: 50%;
 background: radial-gradient(circle, rgba(0, 127, 255, 0.1) 0%, transparent 70%);
 animation: circleFloat 20s linear infinite;
}
.circle-1 {
 width: 300px;
 height: 300px;
 top: -150px;
 right: -150px;
 animation-duration: 25s;
}
.circle-2 {
 width: 200px;
 height: 200px;
 bottom: -100px;
 left: -100px;
 animation-duration: 30s;
 animation-direction: reverse;
}
.circle-3 {
 width: 150px;
 height: 150px;
 top: 50%;
 left: 50%;
 transform: translate(-50%, -50%);
 animation-duration: 35s;
 background: radial-gradient(circle, rgba(0, 191, 255, 0.08) 0%, transparent 70%);
}
@keyframes loaderContentFadeIn {
 0% {
 opacity: 0;
 transform: translateY(20px);
 }
 100% {
 opacity: 1;
 transform: translateY(0);
 }
}
@keyframes logoGlow {
 0% {
 filter: drop-shadow(0 0 30px rgba(0, 127, 255, 0.8));
 }
 100% {
 filter: drop-shadow(0 0 50px rgba(0, 127, 255, 1));
 }
}
@keyframes glowPulse {
 0%, 100% {
 opacity: 0.3;
 transform: translate(-50%, -50%) scale(1);
 }
 50% {
 opacity: 0.6;
 transform: translate(-50%, -50%) scale(1.1);
 }
}
@keyframes textFadeIn {
 0% {
 opacity: 0;
 transform: translateY(10px);
 }
 100% {
 opacity: 1;
 transform: translateY(0);
 }
}
@keyframes dotBounce {
 0%, 80%, 100% {
 transform: scale(0.8);
 opacity: 0.5;
 }
 40% {
 transform: scale(1.2);
 opacity: 1;
 }
}
@keyframes progressFadeIn {
 0% {
 opacity: 0;
 transform: translateY(10px);
 }
 100% {
 opacity: 1;
 transform: translateY(0);
 }
}
@keyframes progressFill {
 0% {
 width: 0%;
 }
 100% {
 width: 100%;
 }
}
@keyframes progressShine {
 0% {
 transform: translateX(-100%);
 }
 100% {
 transform: translateX(100%);
 }
}
@keyframes circleFloat {
 0% {
 transform: rotate(0deg) translateX(50px) rotate(0deg);
 }
 100% {
 transform: rotate(360deg) translateX(50px) rotate(-360deg);
 }
}
@media (min-width: 1200px) {
 .hero-title {
 font-size: 4.5rem;
 min-height: 180px;
 }
}
@media (max-width: 768px) {
 .hamburger {
 display: flex;
 }
 .nav-menu {
 position: fixed;
 right: -100%;
 top: 70px;
 flex-direction: column;
 background-color: rgba(0, 0, 0, 0.95);
 width: 100%;
 text-align: center;
 transition: 0.3s;
 padding: 2rem 0;
 box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
 backdrop-filter: blur(10px);
 border-top: 1px solid rgba(255, 255, 255, 0.1);
 }
 .nav-menu.active {
 right: 0;
 }
 .hamburger.active .bar:nth-child(2) {
 opacity: 0;
 }
 .hamburger.active .bar:nth-child(1) {
 transform: translateY(8px) rotate(45deg);
 }
 .hamburger.active .bar:nth-child(3) {
 transform: translateY(-8px) rotate(-45deg);
 }
 .hero-container {
 flex-direction: column;
 text-align: center;
 gap: 2rem;
 }
 .hero-features {
 grid-template-columns: repeat(2, 1fr);
 grid-template-rows: repeat(3, 1fr);
 gap: 1rem;
 max-width: 100%;
 }
 .hero-title {
 font-size: 2.5rem;
 }
 .title-decoration {
 margin: 1rem auto 0;
 }
 .section-title::after {
 left: 50%;
 transform: translateX(-50%);
 }
 .feature-card {
 text-align: center;
 flex-direction: column;
 gap: 12px;
 padding: 16px;
 }
 .feature-content {
 text-align: center;
 }
 .hero-graphic {
 width: 250px;
 height: 250px;
 }
 .services-grid {
 grid-template-columns: 1fr;
 }
 .portfolio-grid {
 grid-template-columns: 1fr;
 gap: 20px;
 }
 .portfolio-item {
 height: auto;
 min-height: 250px;
 }
 .portfolio-image {
 height: auto;
 min-height: 250px;
 }
 .portfolio-image img {
 object-fit: cover;
 object-position: center;
 height: 100%;
 }
 .about-content {
 max-width: 100%;
 padding: 0 1rem;
 }
 .about .section-title {
 font-size: 2.2rem;
 }
 .about .section-title::after {
 left: 50%;
 transform: translateX(-50%);
 width: 60px;
 }
 .about-description {
 font-size: 1.1rem;
 max-width: 100%;
 }
 .about-stats {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 justify-content: center;
 }
 .team-section {
 margin-top: 3rem;
 }
 .team-title {
 font-size: 1.5rem;
 }
 .team-members {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 }
 .team-member {
 padding: 1.2rem;
 gap: 1rem;
 }
 .member-avatar {
 width: 60px;
 height: 60px;
 font-size: 1.2rem;
 }
 .contact-cards {
 grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 20px;
 }
 .footer-social {
 gap: 1rem;
 }
 .social-link {
 width: 44px;
 height: 44px;
 }
 .hero-cta {
 justify-content: center;
 }
 .portfolio-filter {
 gap: 10px;
 }
 .filter-btn {
 padding: 10px 16px;
 font-size: 12px;
 }
}
@media (max-width: 480px) {
 .hero-title {
 font-size: 2rem;
 }
 .section-title {
 font-size: 2rem;
 }
 .hero-buttons {
 flex-direction: column;
 align-items: center;
 }
 .btn {
 width: 100%;
 max-width: 250px;
 }
 .hero-features {
 grid-template-columns: 1fr;
 grid-template-rows: repeat(6, 1fr);
 gap: 0.8rem;
 }
 .feature-card {
 text-align: center;
 flex-direction: column;
 gap: 10px;
 padding: 14px;
 }
 .feature-content {
 text-align: center;
 }
 .feature-content h3 {
 font-size: 0.95rem;
 }
 .feature-content p {
 font-size: 0.85rem;
 }
 .about .section-title {
 font-size: 1.8rem;
 }
 .about-description {
 font-size: 1rem;
 margin-bottom: 2rem;
 }
 .about-stats {
 grid-template-columns: 1fr;
 gap: 1rem;
 }
 .stat {
 padding: 1.5rem 1rem;
 }
 .stat-number {
 font-size: 2.2rem;
 }
}
@keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(30px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
}
.fade-in-up {
 animation: fadeInUp 0.6s ease-out;
}
section {
 scroll-margin-top: 80px;
}
.logo-link {
 display: inline-block;
 transition: transform 0.3s ease;
}
.logo-link:hover {
 transform: scale(1.05);
}
.floating-buttons {
 position: fixed;
 bottom: 30px;
 right: 30px;
 display: flex;
 flex-direction: column;
 gap: 15px;
 z-index: 1000;
}
.back-to-top {
 position: fixed;
 bottom: 30px;
 left: 30px;
 z-index: 1000;
}
.floating-btn {
 width: 60px;
 height: 60px;
 border-radius: 50%;
 border: none;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.3s ease;
 box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
 text-decoration: none;
 backdrop-filter: blur(10px);
}
.back-to-top {
 background: linear-gradient(135deg, #007fff, #00bfff);
 color: white;
 opacity: 0;
 visibility: hidden;
 transform: translateY(20px);
 width: 60px;
 height: 60px;
 border-radius: 50%;
 border: none;
 cursor: pointer;
 display: flex;
 align-items: center;
 justify-content: center;
 transition: all 0.3s ease;
 box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
 backdrop-filter: blur(10px);
}
.back-to-top.show {
 opacity: 1;
 visibility: visible;
 transform: translateY(0);
}
.back-to-top:hover {
 transform: translateY(-3px) scale(1.1);
 box-shadow: 0 6px 25px rgba(0, 127, 255, 0.4);
}
.whatsapp-btn {
 background: linear-gradient(135deg, #0099ff, #007fff);
 color: white;
 animation: whatsappPulse 2s ease-in-out infinite;
}
.whatsapp-btn:hover {
 transform: translateY(-3px) scale(1.1);
 box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
 animation: none;
}
@keyframes whatsappPulse {
 0%, 100% {
 transform: scale(1);
 box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
 }
 50% {
 transform: scale(1.05);
 box-shadow: 0 6px 25px rgba(37, 211, 102, 0.3);
 }
}
@media (max-width: 768px) {
 .floating-buttons {
 bottom: 20px;
 right: 20px;
 gap: 12px;
 }
 .back-to-top {
 bottom: 20px;
 left: 20px;
 }
 .floating-btn {
 width: 50px;
 height: 50px;
 }
}
@media (max-width: 480px) {
 .floating-buttons {
 bottom: 15px;
 right: 15px;
 gap: 10px;
 }
 .back-to-top {
 bottom: 15px;
 left: 15px;
 }
 .floating-btn {
 width: 45px;
 height: 45px;
 }
}
::-webkit-scrollbar {
 width: 8px;
}
::-webkit-scrollbar-track {
 background: #000000;
}
::-webkit-scrollbar-thumb {
 background: #007fff;
 border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
 background: #0066cc;
}
.hero-container {
 min-height: 600px;
 contain: layout style;
}
.hero-title {
 font-size: 1.8rem;
 line-height: 1.5;
 min-height: 100px;
 contain: layout;
}
.hero-subtitle {
 min-height: 60px;
 contain: layout;
}
.hero-features {
 min-height: 200px;
 contain: layout style;
}
img {
 max-width: 100%;
 height: auto;
 display: block;
}
.loader-logo-image,
.logo-image {
 width: auto;
 height: auto;
 max-width: 100%;
}
.portfolio-image img {
 width: 100%;
 height: auto;
 aspect-ratio: 4/3;
 object-fit: cover;
}
.feature-card,
.service-card,
.portfolio-item {
 contain: layout style paint;
}
.hero-features {
 min-height: 200px;
}
.services-grid {
 min-height: 400px;
}
.portfolio-grid {
 min-height: 600px;
}
