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

body {
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
    overflow-x: hidden;
    font-family: 'Noto Sans Armenian', sans-serif;
}

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

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo {
    height: 80px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 16px;
}

.nav-links a:hover {
    color: #5AB5E5;
}

.register-btn {
    background: #FDB85C;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s;
}

.register-btn:hover {
    transform: scale(1.05);
}

.menu-toggle {
    display: none;
    background: #5AB5E5;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #5AB5E5 0%, #8B68E5 50%, #E56B9C 100%);
    padding: 80px 20px 150px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3em;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2em;
    color: white;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-button {
    background: #FDB85C;
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 30px;
    font-size: 1.2em;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s;
    display: inline-block;
    text-decoration: none;
}

.hero-button:hover {
    transform: scale(1.05);
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    animation: float 3s ease-in-out infinite;
}

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

/* About Section */
.about {
    background: linear-gradient(135deg, #89f7fe 0%, #66a6ff 100%);
    padding: 80px 20px;
}

.about h2 {
    text-align: center;
    color: white;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.feature-card h3 {
    color: #5AB5E5;
    font-size: 1.5em;
    margin-bottom: 15px;
}

/* Courses Section */
.courses {
    background: linear-gradient(135deg, #F0F9FF 0%, #E8F5FC 100%);
    padding: 80px 20px;
}

.courses-container {
    max-width: 1400px;
    margin: 0 auto;
}

.courses h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.course-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    cursor: pointer;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-card-header {
    padding: 25px;
    color: white;
    text-align: center;
    position: relative;
}

.scratch-bg {
    background: linear-gradient(135deg, #A855F7, #EC4899);
}

.python-bg {
    background: linear-gradient(135deg, #14B8A6, #06B6D4);
}

.web-bg {
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
}

.robotics-bg {
    background: linear-gradient(135deg, #F59E0B, #EF4444);
}

.math-bg {
    background: linear-gradient(135deg, #10B981, #059669);
}

.english-bg {
    background: linear-gradient(135deg, #6366F1, #8B5CF6);
}

.design-bg {
    background: linear-gradient(135deg, #EC4899, #F43F5E);
}

.course-icon {
    font-size: 3em;
    margin-bottom: 10px;
}

.course-card-header h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.age-badge {
    background: rgba(255,255,255,0.3);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-size: 0.9em;
}

.course-card-body {
    padding: 30px;
}

.course-card-body p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-btn {
    background: #FDB85C;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: transform 0.3s;
}

.course-btn:hover {
    transform: scale(1.05);
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, #FFF5E1 0%, #FFE5B4 100%);
    padding: 80px 20px;
}

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

.pricing-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card h3 {
    color: #5AB5E5;
    font-size: 1.8em;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-icon {
    font-size: 4em;
    text-align: center;
    margin-bottom: 20px;
}

.pricing-card ul {
    list-style: none;
    margin: 20px 0;
}

.pricing-card li {
    padding: 10px 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-card li::before {
    content: '✓';
    color: #10B981;
    font-weight: bold;
    font-size: 1.2em;
}

.highlight-card {
    background: linear-gradient(135deg, #5AB5E5, #8B68E5);
    color: white;
}

.highlight-card h3,
.highlight-card li {
    color: white;
}

.highlight-card li::before {
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 25px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2em;
    cursor: pointer;
    color: #999;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f0f0f0;
    color: #333;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-icon {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 20px;
}

.modal-header h3 {
    color: #5AB5E5;
    font-size: 2em;
    margin-bottom: 10px;
}

.modal-body {
    color: #666;
    line-height: 1.8;
}

.modal-body h4 {
    color: #333;
    margin: 20px 0 10px;
    font-size: 1.3em;
}

.modal-body ul {
    list-style: none;
    padding-left: 0;
}

.modal-body li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.modal-body li::before {
    content: '✓';
    color: #10B981;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.price-tag {
    background: linear-gradient(135deg, #FDB85C, #F59E0B);
    color: white;
    padding: 15px 30px;
    border-radius: 20px;
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    margin: 20px 0;
}

/* Gallery */
.gallery {
    padding: 80px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

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

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Registration */
.registration {
    background: linear-gradient(135deg, #5AB5E5 0%, #8B68E5 100%);
    padding: 80px 20px;
    position: relative;
}

.registration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: white;
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.registration-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.registration h2 {
    text-align: center;
    color: #5AB5E5;
    font-size: 2.5em;
    margin-bottom: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E7EB;
    border-radius: 15px;
    font-size: 1em;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5AB5E5;
}

.submit-btn {
    background: #FDB85C;
    color: white;
    padding: 18px;
    border: none;
    border-radius: 25px;
    font-size: 1.2em;
    cursor: pointer;
    font-weight: 600;
    width: 100%;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: scale(1.02);
}

/* Contact */
.contact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #F0F9FF 0%, #E8F5FC 100%);
}

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

.contact h2 {
    text-align: center;
    font-size: 2.5em;
    color: #333;
    margin-bottom: 50px;
}

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

.contact-card {
    background: white;
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #5AB5E5;
    margin-bottom: 15px;
    font-size: 1.4em;
}

.contact-card p {
    color: #666;
    font-size: 1.1em;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

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

.instagram { background: linear-gradient(135deg, #833AB4, #FD1D1D); }
.facebook { background: #1877F2; }
.youtube { background: #FF0000; }

/* Footer */
/* footer {
    background: #1F2937;
    color: white;
    padding: 40px 20px;
    text-align: center;
} */

/* footer p {
    margin: 10px 0;
    opacity: 0.9;
} */
.main-footer {
    background-color: #2d2d2d; /* Մութ ֆոն, որի վրա ձեր գույները լավ կերևան */
    color: white;
    padding: 60px 20px 20px;
    font-family: sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 սյունակ */
    gap: 40px;
}

.footer-col h3, .footer-col h4 {
    color: #5AB5E5; /* Ձեր հիմնական գույնը */
    margin-bottom: 20px;
}

.footer-col p {
    line-height: 1.6;
    opacity: 0.9;
}
.logo-footer{ 
    height: 50px;
    border-radius: 100%;
}
/* Սոցիալական լոգոների ոճը */
.footer-socials {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

/* Գույները մկնիկը վրան պահելիս (Hover) */
.social-icon.fb:hover { background: #3b5998; }
.social-icon.ig:hover { background: #e1306c; }
.social-icon.ln:hover { background: #0077b5; }
.social-icon.yt:hover { background: #ff0000; }

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}


/* Responsive տարբերակ */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-socials {
        justify-content: center;
    }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2em;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .registration-container {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    nav {
        padding: 15px 20px;
    }

    .hero {
        padding: 60px 20px 100px;
    }

    .hero-text h1 {
        font-size: 1.8em;
    }

    .hero-text p {
        font-size: 1em;
    }

    .courses h2,
    .gallery h2,
    .contact h2 {
        font-size: 2em;
    }
}