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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #071b35;
    color: white;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #06162b;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
}

.navbar {
    min-height: 95px;
    padding: 12px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}.registration-section{
    text-align:center;
    padding:80px 20px;
    background:#0d2344;
}

.registration-section h2{
    color:#fff;
    font-size:36px;
    margin-bottom:15px;
}

.registration-section p{
    color:#ddd;
    font-size:18px;
    margin-bottom:30px;
}

.register-btn{
    display:inline-block;
    background:#25D366;
    color:#fff;
    padding:15px 35px;
    border-radius:50px;
    text-decoration:none;
    font-size:20px;
    font-weight:bold;
    transition:.3s;
}

.register-btn:hover{
    background:#1ea952;
    transform:scale(1.05);
}

.logo img {
    width: 135px;
    height: 76px;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 12px;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.menu-button {
    display: none;
    border: none;
    background: transparent;
    color: white;
    font-size: 30px;
    cursor: pointer;
}

/* Hero */

.hero {
    min-height: 610px;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background:
        linear-gradient(rgba(2, 14, 35, 0.82), rgba(2, 14, 35, 0.92)),
        url("images/logo.png") center / 360px no-repeat;
}

.hero-content {
    max-width: 900px;
}

.small-title,
.section-small-title {
    color: #00c9ff;
    font-size: 17px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 52px;
    line-height: 1.45;
    margin-bottom: 20px;
}

.hero-text {
    color: #d9e5f2;
    font-size: 21px;
    line-height: 2;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-buttons a {
    display: inline-block;
    padding: 15px 28px;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.hero-buttons a:hover {
    transform: translateY(-4px);
}

.courses-btn {
    background: #ff9500;
}

.whatsapp-btn {
    background: #19c867;
}

/* Professional Slider */

.professional-slider {
    position: relative;
    width: 94%;
    max-width: 1500px;
    height: 540px;
    margin: 40px auto;
    overflow: hidden;
    background: #06162b;
    border-radius: 22px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.pro-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.9s ease, visibility 0.9s ease;
}

.pro-slide.active {
    opacity: 1;
    visibility: visible;
}

.pro-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 5s ease;
}

.pro-slide.active img {
    transform: scale(1.03);
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 14, 34, 0.88) 0%,
        rgba(3, 14, 34, 0.55) 36%,
        rgba(3, 14, 34, 0.05) 72%
    );
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 7%;
    z-index: 3;
    width: 42%;
    color: white;
    text-align: left;
    direction: rtl;
    transform: translateY(-50%);
}

.slide-content span {
    display: inline-block;
    margin-bottom: 14px;
    color: #27c9ff;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 2px;
}

.slide-content h2 {
    margin-bottom: 18px;
    font-size: 48px;
    line-height: 1.25;
}

.slide-content p {
    margin-bottom: 25px;
    color: #e2ebf5;
    font-size: 19px;
    line-height: 1.9;
}

.slide-content a {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 11px;
    background: #ff9d00;
    color: white;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    transition: transform 0.3s ease, background 0.3s ease;
}

.slide-content a:hover {
    transform: translateY(-4px);
    background: #ffb01f;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(5, 22, 43, 0.72);
    color: white;
    font-size: 28px;
    cursor: pointer;
    transform: translateY(-50%);
    transition: 0.3s ease;
}

.slider-arrow:hover {
    background: #ff9d00;
    transform: translateY(-50%) scale(1.08);
}

.slider-arrow.previous {
    left: 22px;
}

.slider-arrow.next {
    right: 22px;
}

.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    z-index: 7;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.slider-dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border: 2px solid white;
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
}

.slider-dot.active {
    background: #ff9d00;
    transform: scale(1.25);
}

/* Courses */

.courses {
    padding: 85px 7%;
    background: #f5f7fb;
    color: #10223d;
    text-align: center;
}

.courses h2,
.about h2 {
    font-size: 38px;
    margin-bottom: 35px;
}

.course-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1450px;
    margin: auto;
}

.course-card {
    background: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(13, 38, 76, 0.13);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 38, 76, 0.22);
}

.course-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

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

.course-card h3 {
    color: #0956c7;
    font-size: 23px;
    margin: 22px 20px 14px;
}

.course-card p {
    padding: 0 20px;
    color: #4c5e75;
    line-height: 1.9;
    min-height: 95px;
}

