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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F8F8F8;
}

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: #6A3EE8;
    color: white;
}

.btn-primary:hover {
    background-color: #5A2ED8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(106, 62, 232, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #6A3EE8;
    border: 2px solid #6A3EE8;
}

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 8px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6A3EE8;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #6A3EE8;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background-color: #6A3EE8;
    border-radius: 2px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: #6A3EE8;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

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

.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #F8F8F8 0%, #FFFFFF 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-logo {
    text-align: center;
}

.hero-logo-img {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(106, 62, 232, 0.2);
}

.page-header {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, #6A3EE8 0%, #8B5CF6 100%);
    color: white;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.about-section,
.services-section,
.training-section,
.contact-section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 3rem;
}

.about-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.svg-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-icon.web-dev {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2L2 7L12 12L22 7L12 2Z' fill='%236A3EE8'/%3E%3Cpath d='M2 17L12 22L22 17' stroke='%236A3EE8' stroke-width='2'/%3E%3Cpath d='M2 12L12 17L22 12' stroke='%236A3EE8' stroke-width='2'/%3E%3C/svg%3E");
}

.service-icon.mobile-app {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Crect x='5' y='2' width='14' height='20' rx='2' ry='2' fill='%236A3EE8'/%3E%3Cline x1='12' y1='18' x2='12.01' y2='18' stroke='%23ffffff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.service-icon.cloud {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18 10H16.74C16.3659 7.49025 14.3377 5.5 12 5.5C9.66231 5.5 7.63413 7.49025 7.26 10H6C4.89543 10 4 10.8954 4 12C4 13.1046 4.89543 14 6 14H18C19.1046 14 20 13.1046 20 12C20 10.8954 19.1046 10 18 10Z' fill='%236A3EE8'/%3E%3C/svg%3E");
}

.services-cta {
    text-align: center;
}

.training-text {
    text-align: center;
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
}

