* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--bg-primary: #0A0F1F;
--bg-secondary: #1E2742;
--accent-blue: #3A7AFD;
--accent-purple: #8C50FF;
--text-light: #EEEEEE;
--accent-mint: #00F5A0;
}

html {
scroll-behavior: smooth;
-webkit-text-size-adjust: 100%;
overflow-x: hidden;
max-width: 100%;
}

* {
word-wrap: break-word;
overflow-wrap: break-word;
max-width: 100%;
}

table, iframe, video, embed, object {
max-width: 100%;
}

body {
font-family: 'Inter', 'Poppins', 'Roboto', sans-serif;
background-color: var(--bg-primary);
color: var(--text-light);
line-height: 1.6;
overflow-x: hidden;
position: relative;
min-width: 320px;
max-width: 100vw;
}

img {
max-width: 100%;
height: auto;
display: block;
}

body::before {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: 
radial-gradient(circle at 20% 50%, rgba(58, 122, 253, 0.1) 0%, transparent 50%),
radial-gradient(circle at 80% 80%, rgba(140, 80, 255, 0.1) 0%, transparent 50%),
radial-gradient(circle at 40% 20%, rgba(0, 245, 160, 0.05) 0%, transparent 50%);
background-size: 100% 100%;
pointer-events: none;
z-index: 0;
}

body::after {
content: '';
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-image: 
linear-gradient(rgba(58, 122, 253, 0.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(58, 122, 253, 0.03) 1px, transparent 1px);
background-size: 50px 50px;
pointer-events: none;
z-index: 0;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
position: relative;
z-index: 1;
width: 100%;
}

.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background: rgba(10, 15, 31, 0.9);
backdrop-filter: blur(10px);
border-bottom: 1px solid rgba(58, 122, 253, 0.2);
z-index: 1000;
padding: 15px 0;
}

.nav-container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: nowrap;
gap: 15px;
}

.logo {
font-family: 'Orbitron', 'Montserrat', 'Exo 2', sans-serif;
font-size: 20px;
font-weight: 700;
color: var(--accent-blue);
text-decoration: none;
text-transform: uppercase;
letter-spacing: 2px;
transition: all 0.3s ease;
flex-shrink: 0;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: calc(100% - 60px);
}

.logo:hover {
color: var(--accent-purple);
text-shadow: 0 0 20px rgba(140, 80, 255, 0.5);
}

.nav-menu {
display: flex;
list-style: none;
gap: 30px;
margin: 0;
padding: 0;
}

.nav-menu li {
margin: 0;
padding: 0;
}

.nav-menu a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
transition: all 0.3s ease;
position: relative;
}

.nav-menu a::after {
content: '';
position: absolute;
bottom: -5px;
left: 0;
width: 0;
height: 2px;
background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
transition: width 0.3s ease;
}

.nav-menu a:hover::after {
width: 100%;
}

.nav-menu a:hover {
color: var(--accent-blue);
}

.nav-toggle {
display: none;
flex-direction: column;
background: transparent;
border: none;
cursor: pointer;
gap: 5px;
padding: 5px;
z-index: 1001;
position: relative;
flex-shrink: 0;
min-width: 35px;
}

.nav-toggle span {
width: 25px;
height: 2px;
background: var(--accent-blue);
transition: all 0.3s ease;
display: block;
}

.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 {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
padding-top: 80px;
}

.hero-background {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: 0;
}

.particles {
position: absolute;
width: 100%;
height: 100%;
background-image: 
radial-gradient(2px 2px at 20% 30%, var(--accent-blue), transparent),
radial-gradient(2px 2px at 60% 70%, var(--accent-purple), transparent),
radial-gradient(1px 1px at 50% 50%, var(--accent-mint), transparent),
radial-gradient(1px 1px at 80% 10%, var(--accent-blue), transparent),
radial-gradient(2px 2px at 90% 40%, var(--accent-purple), transparent),
radial-gradient(1px 1px at 33% 60%, var(--accent-mint), transparent),
radial-gradient(1px 1px at 66% 20%, var(--accent-blue), transparent);
background-repeat: repeat;
background-size: 200px 200px;
animation: particleMove 20s linear infinite;
opacity: 0.4;
}

@keyframes particleMove {
0% { transform: translate(0, 0); }
100% { transform: translate(200px, 200px); }
}

.floating-cube {
position: absolute;
width: 200px;
height: 200px;
top: 20%;
right: 10%;
border: 2px solid var(--accent-blue);
transform-style: preserve-3d;
animation: rotateCube 20s linear infinite;
opacity: 0.3;
}

.floating-cube::before,
.floating-cube::after {
content: '';
position: absolute;
width: 100%;
height: 100%;
border: 2px solid var(--accent-purple);
}

.floating-cube::before {
transform: rotateY(45deg);
}

.floating-cube::after {
transform: rotateX(45deg);
}

@keyframes rotateCube {
0% { transform: rotateX(0deg) rotateY(0deg); }
100% { transform: rotateX(360deg) rotateY(360deg); }
}

.hero-content {
text-align: center;
z-index: 1;
position: relative;
padding: 40px 20px;
max-width: 100%;
width: 100%;
}

.hero-title {
font-family: 'Orbitron', 'Montserrat', 'Exo 2', sans-serif;
font-size: 64px;
font-weight: 900;
margin-bottom: 20px;
background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple), var(--accent-mint));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
text-transform: uppercase;
letter-spacing: 3px;
animation: fadeUp 1s ease;
word-wrap: break-word;
overflow-wrap: break-word;
max-width: 100%;
}