.course-card a {
    display: inline-block;
    margin: 18px 20px 25px;
    padding: 12px 22px;
    border-radius: 9px;
    background: #0956c7;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* About */

.about {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    padding: 90px 8%;
    background: #0b2d58;
    flex-wrap: wrap;
}

.about-image img {
    width: 370px;
    max-width: 100%;
    border-radius: 18px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.3);
}

.about-text {
    max-width: 600px;
}

.about-text h2 {
    color: white;
    margin-bottom: 20px;
}

.about-text p {
    color: #dce7f4;
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 18px;
}

.about-button {
    display: inline-block;
    margin-top: 10px;
    padding: 14px 26px;
    border-radius: 10px;
    background: #ff9500;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Footer */

footer {
    background: #050f20;
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 65px 8%;
}

.footer-column h2,
.footer-column h3 {
    margin-bottom: 18px;
}

.footer-column p {
    color: #c8d3e1;
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-column a {
    display: block;
    color: #dce7f4;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-column a:hover {
    color: #ffb300;
}

.footer-bottom {
    padding: 20px;
    background: #020914;
    color: #aebccc;
    text-align: center;
}

/* Floating WhatsApp */

.floating-whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 52px;
    padding: 0 20px;
    border-radius: 30px;
    background: #25d366;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28);
    transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
    transform: translateY(-5px) scale(1.04);
}

/* Tablet */

@media (max-width: 992px) {
    .hero h1 {
        font-size: 40px;
    }

    .professional-slider {
        height: 430px;
    }

    .slide-content {
        width: 55%;
    }

    .slide-content h2 {
        font-size: 38px;
    }

    .course-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

/* Phone */

@media (max-width: 700px) {
    .navbar {
        flex-wrap: wrap;
    }

    .menu-button {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        flex-direction: column;
        align-items: center;
        padding: 18px 0;
        gap: 18px;
    }

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

    .hero {
        min-height: 540px;
        padding: 65px 18px;
    }

    .hero h1 {
        font-size: 31px;
    }

    .hero-text {
        font-size: 17px;
    }

    .professional-slider {
        width: 94%;
        height: 390px;
        margin: 25px auto;
        border-radius: 16px;
    }

    .slide-overlay {
        background: rgba(3, 14, 34, 0.58);
    }

    .slide-content {
        top: 45%;
        left: 50%;
        width: 82%;
        text-align: center;
        transform: translate(-50%, -50%);
    }

    .slide-content span {
        font-size: 11px;
    }

    .slide-content h2 {
        font-size: 29px;
    }

    .slide-content p {
        font-size: 14px;
        line-height: 1.7;
    }

    .slide-content a {
        padding: 12px 20px;
        font-size: 14px;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .slider-arrow.previous {
        left: 8px;
    }

    .slider-arrow.next {
        right: 8px;
    }

    .course-container {
        grid-template-columns: 1fr;
    }

    .course-card img {
        height: 230px;
    }

    .about {
        padding: 70px 7%;
        text-align: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .floating-whatsapp {
        right: 13px;
        bottom: 13px;
        min-width: 105px;
        height: 48px;
        font-size: 14px;
    }
}/* Statistics */

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 70px 7%;
    background: #081f3d;
}

.stat-box {
    padding: 35px 20px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    background: linear-gradient(
        145deg,
        rgba(17, 71, 135, 0.95),
        rgba(7, 30, 61, 0.95)
    );
    text-align: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
}

.stat-box h2 {
    margin-bottom: 10px;
    color: #ffb300;
    font-size: 46px;
}

.stat-box h2::after {
    content: "+";
    margin-left: 4px;
}

.stat-box p {
    color: white;
    font-size: 19px;
    font-weight: bold;
}

/* Tablet */

@media (max-width: 992px) {
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Phone */

@media (max-width: 700px) {
    .stats {
        grid-template-columns: 1fr;
        padding: 50px 7%;
    }

    .stat-box h2 {
        font-size: 40px;
    }
}/* Testimonials */

.testimonials {
    padding: 90px 7%;
    background: #f5f7fb;
    color: #10223d;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
    font-size: 38px;
}

.testimonial-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1250px;
    margin: auto;
}

.testimonial-card {
    position: relative;
    padding: 35px 28px;
    border-radius: 18px;
    background: white;
    box-shadow: 0 12px 30px rgba(13, 38, 76, 0.13);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 42px rgba(13, 38, 76, 0.22);
}

.testimonial-card::before {
    content: "“";
    position: absolute;
    top: 8px;
    left: 20px;
    color: rgba(9, 86, 199, 0.12);
    font-size: 85px;
    font-family: Georgia, serif;
}

.stars {
    margin-bottom: 20px;
    color: #ffb300;
    font-size: 24px;
    letter-spacing: 3px;
}

.testimonial-card p {
    position: relative;
    z-index: 2;
    min-height: 120px;
    color: #4c5e75;
    font-size: 17px;
    line-height: 1.9;
}

.testimonial-card h3 {
    margin-top: 22px;
    color: #0956c7;
    font-size: 21px;
}

/* Tablet */

@media (max-width: 992px) {
    .testimonial-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Phone */

@media (max-width: 700px) {
    .testimonials {
        padding: 65px 7%;
    }

    .testimonials h2 {
        font-size: 30px;
    }

    .testimonial-container {
        grid-template-columns: 1fr;
    }

    .testimonial-card p {
        min-height: auto;
    }
}/* Google Map */

.map-section {
    padding: 90px 7%;
    background: #ffffff;
    text-align: center;
}

.map-section h2 {
    color: #10223d;
    font-size: 38px;
    margin-bottom: 35px;
}

.map-container {
    max-width: 1200px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
}

.map-container iframe {
    width: 100%;
    height: 500px;
    border: 0;
    display: block;
}

/* Tablet */

@media (max-width: 992px) {
    .map-container iframe {
        height: 420px;
    }
}

/* Phone */

@media (max-width: 700px) {
    .map-section {
        padding: 65px 7%;
    }

    .map-section h2 {
        font-size: 30px;
    }

    .map-container iframe {
        height: 320px;
    }
}/* Contact */

.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 90px 7%;
    background: #0b2d58;
    color: white;
}

.contact-info h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.contact-item {
    margin-bottom: 18px;
    padding: 15px 18px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08);
    font-size: 17px;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    outline: none;
    background: white;
    color: #10223d;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    padding: 15px;
    border: none;
    border-radius: 10px;
    background: #25d366;
    color: white;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #1ea955;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 900px) {
    .contact {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 30px;
    }
}

/* ===== Instructors ===== */

/* ===== Professional Training Areas ===== */

.instructors{
    padding:100px 8%;
    background:linear-gradient(180deg,#081b35,#0d2c56);
}

.instructors h2{
    text-align:center;
    font-size:42px;
    color:#fff;
}

.instructor-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    margin-top:55px;
}

.instructor-card{
    position:relative;
    overflow:hidden;
    background:rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border-radius:22px;
    padding:35px 30px;
    border:1px solid rgba(255,255,255,.15);
    transition:.4s;
    text-align:center;
}

.instructor-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(90deg,#FFD54A,#00C9FF);
}

.instructor-card:hover{
    transform:translateY(-12px);
    box-shadow:0 20px 45px rgba(0,201,255,.25);
}

.instructor-card h3{
    color:#FFD54A;
    font-size:26px;
    margin-bottom:15px;
}

.instructor-card span{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:#00C9FF;
    color:#071b35;
    font-weight:bold;
    margin-bottom:20px;
}

.instructor-card p{
    color:#f2f2f2;
    line-height:1.9;
}

/* ===== FAQ ===== */

.faq {
    padding: 80px 8%;
    background: #071b35;
}

.faq-container {
    max-width: 900px;
    margin: 40px auto 0;
}

.faq details {
    background: #12325d;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
}
.faq summary{
    padding:18px 22px;
    cursor:pointer;
    font-size:18px;
    font-weight:bold;
    color:#FFD54A;
    list-style:none;
}

.faq summary::-webkit-details-marker{
    display:none;
}

.faq p{
    padding:0 22px 20px;
    color:#f2f2f2;
    line-height:1.8;
}/* ===== Why Choose Us ===== */

.why-us{
    padding:100px 8%;
    background:#071b35;
}

.why-us h2{
    text-align:center;
    color:#fff;
    font-size:42px;
}

.why-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:30px;
    margin-top:55px;
}

.why-card{
    position:relative;
    background:#12325d;
    border-radius:22px;
    padding:35px;
    text-align:center;
    border:1px solid rgba(255,255,255,.12);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-12px);
    background:#18457f;
    box-shadow:0 18px 40px rgba(0,0,0,.30);
}