.training-cta {
    text-align: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

.contact-icon {
    font-size: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
}

.contact-icon .svg-icon {
    width: 2rem;
    height: 2rem;
}

.contact-cta {
    text-align: center;
}

.professional-footer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 25%, #0f3460 75%, #1a1a2e 100%);
    color: #ffffff;
    padding: 3rem 0 1rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h3,
.footer-section h4,
.footer-section h5 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.footer-brand p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

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

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

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

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

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.contact-item svg {
    color: #6A3EE8;
    flex-shrink: 0;
}

.newsletter h5 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.4rem;
    transition: all 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: rgba(106, 62, 232, 0.5);
    box-shadow: 0 0 12px rgba(106, 62, 232, 0.2);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    outline: none;
    border-radius: 6px;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    background: linear-gradient(135deg, #6A3EE8, #8B5CF6);
    border: none;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(106, 62, 232, 0.3);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-content p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-form button {
        align-self: stretch;
    }
}

@media (max-width: 768px) {
    .professional-footer {
        padding: 2.5rem 0 1rem;
        margin-top: 3rem;
    }
    
    .footer-container {
        padding: 0 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .footer-brand {
        grid-column: auto;
        order: 1;
    }
    
    .footer-section {
        order: 2;
        margin-bottom: 1.5rem;
    }
    
    .footer-section:last-of-type {
        order: 3;
    }
    
    .footer-logo {
        padding-right: 0;
        align-items: center;
    }
    
    .footer-logo p {
        max-width: 100%;
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-section ul {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-section ul li a {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 6px;
        display: block;
        transition: all 0.3s ease;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-section ul li a:hover {
        background: rgba(106, 62, 232, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(106, 62, 232, 0.3);
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }
    
    .contact-item p {
        font-size: 0.9rem;
        margin: 0;
    }
    
    .social-media {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .social-link {
        min-width: 48px;
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-bottom {
        padding-top: 2rem;
        margin-top: 1.5rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.85rem;
        order: 2;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        order: 1;
    }
    
    .footer-links a {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        background: rgba(106, 62, 232, 0.3);
        transform: translateY(-2px);
    }
}

@media (max-width: 480px) {
    .professional-footer {
        padding: 2rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-content {
        gap: 2rem;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-logo p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
        padding: 0.75rem 0.5rem;
        min-height: 48px;
    }
    
    .contact-item {
        padding: 0.75rem;
        min-height: 56px;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-item .contact-icon {
        margin-bottom: 0.25rem;
    }
    
    .contact-item p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .social-media {
        gap: 0.75rem;
    }
    
    .social-link {
        min-width: 44px;
        min-height: 44px;
    }
    
    .footer-bottom-content {
        gap: 1rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.8rem;
    }
    
    .footer-links {
        gap: 0.75rem;
    }
    
    .footer-links a {
        font-size: 0.8rem;
        padding: 0.5rem 0.75rem;
        min-height: 32px;
    }
}

@media (max-width: 768px) and (orientation: landscape) {
    .professional-footer {
        padding: 1.5rem 0 1rem;
        margin-top: 2rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section {
        margin-bottom: 1rem;
    }
    
    .footer-logo p {
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1rem;
    }
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #6A3EE8, #8B5CF6, #A78BFA, #C4B5FD, #DDD6FE, #EDE9FE);
    background-size: 200% 100%;
    animation: rainbow-flow 3s linear infinite;
    z-index: 3;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(106, 62, 232, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(167, 139, 250, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.footer .particles {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #6A3EE8, transparent),
        radial-gradient(2px 2px at 40px 70px, #8B5CF6, transparent),
        radial-gradient(1px 1px at 90px 40px, #A78BFA, transparent),
        radial-gradient(1px 1px at 130px 80px, #C4B5FD, transparent),
        radial-gradient(2px 2px at 160px 30px, #DDD6FE, transparent),
        radial-gradient(1px 1px at 200px 60px, #EDE9FE, transparent),
        radial-gradient(2px 2px at 240px 40px, #6A3EE8, transparent),
        radial-gradient(1px 1px at 280px 70px, #8B5CF6, transparent),
        radial-gradient(2px 2px at 320px 30px, #A78BFA, transparent),
        radial-gradient(1px 1px at 360px 60px, #C4B5FD, transparent);
    background-repeat: repeat;
    background-size: 400px 100px;
    animation: float-particles 20s linear infinite;
    opacity: 0.6;
    pointer-events: none;
}

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

@keyframes rainbow-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

.footer-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-right: 2rem;
}

.footer-logo::before {
    content: '';
    position: absolute;
    top: -10px;
    right: -20px;
    width: 2rem;
    height: 2rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z' fill='%23ffffff'/%3E%3Cpath d='M12 2L13.09 8.26L20 9L13.09 9.74L12 16L10.91 9.74L4 9L10.91 8.26L12 2Z' fill='%236A3EE8' opacity='0.8'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: sparkle 2s ease-in-out infinite;
}

.footer-logo .logo-text {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 50%, #c7d2fe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.footer-logo p {
    color: #b8c5d1;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 320px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    font-weight: 400;
    margin-bottom: 1rem;
}

.footer-logo p::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #6A3EE8, #8B5CF6);
    border-radius: 2px;
    animation: expand-width 2s ease-out forwards;
}

@keyframes expand-width {
    from { width: 0; }
    to { width: 60px; }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 0.7; }
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding: 1rem 0;
}

.footer-nav::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -10px;
    width: 1.5rem;
    height: 1.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2L2 7L12 12L22 7L12 2Z' fill='%23ffffff'/%3E%3Cpath d='M2 17L12 22L22 17' stroke='%236A3EE8' stroke-width='2'/%3E%3Cpath d='M2 12L12 17L22 12' stroke='%236A3EE8' stroke-width='2'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: rocket-bounce 2s ease-in-out infinite;
}

.footer-nav h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-nav h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6A3EE8, #8B5CF6, #A78BFA);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: slide-in 1s ease-out 0.5s forwards;
}

@keyframes slide-in {
    to { transform: scaleX(1); }
}

.footer-contact h4 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-contact h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #6A3EE8, #8B5CF6, #A78BFA);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: slide-in 1s ease-out 1.5s forwards;
}

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

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.6rem 0;
    position: relative;
    display: block;
    font-size: 0.95rem;
    font-weight: 400;
    border-bottom: 1px solid transparent;
}

.footer-nav a::before {
    content: '';
    margin-right: 0.8rem;
    width: 1rem;
    height: 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13 5L19 12L13 19' stroke='%236A3EE8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5 12H19' stroke='%236A3EE8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translateX(-20px) scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    vertical-align: middle;
}

.footer-nav a:hover {
    color: #ffffff;
    transform: translateX(8px);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.footer-nav a:hover::before {
    opacity: 1;
    transform: translateX(0) scale(1);
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: #94a3b8;
    position: relative;
    z-index: 2;
    margin-top: 1rem;
}

.footer-bottom::before {
    content: '';
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    margin: 0 auto 1rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2L15.09 8.26L22 9L15.09 9.74L12 16L8.91 9.74L2 9L8.91 8.26L12 2Z' fill='%236A3EE8'/%3E%3Cpath d='M12 2L15.09 8.26L22 9L15.09 9.74L12 16L8.91 9.74L2 9L8.91 8.26L12 2Z' fill='%23ffffff' opacity='0.9'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    animation: star-twinkle 3s ease-in-out infinite;
}

.footer-bottom::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #6A3EE8, transparent);
    animation: glow-pulse 2s ease-in-out infinite;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #6A3EE8, #8B5CF6, #A78BFA);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-link:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

.social-link svg {
    transition: transform 0.3s ease;
}

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

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding: 1rem 0;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    border-bottom-color: rgba(255, 255, 255, 0.3);
}

.contact-item svg {
    color: #6A3EE8;
    flex-shrink: 0;
}

.contact-item span {
    color: #cbd5e1;
    font-size: 0.95rem;
    font-weight: 400;
}

.newsletter {
    margin-top: 1rem;
}

.newsletter h5 {
    color: #ffffff;
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    padding: 0.4rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.newsletter-form:focus-within {
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.1);
}

.newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    outline: none;
    border-radius: 8px;
}

.newsletter-form input::placeholder {
    color: #94a3b8;
}

.newsletter-form button {
    background: linear-gradient(135deg, #6A3EE8, #8B5CF6);
    border: none;
    color: #ffffff;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #8B5CF6, #A78BFA);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(106, 62, 232, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 400;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #6A3EE8, #8B5CF6);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:hover::after {
    width: 100%;
}

@keyframes star-twinkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.3) rotate(180deg); opacity: 0.8; }
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.5; box-shadow: 0 0 10px rgba(106, 62, 232, 0.3); }
    50% { opacity: 1; box-shadow: 0 0 20px rgba(106, 62, 232, 0.6); }
}

.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.about-text-content h2 {
    color: #6A3EE8;
    margin-top: 2rem;
}

.about-text-content h2:first-child {
    margin-top: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6A3EE8;
    display: block;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.values-section {
    text-align: center;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon.innovation {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13 2L3 14H12L11 22L21 10H12L13 2Z' fill='%236A3EE8'/%3E%3C/svg%3E");
}

.value-icon.collaboration {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M17 21V19C17 17.9391 16.5786 16.9217 15.8284 16.1716C15.0783 15.4214 14.0609 15 13 15H5C3.93913 15 2.92172 15.4214 2.17157 16.1716C1.42143 16.9217 1 17.9391 1 19V21' stroke='%236A3EE8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 11C11.2091 11 13 9.20914 13 7C13 4.79086 11.2091 3 9 3C6.79086 3 5 4.79086 5 7C5 9.20914 6.79086 11 9 11Z' stroke='%236A3EE8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M23 21V19C22.9993 18.1137 22.7044 17.2528 22.1614 16.5523C21.6184 15.8519 20.8581 15.3516 20 15.13' stroke='%236A3EE8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M16 3.13C16.8604 3.35031 17.623 3.85071 18.1676 4.55232C18.7122 5.25392 19.0078 6.11683 19.0078 7.005C19.0078 7.89317 18.7122 8.75608 18.1676 9.45768C17.623 10.1593 16.8604 10.6597 16 10.88' stroke='%236A3EE8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.value-icon.learning {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M2 3H8C9.06087 3 10.0783 3.42143 10.8284 4.17157C11.5786 4.92172 12 5.93913 12 7V21C12 19.9391 11.5786 18.9217 10.8284 18.1716C10.0783 17.4214 9.06087 17 8 17H2V3Z' fill='%236A3EE8'/%3E%3Cpath d='M22 3H16C14.9391 3 13.9217 3.42143 13.1716 4.17157C12.4214 4.92172 12 5.93913 12 7V21C12 19.9391 12.4214 18.9217 13.1716 18.1716C13.9217 17.4214 14.9391 17 16 17H22V3Z' fill='%236A3EE8'/%3E%3C/svg%3E");
}

.value-icon.quality {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M12 2L15.09 8.26L22 9L15.09 9.74L12 16L8.91 9.74L2 9L8.91 8.26L12 2Z' fill='%236A3EE8'/%3E%3C/svg%3E");
}

.services-content {
    padding: 80px 0;
}

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

.service-detailed-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
}

.service-detailed-card h2 {
    color: #6A3EE8;
    margin-bottom: 1rem;
}

.service-detailed-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.service-detailed-card li {
    margin-bottom: 0.5rem;
}

.support-form-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.support-form-section h2 {
    text-align: center;
    color: #6A3EE8;
    margin-bottom: 1rem;
}

.support-form-section p {
    text-align: center;
    margin-bottom: 2rem;
}

.training-content {
    padding: 80px 0;
}

.training-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.training-intro h2 {
    color: #6A3EE8;
    margin-bottom: 1rem;
}

.training-intro p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

.training-benefits {
    margin-bottom: 4rem;
}

.training-benefits h2 {
    text-align: center;
    color: #6A3EE8;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon .svg-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.benefit-icon.target {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Ccircle cx='12' cy='12' r='10' fill='%236A3EE8'/%3E%3Ccircle cx='12' cy='12' r='6' fill='%23ffffff'/%3E%3Ccircle cx='12' cy='12' r='3' fill='%236A3EE8'/%3E%3C/svg%3E");
}

.benefit-icon.mentorship {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M17 21V19C17 17.9391 16.5786 16.9217 15.8284 16.1716C15.0783 15.4214 14.0609 15 13 15H5C3.93913 15 2.92172 15.4214 2.17157 16.1716C1.42143 16.9217 1 17.9391 1 19V21' stroke='%236A3EE8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M9 11C11.2091 11 13 9.20914 13 7C13 4.79086 11.2091 3 9 3C6.79086 3 5 4.79086 5 7C5 9.20914 6.79086 11 9 11Z' stroke='%236A3EE8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.benefit-icon.portfolio {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M14 2H6C4.9 2 4 2.9 4 4V20C4 21.1 4.9 22 6 22H18C19.1 22 20 21.1 20 20V8L14 2Z' fill='%236A3EE8'/%3E%3Cpath d='M14 2V8H20' stroke='%236A3EE8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.benefit-icon.growth {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M13 2L3 14H12L11 22L21 10H12L13 2Z' fill='%236A3EE8'/%3E%3C/svg%3E");
}

.internship-areas {
    margin-bottom: 4rem;
}

.internship-areas h2 {
    text-align: center;
    color: #6A3EE8;
    margin-bottom: 3rem;
}

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

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
}

.area-card h3 {
    color: #6A3EE8;
    margin-bottom: 1rem;
}

.duration {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #6A3EE8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.certificate-info {
    margin-bottom: 4rem;
}

.certificate-card {
    background: linear-gradient(135deg, #6A3EE8 0%, #8B5CF6 100%);
    color: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.certificate-card h3 {
    margin-bottom: 1rem;
}

.certificate-price {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 0.5rem;
}

.internship-form-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.internship-form-section h2 {
    text-align: center;
    color: #6A3EE8;
    margin-bottom: 1rem;
}

.internship-form-section p {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-content {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.contact-info-section h2 {
    color: #6A3EE8;
    margin-bottom: 1rem;
}

.contact-methods {
    margin-top: 2rem;
}

.contact-method {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon .svg-icon {
    width: 2.5rem;
    height: 2.5rem;
}

.contact-icon.email {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M4 4H20C21.1 4 22 4.9 22 6V18C22 19.1 21.1 20 20 20H4C2.9 20 2 19.1 2 18V6C2 4.9 2.9 4 4 4Z' fill='%236A3EE8'/%3E%3Cpath d='M22 6L12 13L2 6' stroke='%236A3EE8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.contact-icon.phone {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M22 16.92V19.92C22.0011 20.1985 21.9441 20.4742 21.8325 20.7294C21.7209 20.9846 21.5573 21.2136 21.3521 21.4019C21.1469 21.5902 20.9046 21.7335 20.6407 21.8227C20.3768 21.9119 20.0974 21.9452 19.82 21.92C16.7428 21.5856 13.787 20.5341 11.19 18.85C8.77382 17.3146 6.72533 15.2661 5.18999 12.85C3.49997 10.2412 2.44824 7.27099 2.11999 4.18C2.09494 3.90347 2.12826 3.62476 2.21749 3.36152C2.30672 3.09828 2.4499 2.85646 2.63799 2.65152C2.82608 2.44658 3.05471 2.28314 3.30949 2.17136C3.56427 2.05958 3.83949 2.00227 4.11799 2.002H7.11799C7.59522 1.99522 8.06552 2.12708 8.47141 2.38343C8.8773 2.63978 9.20037 3.00982 9.40699 3.452C9.68147 4.02569 9.97705 4.59062 10.293 5.145C10.4855 5.48842 10.5735 5.86578 10.5489 6.24388C10.5243 6.62198 10.3876 6.98677 10.152 7.302L8.82199 8.632C9.69588 10.4383 10.9616 12.0384 12.543 13.325C13.8297 14.9065 15.4298 16.1722 17.236 17.046L18.566 15.716C18.8812 15.4804 19.246 15.3437 19.6241 15.3191C20.0022 15.2945 20.3796 15.3835 20.723 15.576C21.2752 15.892 21.8401 16.1876 22.414 16.462L22 16.92Z' fill='%236A3EE8'/%3E%3C/svg%3E");
}

.contact-details h3 {
    color: #6A3EE8;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
    margin-top: 0.5rem;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-section h2 {
    color: #6A3EE8;
    margin-bottom: 1rem;
}

.contact-form-section p {
    margin-bottom: 2rem;
}

.map-section {
    margin-bottom: 4rem;
}

.map-section h2 {
    text-align: center;
    color: #6A3EE8;
    margin-bottom: 2rem;
}

.map-placeholder {
    background: white;
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
}

.map-icon .svg-icon {
    width: 4rem;
    height: 4rem;
}

.map-content h3 {
    color: #6A3EE8;
    margin-bottom: 1rem;
}

.business-hours {
    text-align: center;
}

.business-hours h2 {
    color: #6A3EE8;
    margin-bottom: 2rem;
}

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

.hours-item {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.day {
    display: block;
    font-weight: 600;
    color: #6A3EE8;
    margin-bottom: 0.5rem;
}

.time {
    color: #666;
}

.hours-note {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: white;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #6A3EE8;
    box-shadow: 0 0 0 3px rgba(106, 62, 232, 0.1);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        padding: 1rem 0;
        flex-direction: column;
        gap: 0;
    }
    
    .nav.active {
        display: flex;
    }

    .navlink{
        padding: 1rem 2rem;
        border-bottom: 1px solid #eee;
    }
    .navlink:last-child{
        border-bottom: none;
    }
    
    
    .header {
        position: fixed;
    }
    
    .header .container {
        position: relative;
    }
    
    .page-header {
        margin-top: 80px;
    }
    
    .training-content {
        margin-top: 20px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .services-detailed {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-nav {
        align-items: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .footer-logo p {
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-contact {
        align-items: center;
    }
    
    .contact-info {
        align-items: center;
    }
    
    .contact-item {
        justify-content: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .newsletter-form button {
        align-self: stretch;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .support-form-section,
    .internship-form-section,
    .contact-form-section {
        padding: 2rem;
    }
    
    .hero-logo-img {
        width: 150px;
        height: 150px;
    }
}

.faq-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.faq-toggle-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6A3EE8, #8B5CF6);
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(106, 62, 232, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: relative;
    overflow: hidden;
}

.faq-toggle-icon {
    width: 50px;
    height: 50px;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.faq-toggle-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(106, 62, 232, 0.4);
}

.faq-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.faq-toggle-btn:hover::before {
    transform: translateX(100%);
}

.faq-dropdown {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 350px;
    max-height: 670px;
    background: white;
    border-radius: 20px 20px 20px 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(100%) scale(0.8);
    opacity: 0;
    transition: all 0.3s ease;
    overflow: hidden;
    border: 1px solid #e1e5e9;
    border-bottom: none;
}

.faq-dropdown.active {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.faq-chat-window {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.faq-chat-header {
    background: linear-gradient(135deg, #6A3EE8, #8B5CF6);
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-chat-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.faq-close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.faq-chat-body {
    height: calc(100% - 120px);
    display: flex;
    flex-direction: column;
    overflow: visible ;
}

.faq-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: #f8f9fa;
    max-height: 300px;
    min-height: 200px;
    scroll-behavior: smooth;
}

.faq-messages::-webkit-scrollbar {
    width: 6px;
}

.faq-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.faq-messages::-webkit-scrollbar-thumb {
    background: #6A3EE8;
    border-radius: 3px;
}

.faq-messages::-webkit-scrollbar-thumb:hover {
    background: #5A2ED8;
}

.faq-message {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-message.user {
    flex-direction: row-reverse;
}

.faq-message-bubble {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.faq-message.bot .faq-message-bubble {
    background: white;
    color: #333;
    border: 1px solid #e1e5e9;
}

.faq-message.user .faq-message-bubble {
    background: linear-gradient(135deg, #6A3EE8, #8B5CF6);
    color: white;
}

.faq-message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: bold;
}

.faq-message.bot .faq-message-avatar {
    background: #e1e5e9;
    color: #6A3EE8;
}

.faq-message.user .faq-message-avatar {
    background: #6A3EE8;
    color: white;
}

.faq-input-area {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #e1e5e9;
}

.faq-input-container {
    display: flex;
    gap: 10px;
    align-items: center;
}

.faq-input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid #e1e5e9;
    border-radius: 25px;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.faq-input:focus {
    border-color: #6A3EE8;
}

.faq-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6A3EE8, #8B5CF6);
    border: none;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.faq-send-btn:hover {
    transform: scale(1.1);
}

.faq-send-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.faq-typing-indicator {
    display: none;
    padding: 15px 20px;
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.faq-typing-indicator.active {
    display: block;
}

.faq-suggestions {
    background: #f8f9fa;
    border-top: 1px solid #e1e5e9;
}

.faq-suggestions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: #f8f9fa;
    border-bottom: 1px solid #e1e5e9;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-suggestions-header:hover {
    background: #e9ecef;
}

.faq-suggestions-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6A3EE8;
}

.faq-suggestions-toggle {
    background: none;
    border: none;
    color: #6A3EE8;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-suggestions-toggle:hover {
    background: rgba(106, 62, 232, 0.1);
}

.faq-suggestions-toggle svg {
    transition: transform 0.3s ease;
}

.faq-suggestion-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.faq-suggestion-chip {
    padding: 6px 12px;
    background: white;
    border: 1px solid #e1e5e9;
    border-radius: 15px;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-suggestion-chip:hover {
    background: #6A3EE8;
    color: white;
    border-color: #6A3EE8;
}

/* Collapsed state for suggestions */
.faq-suggestions.collapsed .faq-suggestion-chips {
    display: none;
}

.faq-suggestions.collapsed .faq-suggestions-toggle svg {
    transform: rotate(180deg);
}

.faq-welcome-message {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    padding: 20px;
    background: white;
    margin: 10px;
    border-radius: 12px;
    border: 1px solid #e1e5e9;
}

.faq-error-message {
    background: #fee;
    color: #c33;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 10px 0;
    font-size: 0.9rem;
    border: 1px solid #fcc;
}

@media (max-width: 768px) {
    .faq-widget {
        bottom: 15px;
        left: 15px;
    }
    
    .faq-dropdown {
        width: calc(100vw - 30px);
        max-height: 400px;
        left: -15px;
        bottom: 80px;
    }
    
    .faq-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    .faq-toggle-icon { width: 50px; height: 50px; }
}

@media (max-width: 480px) {
    .faq-dropdown {
        width: calc(100vw - 20px);
        max-height: 350px;
        left: -10px;
    }
}

@media print {
    .header,
    .footer,
    .btn,
    .faq-widget {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero {
        padding: 20px 0;
    }
    
    .page-header {
        background: white;
        color: black;
    }
}