@keyframes fadeUp {
from {
opacity: 0;
transform: translateY(30px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.hero-subtitle {
font-size: 20px;
color: var(--text-light);
margin-bottom: 40px;
opacity: 0.9;
animation: fadeUp 1s ease 0.2s both;
word-wrap: break-word;
overflow-wrap: break-word;
max-width: 100%;
padding: 0 10px;
}

.hero-scroll-indicator {
position: absolute;
bottom: 30px;
left: 50%;
transform: translateX(-50%);
z-index: 1;
}

.hero-scroll-indicator span {
display: block;
width: 2px;
height: 30px;
background: linear-gradient(180deg, var(--accent-blue), transparent);
animation: scrollIndicator 2s ease infinite;
}

@keyframes scrollIndicator {
0%, 100% { opacity: 0; transform: translateY(0); }
50% { opacity: 1; transform: translateY(10px); }
}

.btn-primary,
.btn-secondary {
display: inline-block;
padding: 15px 40px;
font-size: 16px;
font-weight: 600;
text-decoration: none;
border-radius: 12px;
transition: all 0.3s ease;
cursor: pointer;
border: none;
font-family: 'Inter', sans-serif;
max-width: 100%;
word-wrap: break-word;
}

.btn-primary {
background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
color: white;
box-shadow: 0 4px 15px rgba(58, 122, 253, 0.3);
}

.btn-primary:hover,
.btn-glow:hover {
box-shadow: 0 6px 25px rgba(58, 122, 253, 0.6), 0 0 30px rgba(140, 80, 255, 0.4);
transform: translateY(-2px);
}

.btn-secondary {
background: transparent;
color: var(--accent-blue);
border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
background: rgba(58, 122, 253, 0.1);
box-shadow: 0 0 20px rgba(58, 122, 253, 0.5);
}

section {
padding: 80px 0;
position: relative;
z-index: 1;
}

section:nth-child(even) {
background-color: var(--bg-secondary);
}

.section-header {
text-align: center;
margin-bottom: 60px;
}

.section-header h2 {
font-family: 'Orbitron', 'Montserrat', 'Exo 2', sans-serif;
font-size: 42px;
font-weight: 700;
margin-bottom: 15px;
color: var(--text-light);
position: relative;
display: inline-block;
}

.section-header h2::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 60px;
height: 3px;
background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
}

.section-subtitle {
font-size: 18px;
color: var(--text-light);
opacity: 0.8;
}

.about {
padding: 100px 0;
}

.about-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 40px;
margin-top: 60px;
width: 100%;
}

.about-card {
text-align: center;
padding: 40px 30px;
background: rgba(30, 39, 66, 0.5);
backdrop-filter: blur(10px);
border: 1px solid rgba(58, 122, 253, 0.2);
border-radius: 16px;
transition: all 0.3s ease;
}

.about-card:hover {
transform: translateY(-10px);
border-color: var(--accent-blue);
box-shadow: 0 10px 40px rgba(58, 122, 253, 0.3);
}

.card-icon {
margin-bottom: 20px;
display: flex;
justify-content: center;
filter: drop-shadow(0 0 10px rgba(58, 122, 253, 0.5));
}

.card-icon svg {
max-width: 100%;
height: auto;
display: block;
}

.about-card h3 {
font-family: 'Orbitron', sans-serif;
font-size: 24px;
margin-bottom: 15px;
color: var(--accent-blue);
}

.about-card p {
color: var(--text-light);
opacity: 0.9;
line-height: 1.8;
}

.services-preview {
padding: 100px 0;
}

.services-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
margin-bottom: 50px;
width: 100%;
}

.service-card {
background: rgba(30, 39, 66, 0.4);
backdrop-filter: blur(10px);
border: 1px solid rgba(58, 122, 253, 0.2);
border-radius: 16px;
overflow: hidden;
transition: all 0.4s ease;
position: relative;
}

.service-card:hover {
transform: translateY(-5px) rotateX(5deg);
border-color: var(--accent-purple);
box-shadow: 0 15px 50px rgba(140, 80, 255, 0.4);
}

.service-image {
width: 100%;
height: 250px;
overflow: hidden;
position: relative;
}

.service-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
transform: scale(1.1);
}

.service-content {
padding: 30px;
}

.service-content h3 {
font-family: 'Orbitron', sans-serif;
font-size: 22px;
margin-bottom: 15px;
color: var(--accent-blue);
}

.service-content p {
color: var(--text-light);
opacity: 0.9;
line-height: 1.8;
}

.glass-card {
background: rgba(30, 39, 66, 0.3);
backdrop-filter: blur(15px);
border: 1px solid rgba(58, 122, 253, 0.3);
}

.features {
padding: 100px 0;
}

.features-list {
max-width: 800px;
margin: 0 auto;
width: 100%;
}

.feature-item {
display: flex;
gap: 30px;
margin-bottom: 40px;
align-items: flex-start;
padding: 30px;
background: rgba(30, 39, 66, 0.3);
backdrop-filter: blur(10px);
border-left: 3px solid var(--accent-blue);
border-radius: 8px;
transition: all 0.3s ease;
}

.feature-item:hover {
border-left-color: var(--accent-purple);
box-shadow: 0 5px 20px rgba(58, 122, 253, 0.2);
transform: translateX(10px);
}

.feature-number {
font-family: 'Orbitron', sans-serif;
font-size: 48px;
font-weight: 900;
color: var(--accent-blue);
opacity: 0.5;
flex-shrink: 0;
}

.feature-content h3 {
font-family: 'Orbitron', sans-serif;
font-size: 24px;
margin-bottom: 10px;
color: var(--text-light);
}

.feature-content p {
color: var(--text-light);
opacity: 0.8;
line-height: 1.8;
}

.testimonials {
padding: 100px 0;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
width: 100%;
}

.testimonial-card {
padding: 40px;
background: rgba(30, 39, 66, 0.4);
backdrop-filter: blur(10px);
border: 1px solid rgba(58, 122, 253, 0.2);
border-radius: 16px;
transition: all 0.3s ease;
}

