/* =========================
   GLOBAL STYLES
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #1f2937;
    background: #f8fafc;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

section {
    padding: 60px 0;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

/* =========================
   BUTTONS
========================= */

.btn {
    background: #2563eb;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-block;
    transition: 0.3s;
}

.btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
}

.btn-outline {
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 12px 26px;
    border-radius: 12px;
    margin-left: 15px;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.btn-light {
    background: white;
    color: #2563eb;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
}

/* =========================
   HEADER
========================= */

header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.nav-container {
    height: 85px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    color: #111827;
}

.logo span {
    color: #2563eb;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    color: #374151;
    font-weight: 500;
}

nav a:hover,
.active {
    color: #2563eb;
}

/* =========================
   HERO
========================= */

.hero {
    background: linear-gradient(135deg,#0f172a,#1e3a8a);
    color: white;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tag {
    background: rgba(255,255,255,0.15);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 58px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #d1d5db;
}

.hero-card {
    background: white;
    color: #111827;
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.hero-card h3 {
    margin-bottom: 25px;
    color: #2563eb;
}

.hero-card ul {
    list-style: none;
}

.hero-card li {
    padding: 10px 0;
    font-weight: 500;
}

/* =========================
   SECTION TITLES
========================= */

.section-title {
    text-align: center;
    margin-bottom: 35px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.section-title p {
    color: #6b7280;
}

/* =========================
   ABOUT
========================= */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.about-card {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: .3s;
}

.about-card:hover {
    transform: translateY(-8px);
}

.about-card i {
    font-size: 45px;
    color: #2563eb;
    margin-bottom: 20px;
}

.about-card h3 {
    margin-bottom: 15px;
}

/* =========================
   WHY US
========================= */

.why-us {
    background: white;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.why-item {
    background: #eff6ff;
    padding: 25px;
    border-radius: 15px;
    font-weight: 600;
}

.why-item i {
    color: #2563eb;
    margin-right: 10px;
}

/* =========================
   COURSES
========================= */

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
    justify-content: center;
    gap: 25px;
}

.course-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: .3s;
}

.course-card:hover {
    transform: translateY(-8px);
}

.course-card h3 {
    color: #2563eb;
    margin-bottom: 15px;
}

.center {
    text-align: center;
    margin-top: 50px;
}

/* =========================
   TRAINERS
========================= */

.trainers {
    background: white;
}

.trainer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 350px));
    justify-content: center;
    gap: 30px;
}

.trainer-card {
    background: #f8fafc;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,.08);
  
}

.trainer-card img {
    height: 320px;
    object-fit: cover;
}

.trainer-card h3 {
    margin-top: 20px;
}

.trainer-card span {
    color: #2563eb;
    font-weight: 600;
}

.trainer-card p {
    padding: 20px;
}

/* =========================
   TESTIMONIALS
========================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 25px;
}

.testimonial-card {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.testimonial-card h4 {
    margin-top: 20px;
    color: #2563eb;
}

/* =========================
   FAQ
========================= */

.faq-item {
    background: white;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,.05);
}

.faq-item h3 {
    margin-bottom: 10px;
}

/* =========================
   BROCHURE
========================= */

.brochure {
    background: linear-gradient(135deg,#2563eb,#1e40af);
    color: white;
    text-align: center;
}

.brochure h2 {
    font-size: 40px;
}

.brochure p {
    margin: 20px 0 35px;
}

/* =========================
   CTA
========================= */

.cta {
    text-align: center;
    background: #0f172a;
    color: white;
}

.cta h2 {
    font-size: 42px;
}

.cta p {
    margin: 15px auto;
    max-width: 700px;
}

/* =========================
   FOOTER
========================= */

footer {
    background: #020617;
    color: white;
    padding-top: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
}

.footer-grid a {
    display: block;
    color: #cbd5e1;
    margin-bottom: 12px;
}

.footer-grid h4 {
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    padding: 25px;
    margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,.1);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

    .hero-grid,
    .about-grid,
    .why-grid,
    .course-grid,
    .trainer-grid,
    .testimonial-grid,
    .footer-grid{

        grid-template-columns: 1fr 1fr;
    }

    .hero h1{
        font-size:45px;
    }

}

@media(max-width:768px){

    nav{
        display:none;
    }

    .hero-grid,
    .about-grid,
    .why-grid,
    .course-grid,
    .trainer-grid,
    .testimonial-grid,
    .footer-grid{

        grid-template-columns:1fr;
    }

    .hero{
        text-align:center;
    }

    .hero h1{
        font-size:36px;
    }

    .btn-outline{
        margin-left:0;
        margin-top:15px;
        display:block;
    }

    section{
        padding:70px 0;
    }

}
/* ==========================
   NOTIFICATIONS
========================== */

.notification {

    position: fixed;
    top: 30px;
    right: -500px;

    min-width: 320px;

    padding: 18px 24px;

    border-radius: 14px;

    color: white;

    font-weight: 600;

    z-index: 9999;

    box-shadow: 0 15px 35px rgba(0,0,0,0.2);

    transition: 0.4s ease;
}

.notification.success {
    background: #16a34a;
}

.notification.error {
    background: #dc2626;
}

.notification.show {
    right: 30px;
}
/* ==========================
   ENROLL FORM
========================== */

.enroll-wrapper {
    max-width: 1000px;
    margin: auto;
}

.enroll-form {
    background: white;
    padding: 50px;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);

    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #d1d5db;
    border-radius: 12px;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    transition: 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #2563eb;
    outline: none;
    box-shadow: 0 0 0 4px rgba(37,99,235,0.15);
}

@media (max-width: 768px) {
    .enroll-form {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .full-width {
        grid-column: auto;
    }
}
/* ==========================
   CONTACT PAGE
========================== */

.contact-layout{
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:40px;
}

.contact-info,
.contact-form-card{
    background:white;
    padding:40px;
    border-radius:24px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.contact-item{
    display:flex;
    gap:20px;
    margin:30px 0;
    align-items:flex-start;
}

.contact-item i{
    font-size:24px;
    color:#2563eb;
    margin-top:5px;
}

.social-links{
    margin-top:30px;
    display:flex;
    gap:15px;
}

.social-links a{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#eff6ff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#2563eb;
    font-size:20px;
    transition:.3s;
}

.social-links a:hover{
    transform:translateY(-5px);
}

.map-box{
    overflow:hidden;
    border-radius:20px;
}

@media(max-width:900px){

    .contact-layout{
        grid-template-columns:1fr;
    }

}