.why-card::before{
    content:"✓";
    width:65px;
    height:65px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#FFD54A;
    color:#071b35;
    font-size:32px;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
}

.why-card h3{
    color:#FFD54A;
    font-size:24px;
    margin-bottom:15px;
}

.why-card p{
    color:#f2f2f2;
    line-height:1.9;
}

/* ===== How It Works ===== */

.how-it-works{
    padding:80px 8%;
    background:#0b2346;
}

.steps-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:45px;
}

.step-card{
    background:#12325d;
    border-radius:18px;
    padding:30px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(255,255,255,.08);
}

.step-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.25);
}

.step-number{
    width:60px;
    height:60px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#FFD54A;
    color:#071b35;
    font-size:26px;
    font-weight:bold;
    display:flex;
    align-items:center;
    justify-content:center;
}

.step-card h3{
    color:#FFD54A;
    margin-bottom:15px;
    font-size:22px;
}

.step-card p{
    color:#f2f2f2;
    line-height:1.8;
}

/* Shared section headings */
.instructors .section-title,
.why-us .section-title {
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
}

.instructors .section-title p,
.why-us .section-title p {
    margin-top: 16px;
    color: #dbe8f6;
    font-size: 18px;
    line-height: 1.9;
}

/* Responsive improvements for training areas and why-us */
@media (max-width: 700px) {
    .instructors,
    .why-us {
        padding: 70px 7%;
    }

    .instructors h2,
    .why-us h2 {
        font-size: 30px;
        line-height: 1.5;
    }

    .instructors .section-title p,
    .why-us .section-title p {
        font-size: 16px;
    }

    .instructor-container,
    .why-container {
        margin-top: 35px;
        grid-template-columns: 1fr;
    }

    .instructor-card,
    .why-card {
        padding: 28px 22px;
    }
}/* ===== Academy Features ===== */