.testimonial-card:hover {
border-color: var(--accent-purple);
box-shadow: 0 10px 30px rgba(140, 80, 255, 0.3);
}

.testimonial-text {
font-size: 18px;
line-height: 1.8;
margin-bottom: 20px;
color: var(--text-light);
font-style: italic;
}

.testimonial-author {
color: var(--accent-blue);
font-weight: 600;
}

.courses {
padding: 100px 0;
background-color: var(--bg-secondary);
position: relative;
}

.courses::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(58, 122, 253, 0.05), rgba(140, 80, 255, 0.05));
pointer-events: none;
}

.courses-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
position: relative;
z-index: 1;
}

.course-card {
background: rgba(30, 39, 66, 0.5);
backdrop-filter: blur(15px);
border: 2px solid rgba(58, 122, 253, 0.3);
border-radius: 20px;
overflow: hidden;
transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
position: relative;
display: flex;
flex-direction: column;
}

.course-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(58, 122, 253, 0.1), rgba(140, 80, 255, 0.1));
opacity: 0;
transition: opacity 0.5s ease;
z-index: 0;
}

.course-card:hover {
transform: translateY(-15px) scale(1.02);
border-color: var(--accent-purple);
box-shadow: 0 20px 60px rgba(140, 80, 255, 0.5), 0 0 40px rgba(58, 122, 253, 0.3);
}

.course-card:hover::before {
opacity: 1;
}

.course-image {
position: relative;
width: 100%;
height: 280px;
overflow: hidden;
z-index: 1;
}

.course-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.course-card:hover .course-image img {
transform: scale(1.15) rotate(2deg);
}

.course-badge {
position: absolute;
top: 20px;
right: 20px;
padding: 8px 18px;
background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
color: white;
font-size: 12px;
font-weight: 700;
border-radius: 25px;
text-transform: uppercase;
letter-spacing: 1.5px;
box-shadow: 0 4px 20px rgba(58, 122, 253, 0.5);
z-index: 2;
backdrop-filter: blur(10px);
transition: all 0.3s ease;
}

.course-card:hover .course-badge {
transform: scale(1.1);
box-shadow: 0 6px 30px rgba(140, 80, 255, 0.6);
}

.course-content {
padding: 35px;
position: relative;
z-index: 1;
flex-grow: 1;
display: flex;
flex-direction: column;
}

.course-content h3 {
font-family: 'Orbitron', sans-serif;
font-size: 26px;
margin-bottom: 18px;
color: var(--accent-blue);
font-weight: 700;
line-height: 1.3;
transition: color 0.3s ease;
}

.course-card:hover .course-content h3 {
color: var(--accent-purple);
text-shadow: 0 0 15px rgba(140, 80, 255, 0.4);
}

.course-content p {
color: var(--text-light);
opacity: 0.9;
line-height: 1.9;
margin-bottom: 25px;
font-size: 16px;
flex-grow: 1;
}

.course-meta {
display: flex;
gap: 25px;
margin-bottom: 25px;
flex-wrap: wrap;
align-items: center;
}

.course-duration,
.course-level {
font-size: 14px;
color: var(--accent-mint);
font-weight: 600;
position: relative;
padding-left: 25px;
text-transform: uppercase;
letter-spacing: 1px;
}

.course-duration::before {
content: '⏱';
position: absolute;
left: 0;
font-size: 16px;
filter: drop-shadow(0 0 5px rgba(0, 245, 160, 0.5));
}

.course-level::before {
content: '💻';
position: absolute;
left: 0;
font-size: 16px;
filter: drop-shadow(0 0 5px rgba(0, 245, 160, 0.5));
}

.course-content .btn-secondary {
width: 100%;
text-align: center;
justify-content: center;
padding: 14px 30px;
font-size: 15px;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 1.5px;
border: 2px solid var(--accent-blue);
background: transparent;
position: relative;
overflow: hidden;
margin-top: auto;
}

.course-content .btn-secondary::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(58, 122, 253, 0.3), transparent);
transition: left 0.5s ease;
}

.course-content .btn-secondary:hover::before {
left: 100%;
}

.course-content .btn-secondary:hover {
border-color: var(--accent-purple);
background: rgba(140, 80, 255, 0.1);
box-shadow: 0 0 25px rgba(140, 80, 255, 0.4);
transform: translateY(-2px);
}

.portfolio {
padding: 100px 0;
background-color: var(--bg-secondary);
}

.portfolio-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
width: 100%;
}

.portfolio-item {
background: rgba(30, 39, 66, 0.4);
backdrop-filter: blur(10px);
border: 1px solid rgba(58, 122, 253, 0.2);
border-radius: 16px;
overflow: hidden;
transition: all 0.4s ease;
position: relative;
cursor: pointer;
}

.portfolio-item:hover {
transform: translateY(-10px);
border-color: var(--accent-purple);
box-shadow: 0 15px 50px rgba(140, 80, 255, 0.4);
}

.portfolio-image {
position: relative;
width: 100%;
height: 300px;
overflow: hidden;
}

.portfolio-image img {
width: 100%;
height: 100%;
object-fit: cover;
transition: transform 0.5s ease;
}

.portfolio-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(58, 122, 253, 0.9), rgba(140, 80, 255, 0.9));
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
transition: opacity 0.4s ease;
}

.portfolio-item:hover .portfolio-overlay {
opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
transform: scale(1.15);
}

.portfolio-info {
text-align: center;
padding: 20px;
color: white;
}

.portfolio-info h3 {
font-family: 'Orbitron', sans-serif;
font-size: 24px;
margin-bottom: 10px;
font-weight: 700;
}

.portfolio-info p {
font-size: 16px;
opacity: 0.95;
line-height: 1.6;
}

.process {
padding: 100px 0;
}

