/* ==============================
   CSS VARIABLES — DESIGN SYSTEM
================================ */
:root {
    --primary: #61CE70;
    --primary-dark: #4ab55a;
    --primary-light: rgba(97, 206, 112, 0.12);
    --secondary: #111827;
    --secondary-light: #1f2937;
    --secondary-lighter: #374151;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --text-dark: #111827;
    --text-body: #374151;
    --text-muted: #6b7280;

    --font-heading: 'Oswald', sans-serif;
    --font-sub: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.14);
    --shadow-primary: 0 8px 30px rgba(97, 206, 112, 0.28);

    --container: 1200px;
    --section-py: 90px;
    --transition: all 0.3s ease;
}

/* ==============================
   BASE RESET
================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ==============================
   UTILITIES
================================ */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section-py {
    padding: var(--section-py) 0;
}

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

.text-primary {
    color: var(--primary);
}

.section-label {
    display: inline-block;
    font-family: var(--font-sub);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    background: var(--primary-light);
    border: 1px solid rgba(97, 206, 112, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.2;
    letter-spacing: 0.5px;
}

.section-title span {
    color: var(--primary);
}

.section-desc {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    max-width: 640px;
    margin: 16px auto 0;
    line-height: 1.8;
}

/* ==============================
   BUTTONS
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sub);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.5px;
    padding: 14px 30px;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}

.btn-outline-dark:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==============================
   CARDS
================================ */
.card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

/* ==============================
   ANIMATIONS / ELEMENTOR FIX
================================ */
/* We use Elementor's native motion effects instead of hardcoded reveal CSS */
.reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
}

.reveal.visible {
    opacity: 1 !important;
    transform: none !important;
}

/* Divider */
.divider {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin: 16px auto 0;
}

.divider-left {
    margin: 16px 0 0;
}

/* Section header centered */
.section-header {
    text-align: center;
    margin-bottom: 0;
}


/* RESPONSIVE DESIGN */
@media(max-width:768px) {
      .navbar-nav {
        display: none;
      }

      .navbar-brand {
        font-size: 18px;
      }
    }

@media(max-width:1024px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .hero-form {
        max-width: 500px;
      }

      .hero {
        padding: 120px 0 60px;
      }
    }

@media(max-width:768px) {
      .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .about-img-wrap img {
        height: 300px;
      }

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

@media(max-width:768px) {
      .curriculum-grid {
        grid-template-columns: 1fr;
      }
    }

@media(max-width:768px) {
      .internship-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .internship-features {
        grid-template-columns: 1fr;
      }
    }

@media(max-width:768px) {
      .trainer-card-wrap {
        grid-template-columns: 1fr;
        padding: 30px;
      }

      .trainer-img-wrap {
        height: 220px;
      }
    }

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

      .stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
      }

      .stat-num {
        font-size: 36px;
      }
    }

@media(max-width:768px) {
      .contact-grid {
        grid-template-columns: 1fr;
      }
    }

/* Fix Contact Form 7 Auto-formatting */
.hero-form .form-group p { margin: 0; padding: 0; display: contents; }
.hero-form .form-group br { display: none; }