.academy-features{

    width:90%;
    margin:70px auto;

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

}

.feature-card{

    background:#ffffff;
    border-radius:18px;

    text-align:center;

    padding:40px 25px;

    transition:.35s;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.feature-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.18);

}

.feature-icon{

    font-size:55px;
    margin-bottom:20px;

}

.feature-card h3{

    color:#0b2c5f;
    margin-bottom:15px;

    font-size:24px;

}

.feature-card p{

    color:#666;
    line-height:1.8;

    font-size:16px;

}/* =========================
   بىز ھەققىدە بۆلىكى
========================= */

.about-section {
    padding: 90px 20px;
    background: #f5f8fc;
}

.about-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.about-heading {
    text-align: center;
    margin-bottom: 35px;
}

.about-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffb300;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-heading h2 {
    margin: 0 0 10px;
    color: #06162b;
    font-size: 40px;
}

.about-heading p {
    margin: 0;
    color: #526174;
    font-size: 18px;
}

.about-intro {
    max-width: 950px;
    margin: 0 auto 45px;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(6, 22, 43, 0.08);
    text-align: center;
}

.about-intro p {
    margin: 0 0 15px;
    color: #3b4758;
    font-size: 17px;
    line-height: 2;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-intro strong {
    color: #06162b;
}

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 65px;
}