.process-timeline {
max-width: 900px;
margin: 0 auto;
position: relative;
width: 100%;
}

.process-timeline::before {
content: '';
position: absolute;
left: 50px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(180deg, var(--accent-blue), var(--accent-purple));
opacity: 0.3;
}

@media (max-width: 768px) {
.process-timeline::before {
left: 30px;
}
}

.process-step {
display: flex;
gap: 40px;
margin-bottom: 60px;
position: relative;
align-items: flex-start;
}

.process-step:last-child {
margin-bottom: 0;
}

.process-number {
font-family: 'Orbitron', sans-serif;
font-size: 48px;
font-weight: 900;
color: var(--accent-blue);
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
background: rgba(30, 39, 66, 0.6);
backdrop-filter: blur(10px);
border: 2px solid var(--accent-blue);
border-radius: 50%;
flex-shrink: 0;
position: relative;
z-index: 1;
box-shadow: 0 0 30px rgba(58, 122, 253, 0.3);
transition: all 0.3s ease;
}

.process-step:hover .process-number {
transform: scale(1.1);
border-color: var(--accent-purple);
box-shadow: 0 0 40px rgba(140, 80, 255, 0.5);
}

.process-content {
flex: 1;
padding: 30px;
background: rgba(30, 39, 66, 0.4);
backdrop-filter: blur(10px);
border: 1px solid rgba(58, 122, 253, 0.2);
border-radius: 16px;
transition: all 0.3s ease;
}

.process-step:hover .process-content {
border-color: var(--accent-purple);
box-shadow: 0 10px 30px rgba(140, 80, 255, 0.2);
}

.process-content h3 {
font-family: 'Orbitron', sans-serif;
font-size: 28px;
margin-bottom: 15px;
color: var(--accent-blue);
}

.process-content p {
font-size: 16px;
line-height: 1.8;
opacity: 0.9;
color: var(--text-light);
}

.cta {
padding: 100px 0;
text-align: center;
background: linear-gradient(135deg, rgba(58, 122, 253, 0.1), rgba(140, 80, 255, 0.1));
}

.cta-content h2 {
font-family: 'Orbitron', sans-serif;
font-size: 42px;
margin-bottom: 20px;
color: var(--text-light);
}

.cta-content p {
font-size: 20px;
margin-bottom: 40px;
opacity: 0.9;
}

.page-hero {
padding: 120px 0 60px;
text-align: center;
background: linear-gradient(135deg, rgba(58, 122, 253, 0.1), rgba(140, 80, 255, 0.1));
}

.page-hero h1 {
font-family: 'Orbitron', sans-serif;
font-size: 48px;
font-weight: 700;
margin-bottom: 15px;
color: var(--text-light);
}

.page-subtitle {
font-size: 18px;
opacity: 0.8;
}

.contact-section {
padding: 80px 0;
}

.map-section {
padding: 80px 0;
background-color: var(--bg-secondary);
}

.map-wrapper {
position: relative;
border-radius: 16px;
overflow: hidden;
border: 2px solid rgba(58, 122, 253, 0.3);
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
transition: all 0.3s ease;
}

.map-wrapper:hover {
border-color: var(--accent-purple);
box-shadow: 0 15px 50px rgba(140, 80, 255, 0.4);
}

.map-wrapper iframe {
display: block;
width: 100%;
height: 450px;
border: none;
filter: grayscale(20%) brightness(0.9);
transition: filter 0.3s ease;
}

.map-wrapper:hover iframe {
filter: grayscale(0%) brightness(1);
}

.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
}

.contact-info h2 {
font-family: 'Orbitron', sans-serif;
font-size: 36px;
margin-bottom: 20px;
color: var(--text-light);
}

.contact-info > p {
font-size: 18px;
margin-bottom: 40px;
opacity: 0.9;
line-height: 1.8;
}

.contact-details {
display: flex;
flex-direction: column;
gap: 30px;
}

.contact-item h3 {
font-family: 'Orbitron', sans-serif;
font-size: 20px;
margin-bottom: 10px;
color: var(--accent-blue);
}

.contact-item p {
font-size: 16px;
line-height: 1.8;
opacity: 0.9;
}

.contact-item a {
color: var(--accent-purple);
text-decoration: none;
transition: all 0.3s ease;
}

.contact-item a:hover {
color: var(--accent-blue);
text-shadow: 0 0 10px rgba(58, 122, 253, 0.5);
}

.contact-form-wrapper {
background: rgba(30, 39, 66, 0.4);
backdrop-filter: blur(10px);
border: 1px solid rgba(58, 122, 253, 0.2);
border-radius: 16px;
padding: 40px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 25px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 10px;
}

.form-group label {
font-weight: 600;
color: var(--text-light);
font-size: 14px;
text-transform: uppercase;
letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
padding: 15px;
background: rgba(10, 15, 31, 0.5);
border: 1px solid rgba(58, 122, 253, 0.3);
border-radius: 8px;
color: var(--text-light);
font-family: 'Inter', sans-serif;
font-size: 16px;
transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
outline: none;
border-color: var(--accent-blue);
box-shadow: 0 0 15px rgba(58, 122, 253, 0.3);
}

.checkbox-group {
flex-direction: row;
align-items: center;
gap: 10px;
}

.checkbox-group input[type="checkbox"] {
width: 20px;
height: 20px;
cursor: pointer;
}

.checkbox-group label {
text-transform: none;
letter-spacing: 0;
font-weight: 400;
cursor: pointer;
}

.success-section {
padding: 150px 0;
text-align: center;
min-height: 70vh;
display: flex;
align-items: center;
justify-content: center;
}

.success-content {
max-width: 600px;
}

.success-icon {
margin-bottom: 30px;
display: flex;
justify-content: center;
animation: fadeUp 1s ease;
}

.success-content h1 {
font-family: 'Orbitron', sans-serif;
font-size: 48px;
margin-bottom: 20px;
color: var(--text-light);
}

.success-message {
font-size: 20px;
margin-bottom: 40px;
opacity: 0.9;
line-height: 1.8;
}

.services-detail {
padding: 80px 0;
}

.services-detail.alt {
background-color: var(--bg-secondary);
}

.service-detail-item {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 60px;
align-items: center;
margin-bottom: 80px;
}

.service-detail-item:last-child {
margin-bottom: 0;
}

.service-detail-item.reverse {
direction: rtl;
}

.service-detail-item.reverse > * {
direction: ltr;
}

.service-detail-content h2 {
font-family: 'Orbitron', sans-serif;
font-size: 36px;
margin-bottom: 20px;
color: var(--text-light);
}

.service-detail-content p {
font-size: 18px;
line-height: 1.8;
margin-bottom: 30px;
opacity: 0.9;
}

.service-features {
list-style: none;
display: flex;
flex-direction: column;
gap: 15px;
}

.service-features li {
padding-left: 30px;
position: relative;
font-size: 16px;
line-height: 1.8;
opacity: 0.9;
}

.service-features li::before {
content: '→';
position: absolute;
left: 0;
color: var(--accent-blue);
font-weight: bold;
}

.service-detail-image {
border-radius: 16px;
overflow: hidden;
border: 1px solid rgba(58, 122, 253, 0.3);
}

.service-detail-image img {
width: 100%;
height: 100%;
object-fit: cover;
display: block;
transition: transform 0.4s ease;
}

.service-detail-image:hover img {
transform: scale(1.05);
}

.policy-content {
padding: 80px 0;
}

.policy-section {
margin-bottom: 50px;
padding: 40px;
background: rgba(30, 39, 66, 0.3);
backdrop-filter: blur(10px);
border: 1px solid rgba(58, 122, 253, 0.2);
border-radius: 16px;
}

.policy-section h2 {
font-family: 'Orbitron', sans-serif;
font-size: 28px;
margin-bottom: 20px;
color: var(--accent-blue);
}

.policy-section p {
font-size: 16px;
line-height: 1.8;
opacity: 0.9;
}

.footer {
background-color: var(--bg-secondary);
padding: 60px 0 30px;
border-top: 1px solid rgba(58, 122, 253, 0.2);
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 40px;
margin-bottom: 40px;
}

.footer-section h4 {
font-family: 'Orbitron', sans-serif;
font-size: 18px;
margin-bottom: 20px;
color: var(--accent-blue);
}

.footer-section p {
font-size: 14px;
line-height: 1.8;
opacity: 0.8;
margin-bottom: 10px;
}

.footer-section ul {
list-style: none;
}

.footer-section ul li {
margin-bottom: 10px;
}

.footer-section a {
color: var(--text-light);
text-decoration: none;
opacity: 0.8;
transition: all 0.3s ease;
}

.footer-section a:hover {
color: var(--accent-blue);
opacity: 1;
}

.footer-bottom {
text-align: center;
padding-top: 30px;
border-top: 1px solid rgba(58, 122, 253, 0.2);
}

.footer-bottom p {
font-size: 14px;
opacity: 0.7;
}

.privacy-popup {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
max-width: 500px;
margin: 0 auto;
background: rgba(30, 39, 66, 0.95);
backdrop-filter: blur(20px);
border: 2px solid var(--accent-blue);
border-radius: 16px;
padding: 30px;
z-index: 10000;
box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
display: none;
}

.privacy-popup.show {
display: block;
animation: slideUp 0.5s ease;
}

@keyframes slideUp {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}

.privacy-popup-content h3 {
font-family: 'Orbitron', sans-serif;
font-size: 20px;
margin-bottom: 15px;
color: var(--accent-blue);
}

.privacy-popup-content p {
font-size: 14px;
line-height: 1.6;
margin-bottom: 20px;
opacity: 0.9;
}

.privacy-popup-buttons {
display: flex;
gap: 15px;
}

.privacy-popup-buttons button {
flex: 1;
padding: 12px 20px;
font-size: 14px;
}

@media (max-width: 768px) {
.hero-title {
font-size: 36px;
letter-spacing: 2px;
line-height: 1.2;
}

.hero-subtitle {
font-size: 16px;
padding: 0 15px;
}

.hero-content {
padding: 30px 15px;
}

.about-grid,
.services-grid {
gap: 25px;
margin-top: 40px;
}

.about-card {
padding: 30px 20px;
}

.card-icon svg {
width: 50px;
height: 50px;
}

.nav-container {
padding: 0 15px;
flex-wrap: nowrap;
gap: 10px;
}

.logo {
max-width: calc(100% - 50px);
font-size: 18px;
}

.nav-toggle {
min-width: 30px;
}

.nav-menu {
position: fixed;
top: 70px;
left: -100%;
width: 100%;
max-width: 100%;
background: rgba(10, 15, 31, 0.98);
backdrop-filter: blur(20px);
flex-direction: column;
padding: 40px 20px;
transition: left 0.3s ease;
border-top: 1px solid rgba(58, 122, 253, 0.2);
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
z-index: 999;
height: calc(100vh - 70px);
overflow-y: auto;
}

.nav-menu.active {
left: 0;
}

.nav-menu li {
width: 100%;
margin: 0;
padding: 0;
}

.nav-menu a {
display: block;
padding: 15px 0;
font-size: 18px;
width: 100%;
border-bottom: 1px solid rgba(58, 122, 253, 0.1);
}

.nav-menu a:hover {
color: var(--accent-blue);
padding-left: 10px;
}

.nav-menu a::after {
display: none;
}

.nav-toggle {
display: flex;
}

.contact-grid {
grid-template-columns: 1fr;
}

.services-detail {
padding: 50px 0;
}

.service-detail-item {
grid-template-columns: 1fr;
gap: 30px;
margin-bottom: 40px;
}

.service-detail-item:last-child {
margin-bottom: 0;
}

.service-detail-item.reverse {
direction: ltr;
}

.section-header h2 {
font-size: 32px;
}

.about-grid,
.services-grid,
.testimonials-grid,
.portfolio-grid,
.testimonials-grid,
.courses-grid,
.services-grid,
.about-grid {
grid-template-columns: 1fr;
gap: 20px;
}

.feature-item {
flex-direction: column;
gap: 15px;
}

.feature-number {
font-size: 36px;
}

.page-hero h1 {
font-size: 36px;
}

.cta-content h2 {
font-size: 32px;
}

.privacy-popup {
left: 10px;
right: 10px;
bottom: 10px;
padding: 20px;
}

.service-image,
.course-image,
.portfolio-image {
height: 220px;
}

.course-badge {
font-size: 11px;
padding: 6px 14px;
top: 15px;
right: 15px;
}

.course-content {
padding: 25px;
}

.course-content h3 {
font-size: 22px;
}

.course-content p {
font-size: 15px;
}

.course-meta {
gap: 15px;
margin-bottom: 20px;
}

.course-duration,
.course-level {
font-size: 12px;
padding-left: 20px;
}

.course-content .btn-secondary {
padding: 12px 25px;
font-size: 13px;
}

.portfolio-info h3 {
font-size: 20px;
}

.portfolio-info p {
font-size: 14px;
}
}