.about-info-card {
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(6, 22, 43, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-info-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 35px rgba(6, 22, 43, 0.14);
}

.about-icon {
    margin-bottom: 15px;
    font-size: 40px;
}

.about-info-card h3 {
    margin: 0 0 15px;
    color: #06162b;
    font-size: 22px;
}

.about-info-card p {
    margin: 0;
    color: #526174;
    font-size: 16px;
    line-height: 1.9;
}

.about-fields h3 {
    margin-bottom: 35px;
    color: #06162b;
    font-size: 30px;
    text-align: center;
}

.about-fields-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-field-card {
    padding: 30px 20px;
    background: #06162b;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-field-card:hover {
    transform: translateY(-7px);
}

.field-icon {
    margin-bottom: 15px;
    font-size: 42px;
}

.about-field-card h4 {
    margin: 0 0 14px;
    color: #ffb300;
    font-size: 20px;
}

.about-field-card p {
    margin: 0;
    color: #e4ebf4;
    font-size: 15px;
    line-height: 1.9;
}

.about-slogan {
    max-width: 850px;
    margin: 45px auto 0;
    padding: 22px 30px;
    background: #ffb300;
    border-radius: 16px;
    text-align: center;
}

.about-slogan p {
    margin: 0;
    color: #06162b;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.8;
}

/* تاختا كومپيۇتېر */
@media (max-width: 992px) {
    .about-info-grid {
        grid-template-columns: 1fr;
    }

    .about-fields-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* يانفون */
@media (max-width: 576px) {
    .about-section {
        padding: 60px 15px;
    }

    .about-heading h2 {
        font-size: 32px;
    }

    .about-intro {
        padding: 22px 18px;
        text-align: right;
    }

    .about-intro p {
        font-size: 15px;
    }

    .about-info-card {
        padding: 25px 20px;
    }

    .about-fields h3 {
        font-size: 25px;
    }

    .about-fields-grid {
        grid-template-columns: 1fr;
    }

    .about-slogan {
        padding: 20px 18px;
    }

    .about-slogan p {
        font-size: 16px;
    }
}/* =========================
   بىز ھەققىدە بۆلىكى
========================= */

.about-section {
    padding: 90px 20px;
    background: #f5f8fc;
}

.about-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.about-heading {
    text-align: center;
    margin-bottom: 35px;
}

.about-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffb300;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-heading h2 {
    margin: 0 0 10px;
    color: #06162b;
    font-size: 40px;
}

.about-heading p {
    margin: 0;
    color: #526174;
    font-size: 18px;
}

.about-intro {
    max-width: 950px;
    margin: 0 auto 45px;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(6, 22, 43, 0.08);
    text-align: center;
}

.about-intro p {
    margin: 0 0 15px;
    color: #3b4758;
    font-size: 17px;
    line-height: 2;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-intro strong {
    color: #06162b;
}

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 65px;
}

.about-info-card {
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(6, 22, 43, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-info-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 35px rgba(6, 22, 43, 0.14);
}

.about-icon {
    margin-bottom: 15px;
    font-size: 40px;
}

.about-info-card h3 {
    margin: 0 0 15px;
    color: #06162b;
    font-size: 22px;
}

.about-info-card p {
    margin: 0;
    color: #526174;
    font-size: 16px;
    line-height: 1.9;
}

.about-fields h3 {
    margin-bottom: 35px;
    color: #06162b;
    font-size: 30px;
    text-align: center;
}

.about-fields-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-field-card {
    padding: 30px 20px;
    background: #06162b;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-field-card:hover {
    transform: translateY(-7px);
}

.field-icon {
    margin-bottom: 15px;
    font-size: 42px;
}

.about-field-card h4 {
    margin: 0 0 14px;
    color: #ffb300;
    font-size: 20px;
}

.about-field-card p {
    margin: 0;
    color: #e4ebf4;
    font-size: 15px;
    line-height: 1.9;
}

.about-slogan {
    max-width: 850px;
    margin: 45px auto 0;
    padding: 22px 30px;
    background: #ffb300;
    border-radius: 16px;
    text-align: center;
}

.about-slogan p {
    margin: 0;
    color: #06162b;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.8;
}

/* تاختا كومپيۇتېر */
@media (max-width: 992px) {
    .about-info-grid {
        grid-template-columns: 1fr;
    }

    .about-fields-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* يانفون */
@media (max-width: 576px) {
    .about-section {
        padding: 60px 15px;
    }

    .about-heading h2 {
        font-size: 32px;
    }

    .about-intro {
        padding: 22px 18px;
        text-align: right;
    }

    .about-intro p {
        font-size: 15px;
    }

    .about-info-card {
        padding: 25px 20px;
    }

    .about-fields h3 {
        font-size: 25px;
    }

    .about-fields-grid {
        grid-template-columns: 1fr;
    }

    .about-slogan {
        padding: 20px 18px;
    }

    .about-slogan p {
        font-size: 16px;
    }
}/* =========================
   بىز ھەققىدە بۆلىكى
========================= */

.about-section {
    padding: 90px 20px;
    background: #f5f8fc;
}

.about-container {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.about-heading {
    text-align: center;
    margin-bottom: 35px;
}

.about-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffb300;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-heading h2 {
    margin: 0 0 10px;
    color: #06162b;
    font-size: 40px;
}

.about-heading p {
    margin: 0;
    color: #526174;
    font-size: 18px;
}

.about-intro {
    max-width: 950px;
    margin: 0 auto 45px;
    padding: 30px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 35px rgba(6, 22, 43, 0.08);
    text-align: center;
}

.about-intro p {
    margin: 0 0 15px;
    color: #3b4758;
    font-size: 17px;
    line-height: 2;
}

.about-intro p:last-child {
    margin-bottom: 0;
}

.about-intro strong {
    color: #06162b;
}

.about-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 65px;
}

.about-info-card {
    padding: 30px 25px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(6, 22, 43, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-info-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 35px rgba(6, 22, 43, 0.14);
}

.about-icon {
    margin-bottom: 15px;
    font-size: 40px;
}

.about-info-card h3 {
    margin: 0 0 15px;
    color: #06162b;
    font-size: 22px;
}

.about-info-card p {
    margin: 0;
    color: #526174;
    font-size: 16px;
    line-height: 1.9;
}

.about-fields h3 {
    margin-bottom: 35px;
    color: #06162b;
    font-size: 30px;
    text-align: center;
}

.about-fields-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.about-field-card {
    padding: 30px 20px;
    background: #06162b;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.about-field-card:hover {
    transform: translateY(-7px);
}

.field-icon {
    margin-bottom: 15px;
    font-size: 42px;
}

.about-field-card h4 {
    margin: 0 0 14px;
    color: #ffb300;
    font-size: 20px;
}

.about-field-card p {
    margin: 0;
    color: #e4ebf4;
    font-size: 15px;
    line-height: 1.9;
}

.about-slogan {
    max-width: 850px;
    margin: 45px auto 0;
    padding: 22px 30px;
    background: #ffb300;
    border-radius: 16px;
    text-align: center;
}

.about-slogan p {
    margin: 0;
    color: #06162b;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.8;
}

/* تاختا كومپيۇتېر */
@media (max-width: 992px) {
    .about-info-grid {
        grid-template-columns: 1fr;
    }

    .about-fields-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* يانفون */
@media (max-width: 576px) {
    .about-section {
        padding: 60px 15px;
    }

    .about-heading h2 {
        font-size: 32px;
    }

    .about-intro {
        padding: 22px 18px;
        text-align: right;
    }

    .about-intro p {
        font-size: 15px;
    }

    .about-info-card {
        padding: 25px 20px;
    }

    .about-fields h3 {
        font-size: 25px;
    }

    .about-fields-grid {
        grid-template-columns: 1fr;
    }

    .about-slogan {
        padding: 20px 18px;
    }

    .about-slogan p {
        font-size: 16px;
    }
}/* =========================
   كۇرسلىرىمىز — 4 چوڭ كارتا
========================= */

.courses {
    padding: 90px 20px;
    background: #f5f8fc;
}

.course-container {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.course-container .course-card {
    display: block;
    position: relative;
    min-height: 390px;
    overflow: hidden;
    border-radius: 22px;
    background: #06162b;
    box-shadow: 0 14px 35px rgba(6, 22, 43, 0.16);
    text-decoration: none;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.course-container .course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(6, 22, 43, 0.24);
}

.course-container .course-card img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-container .course-card:hover img {
    transform: scale(1.06);
}

.course-container .course-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(3, 14, 34, 0.96) 0%,
        rgba(3, 14, 34, 0.7) 42%,
        rgba(3, 14, 34, 0.12) 75%
    );
}

.course-content {
    position: absolute;
    z-index: 2;
    right: 0;
    left: 0;
    bottom: 0;
    padding: 30px;
    color: #ffffff;
}

.course-content h3 {
    margin: 0 0 12px;
    color: #ffb300;
    font-size: 28px;
    line-height: 1.4;
}

.course-content p {
    margin: 0 0 18px;
    color: #eef3f8;
    font-size: 16px;
    line-height: 1.9;
}

.course-content span {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 30px;
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    transition: background 0.3s ease, color 0.3s ease;
}

.course-container .course-card:hover .course-content span {
    background: #ffb300;
    border-color: #ffb300;
    color: #06162b;
}

/* تاختا كومپيۇتېر */
@media (max-width: 992px) {
    .course-container {
        gap: 24px;
    }

    .course-container .course-card,
    .course-container .course-card img {
        min-height: 350px;
    }

    .course-content h3 {
        font-size: 25px;
    }
}

/* يانفون */
@media (max-width: 700px) {
    .courses {
        padding: 60px 15px;
    }

    .course-container {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .course-container .course-card,
    .course-container .course-card img {
        min-height: 330px;
    }

    .course-content {
        padding: 24px 20px;
    }

    .course-content h3 {
        font-size: 23px;
    }

    .course-content p {
        font-size: 15px;
    }
}/* =========================
   Course Detail Pages
========================= */

.subpage-header {
    background: #06162b;
    padding: 18px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.16);
}

.subpage-header-container {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.subpage-logo {
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    text-decoration: none;
}

.back-home-button {
    display: inline-block;
    padding: 10px 18px;
    border: 1px solid #ffb300;
    border-radius: 30px;
    color: #ffb300;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s ease;
}

.back-home-button:hover {
    background: #ffb300;
    color: #06162b;
}

.course-detail-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-position: center;
    background-size: cover;
    overflow: hidden;
}

.it-detail-hero {
    background-image: url("../images/it.jpg");
}

.course-detail-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 14, 34, 0.92),
        rgba(3, 14, 34, 0.58)
    );
}

.course-detail-hero-content {
    position: relative;
    z-index: 2;
    width: min(1000px, 100%);
    color: #ffffff;
    text-align: center;
}

.course-detail-hero-content span {
    display: inline-block;
    margin-bottom: 14px;
    color: #ffb300;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 1.5px;
}

.course-detail-hero-content h1 {
    margin: 0 0 20px;
    font-size: 52px;
    line-height: 1.3;
}

.course-detail-hero-content p {
    max-width: 760px;
    margin: 0 auto;
    color: #edf3fa;
    font-size: 19px;
    line-height: 2;
}

.detail-courses-section {
    padding: 90px 20px;
    background: #f5f8fc;
}

.detail-section-heading {
    max-width: 850px;
    margin: 0 auto 50px;
    text-align: center;
}

.detail-section-heading span {
    display: inline-block;
    margin-bottom: 10px;
    color: #ffb300;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 1.3px;
}

.detail-section-heading h2 {
    margin: 0 0 14px;
    color: #06162b;
    font-size: 38px;
}

.detail-section-heading p {
    margin: 0;
    color: #526174;
    font-size: 17px;
    line-height: 1.9;
}

.detail-course-grid {
    width: min(1200px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.detail-course-card {
    padding: 32px 26px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 32px rgba(6, 22, 43, 0.09);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detail-course-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 40px rgba(6, 22, 43, 0.16);
}

.detail-course-icon {
    margin-bottom: 18px;
    font-size: 44px;
}

.detail-course-card h3 {
    margin: 0 0 14px;
    color: #06162b;
    font-size: 23px;
}

.detail-course-card p {
    min-height: 92px;
    margin: 0 0 22px;
    color: #526174;
    font-size: 16px;
    line-height: 1.9;
}

.detail-course-card a {
    display: inline-block;
    padding: 11px 20px;
    background: #ffb300;
    border-radius: 30px;
    color: #06162b;
    font-size: 15px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
}

.detail-course-card a:hover {
    background: #06162b;
    color: #ffffff;
}

.subpage-footer {
    padding: 24px 20px;
    background: #06162b;
    text-align: center;
}

.subpage-footer p {
    margin: 0;
    color: #dfe8f2;
    font-size: 15px;
}

/* Tablet */
@media (max-width: 992px) {
    .course-detail-hero {
        min-height: 460px;
    }

    .course-detail-hero-content h1 {
        font-size: 43px;
    }

    .detail-course-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 650px) {
    .subpage-header-container {
        flex-direction: column;
    }

    .course-detail-hero {
        min-height: 430px;
        padding: 65px 15px;
    }

    .course-detail-hero-content h1 {
        font-size: 34px;
    }

    .course-detail-hero-content p {
        font-size: 16px;
    }

    .detail-courses-section {
        padding: 65px 15px;
    }

    .detail-section-heading h2 {
        font-size: 30px;
    }

    .detail-course-grid {
        grid-template-columns: 1fr;
    }

    .detail-course-card p {
        min-height: auto;
    }
}.languages-detail-hero{
    background-image: url("../images/languages.jpg");
}

.social-detail-hero{
    background-image: url("../images/social.jpg");
}

.islamic-detail-hero{
    background-image: url("../images/islamic.jpg");