@media (max-width: 480px) {
.hero-title {
font-size: 28px;
letter-spacing: 1px;
line-height: 1.3;
}

.hero-subtitle {
font-size: 14px;
padding: 0 10px;
}

.hero-content {
padding: 25px 10px;
}

.about-grid,
.services-grid {
gap: 20px;
margin-top: 30px;
}

.about-card {
padding: 25px 15px;
}

.card-icon svg {
width: 45px;
height: 45px;
}

.about-card h3 {
font-size: 20px;
}

.about-card p {
font-size: 14px;
}

.service-content {
padding: 20px;
}

.service-content h3 {
font-size: 20px;
}

.service-content p {
font-size: 14px;
}

.feature-item {
padding: 25px 20px;
}

.portfolio-info h3 {
font-size: 18px;
}

.portfolio-info p {
font-size: 13px;
}

.section-header h2 {
font-size: 28px;
}

.page-hero h1 {
font-size: 28px;
}

.cta-content h2 {
font-size: 28px;
}

.btn-primary,
.btn-secondary {
padding: 12px 30px;
font-size: 14px;
}

.contact-form-wrapper {
padding: 25px;
}

.service-detail-content h2 {
font-size: 28px;
}

.policy-section {
padding: 25px;
}

.policy-section h2 {
font-size: 24px;
}

.process-step {
flex-direction: column;
gap: 20px;
}

.process-number {
width: 80px;
height: 80px;
font-size: 36px;
}

.process-timeline::before {
left: 40px;
}

.map-wrapper iframe {
height: 300px;
}

.service-image,
.course-image,
.portfolio-image {
height: 200px;
}

.course-badge {
font-size: 10px;
padding: 5px 12px;
top: 12px;
right: 12px;
}

.course-content {
padding: 20px;
}

.course-content h3 {
font-size: 20px;
margin-bottom: 15px;
}

.course-content p {
font-size: 14px;
margin-bottom: 20px;
}

.course-meta {
gap: 12px;
margin-bottom: 18px;
}

.course-duration,
.course-level {
font-size: 11px;
padding-left: 18px;
}

.course-content .btn-secondary {
padding: 11px 20px;
font-size: 12px;
}

.portfolio-info h3 {
font-size: 18px;
}

.portfolio-info p {
font-size: 13px;
}

.nav-container {
padding: 0 15px;
flex-wrap: nowrap;
gap: 10px;
}

.logo {
font-size: 18px;
max-width: calc(100% - 50px);
}

.nav-toggle {
min-width: 30px;
}

.nav-menu {
top: 65px;
padding: 30px 15px;
}

.nav-menu a {
font-size: 16px;
padding: 12px 0;
}
}

@media (max-width: 320px) {
html {
font-size: 14px;
}

body {
font-size: 14px;
}

.container {
padding: 0 8px;
max-width: 100%;
}

.nav-container {
padding: 0 8px;
max-width: 100%;
flex-wrap: nowrap;
gap: 8px;
}

.logo {
font-size: 14px;
letter-spacing: 0.5px;
max-width: calc(100% - 45px);
}

.nav-toggle {
min-width: 28px;
padding: 2px;
}

.nav-toggle span {
width: 20px;
}

.hero-title {
font-size: 22px;
letter-spacing: 0.5px;
line-height: 1.2;
}

.hero-subtitle {
font-size: 13px;
}

.section-header h2 {
font-size: 22px;
}

.section-subtitle {
font-size: 14px;
}

.page-hero h1 {
font-size: 22px;
}

.page-subtitle {
font-size: 14px;
}

.cta-content h2 {
font-size: 22px;
}

.cta-content p {
font-size: 16px;
}

.btn-primary,
.btn-secondary {
padding: 10px 18px;
font-size: 12px;
min-width: auto;
width: 100%;
}

.about-card,
.service-card,
.testimonial-card,
.portfolio-item,
.course-card {
padding: 20px 15px;
}

.about-card h3,
.service-content h3,
.course-content h3 {
font-size: 18px;
}

.about-card p,
.service-content p,
.course-content p,
.testimonial-text {
font-size: 14px;
}

.contact-form-wrapper {
padding: 15px;
}

.form-group input,
.form-group textarea {
padding: 12px;
font-size: 14px;
}

.form-group label {
font-size: 12px;
}

.contact-info h2 {
font-size: 24px;
}

.contact-item h3 {
font-size: 18px;
}

.contact-item p {
font-size: 14px;
}

.services-detail {
padding: 40px 0;
}

.service-detail-item {
gap: 25px;
margin-bottom: 30px;
}

.service-detail-item:last-child {
margin-bottom: 0;
}

.service-detail-content h2 {
font-size: 24px;
margin-bottom: 15px;
}

.service-detail-content p {
font-size: 16px;
margin-bottom: 20px;
}

.service-features li {
font-size: 14px;
padding-left: 25px;
}

.policy-section {
padding: 15px;
}

.policy-section h2 {
font-size: 20px;
}

.policy-section p {
font-size: 14px;
}

.feature-item {
padding: 20px 15px;
}

.feature-number {
font-size: 32px;
width: 60px;
height: 60px;
}

.feature-content h3 {
font-size: 18px;
}

.feature-content p {
font-size: 14px;
}

.process-number {
width: 60px;
height: 60px;
font-size: 28px;
}

.process-content {
padding: 20px 15px;
}

.process-content h3 {
font-size: 20px;
}

.process-content p {
font-size: 14px;
}

.process-timeline::before {
left: 30px;
}

.success-content h1 {
font-size: 28px;
}

.success-message {
font-size: 16px;
}

.map-wrapper iframe {
height: 250px;
}

.logo {
font-size: 16px;
letter-spacing: 1px;
}

.nav-menu {
top: 60px;
padding: 25px 10px;
height: calc(100vh - 60px);
}

.nav-menu a {
font-size: 14px;
padding: 10px 0;
}

.nav-toggle {
padding: 3px;
}

.nav-toggle span {
width: 22px;
height: 2px;
}

.footer-content {
gap: 30px;
}

.footer-section h4 {
font-size: 16px;
}

.footer-section p,
.footer-section a {
font-size: 12px;
}

.privacy-popup {
left: 5px;
right: 5px;
bottom: 5px;
padding: 15px;
}

.privacy-popup-content h3 {
font-size: 18px;
}

.privacy-popup-content p {
font-size: 12px;
}

.privacy-popup-buttons {
flex-direction: column;
gap: 10px;
}

.privacy-popup-buttons button {
font-size: 12px;
padding: 10px;
}

.hero-scroll-indicator {
bottom: 20px;
}

.service-image,
.course-image,
.portfolio-image {
height: 200px;
}

.service-detail-image {
margin-top: 20px;
}

.page-hero {
padding: 100px 0 40px;
}

section {
padding: 60px 0;
}

.hero {
min-height: 90vh;
padding-top: 70px;
}

.floating-cube {
width: 100px;
height: 100px;
top: 10%;
right: 5%;
opacity: 0.2;
}

.hero-content {
padding: 20px 10px;
}

.hero {
min-height: 85vh;
padding-top: 60px;
}

.about {
padding: 50px 0;
}

.services-preview {
padding: 50px 0;
}

.features {
padding: 50px 0;
}

.testimonials {
padding: 50px 0;
}

.portfolio {
padding: 50px 0;
}

.process {
padding: 50px 0;
}

.cta {
padding: 50px 0;
}

.about-grid {
gap: 25px;
margin-top: 30px;
}

.about-card {
padding: 20px 15px;
}

.card-icon {
margin-bottom: 15px;
}

.card-icon svg {
width: 50px;
height: 50px;
}

.about-card h3 {
font-size: 18px;
margin-bottom: 12px;
}

.about-card p {
font-size: 13px;
line-height: 1.7;
}

.service-image {
height: 180px;
}

.service-content {
padding: 18px 15px;
}

.service-content h3 {
font-size: 18px;
margin-bottom: 12px;
}

.service-content p {
font-size: 13px;
}

.btn-secondary {
width: 100%;
margin-top: 20px;
}

.feature-item {
padding: 18px 12px;
gap: 12px;
margin-bottom: 20px;
}

.feature-number {
font-size: 28px;
width: 50px;
height: 50px;
}

.feature-content h3 {
font-size: 18px;
margin-bottom: 8px;
}

.feature-content p {
font-size: 13px;
line-height: 1.7;
}

.testimonial-card {
padding: 20px 15px;
}

.testimonial-text {
font-size: 14px;
line-height: 1.7;
margin-bottom: 15px;
}

.testimonial-author {
font-size: 13px;
}

.portfolio-image {
height: 180px;
}

.portfolio-info {
padding: 15px;
}

.portfolio-info h3 {
font-size: 16px;
margin-bottom: 8px;
}

.portfolio-info p {
font-size: 12px;
line-height: 1.6;
}

.process-timeline {
max-width: 100%;
}

.process-step {
gap: 15px;
margin-bottom: 25px;
}

.process-number {
width: 50px;
height: 50px;
font-size: 24px;
}

.process-content {
padding: 18px 12px;
}

.process-content h3 {
font-size: 18px;
margin-bottom: 10px;
}

.process-content p {
font-size: 13px;
line-height: 1.7;
}

.cta-content {
padding: 0 10px;
}

.cta-content h2 {
font-size: 22px;
margin-bottom: 15px;
}

.cta-content p {
font-size: 14px;
margin-bottom: 25px;
}

section {
padding: 40px 0;
}

.page-hero {
padding: 80px 0 30px;
}

.features-list {
max-width: 100%;
}

.feature-item {
padding: 15px 10px;
gap: 10px;
margin-bottom: 20px;
}

.feature-item:hover {
transform: translateX(0);
}

.cta {
padding: 60px 0;
}

.success-section {
padding: 100px 0;
min-height: 60vh;
}

.privacy-popup {
max-width: calc(100% - 10px);
left: 5px;
right: 5px;
}

.header {
padding: 10px 0;
}

.nav-menu {
top: 55px;
height: calc(100vh - 55px);
padding: 20px 10px;
}

.nav-menu a {
font-size: 13px;
padding: 10px 0;
}

.logo {
font-size: 14px;
letter-spacing: 0.5px;
}

.nav-toggle span {
width: 20px;
}

.services-detail {
padding: 30px 0;
}

.service-detail-item {
gap: 20px;
margin-bottom: 30px;
}

.service-detail-item:last-child {
margin-bottom: 0;
}

.service-detail-content {
padding: 15px 10px;
}

.service-detail-content h2 {
margin-bottom: 12px;
}

.service-detail-content p {
margin-bottom: 15px;
}

.service-features {
gap: 10px;
}

.service-features li {
padding-left: 20px;
}

.contact-details {
gap: 20px;
}

.contact-item {
padding: 15px 0;
}

.footer {
padding: 40px 0 20px;
}

.footer-content {
gap: 25px;
padding: 0 10px;
}

.footer-section {
padding: 0;
}

.course-meta {
flex-direction: column;
gap: 8px;
}

.course-duration::before,
.course-level::before {
display: none;
}

.course-duration,
.course-level {
padding-left: 0;
}

.process-timeline {
max-width: 100%;
}

.process-timeline::before {
display: none;
}

.process-step {
gap: 15px;
margin-bottom: 30px;
}

.process-content {
padding: 15px 10px;
}

.map-section {
padding: 40px 0;
}

.map-wrapper {
border-width: 1px;
}

.contact-form-wrapper {
padding: 15px;
}

.form-group {
gap: 8px;
}

.checkbox-group {
flex-wrap: wrap;
}

.checkbox-group label {
font-size: 12px;
}

.policy-section {
padding: 15px 10px;
margin-bottom: 30px;
}

.service-features {
gap: 10px;
}

.service-features li {
padding-left: 20px;
font-size: 13px;
}

.portfolio-overlay {
padding: 10px;
}

.portfolio-info {
padding: 10px;
}

.portfolio-info h3 {
font-size: 16px;
margin-bottom: 5px;
}

.portfolio-info p {
font-size: 12px;
}

.course-content .btn-secondary {
padding: 10px 15px;
font-size: 12px;
}

.course-image {
height: 180px;
}

.course-badge {
font-size: 9px;
padding: 4px 10px;
top: 10px;
right: 10px;
letter-spacing: 1px;
}

.course-content {
padding: 15px 12px;
}

.course-content h3 {
font-size: 18px;
margin-bottom: 12px;
}

.course-content p {
font-size: 13px;
margin-bottom: 15px;
line-height: 1.7;
}

.course-meta {
gap: 10px;
margin-bottom: 15px;
flex-direction: column;
align-items: flex-start;
}

.course-duration,
.course-level {
font-size: 10px;
padding-left: 15px;
}

.course-duration::before,
.course-level::before {
font-size: 14px;
}

.btn-secondary {
width: 100%;
text-align: center;
}

.hero-scroll-indicator {
display: none;
}

.about {
padding: 40px 0;
}

.services-preview {
padding: 40px 0;
}

.features {
padding: 40px 0;
}

.testimonials {
padding: 40px 0;
}

.portfolio {
padding: 40px 0;
}

.process {
padding: 40px 0;
}

.cta {
padding: 40px 0;
}

.about-grid {
gap: 20px;
margin-top: 25px;
}

.about-card {
padding: 18px 12px;
}

.card-icon {
margin-bottom: 12px;
}

.card-icon svg {
width: 45px;
height: 45px;
}

.about-card h3 {
font-size: 16px;
margin-bottom: 10px;
}

.about-card p {
font-size: 12px;
line-height: 1.6;
}

.services-grid {
gap: 20px;
margin-bottom: 30px;
}

.service-image {
height: 160px;
}

.service-content {
padding: 15px 12px;
}

.service-content h3 {
font-size: 16px;
margin-bottom: 10px;
}

.service-content p {
font-size: 12px;
line-height: 1.6;
}

.btn-secondary {
width: 100%;
margin-top: 15px;
padding: 10px 15px;
font-size: 11px;
}

.feature-item {
padding: 15px 10px;
gap: 10px;
margin-bottom: 15px;
}

.feature-number {
font-size: 24px;
width: 45px;
height: 45px;
}

.feature-content h3 {
font-size: 16px;
margin-bottom: 6px;
}

.feature-content p {
font-size: 12px;
line-height: 1.6;
}

.testimonial-card {
padding: 18px 12px;
}

.testimonial-text {
font-size: 13px;
line-height: 1.6;
margin-bottom: 12px;
}

.testimonial-author {
font-size: 12px;
}

.portfolio-image {
height: 160px;
}

.portfolio-info {
padding: 12px;
}

.portfolio-info h3 {
font-size: 14px;
margin-bottom: 6px;
}

.portfolio-info p {
font-size: 11px;
line-height: 1.5;
}

.process-timeline {
max-width: 100%;
}

.process-step {
gap: 12px;
margin-bottom: 20px;
}

.process-number {
width: 45px;
height: 45px;
font-size: 20px;
}

.process-content {
padding: 15px 10px;
}

.process-content h3 {
font-size: 16px;
margin-bottom: 8px;
}

.process-content p {
font-size: 12px;
line-height: 1.6;
}

.cta-content {
padding: 0 8px;
}

.cta-content h2 {
font-size: 20px;
margin-bottom: 12px;
line-height: 1.3;
}

.cta-content p {
font-size: 13px;
margin-bottom: 20px;
}

.section-header {
margin-bottom: 30px;
}

.section-header h2 {
font-size: 20px;
margin-bottom: 10px;
}

.section-subtitle {
font-size: 13px;
}
}

