/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* ================= TOP HEADER ================= */
.top-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1100;

  background: rgba(0, 82, 204, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 8px 25px;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  min-height: 40px;
}

/* Left */
.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.top-left a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}

/* Center */
.top-center {
  flex: 1;
  text-align: center;
  color: #e8f5f3;
}

.top-center p {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0 10px;
   color: #e8f5f3;
}

/* Right */
.top-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top-right a {
  color: #fff;
  font-size: 14px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.top-right a:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

/* ================= RESPONSIVE TOP HEADER ================= */
@media (max-width: 768px) {
  .top-header {
    flex-direction: column;
    gap: 6px;
    padding: 6px 12px;
    text-align: center;
  }

  .top-left,
  .top-right {
    justify-content: center;
  }

  .top-center p {
    font-size: 12px;
    line-height: 1.4;
  }
}

@media (max-width: 480px) {
  .top-center p {
    font-size: 11.5px;
  }
}

:root {
    --primary: #4144f3;
    --primary-dark: #2ecc71;
    --secondary: #5B8A72;
    --accent: #f4B860;
    --cream: #fff8f0;
    --warm-white: #fffBf5;
    --text-dark: #000000;
    --text-mid: #000000;
    --text-light: #605f5f;
    --shadow: rgba(247, 240, 238, 0.15);
    --navbar-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--warm-white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    padding-top: 0;
}

body::before {
    content: '';
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

body::after {
    content: '';
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(91, 138, 114, 0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

/* ==================== NEW HERO SECTION ==================== */
.hero-section {
    background: linear-gradient(135deg, #4144f3 0%, #2ecc71 100%);
    position: relative;
    overflow: hidden;
    margin-top: 100px;
    padding: 0;
    min-height: 700px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 140px 40px 80px;
    position: relative;
    z-index: 1;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Content */
.hero-left {
    animation: fadeInLeft 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
    color: #f4B860;
    font-size: 1.1rem;
}

.hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 25px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.hero-highlight {
    color: #f4B860;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1rem;
    font-weight: 500;
}

.hero-feature-item i {
    color: #f4B860;
    font-size: 1.2rem;
}

.hero-cta-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-btn-primary {
    background: white;
    color: #4144f3;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    background: #f4B860;
    color: white;
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: white;
    color: #25d366;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-stat {
    text-align: left;
}

.hero-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
    line-height: 1;
}

.hero-stat p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Right Image */
.hero-right {
    animation: fadeInRight 0.8s ease-out;
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.4s ease;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    min-height: 500px;
    object-fit: cover;
}

.hero-image-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    padding: 20px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    animation: float 3s ease-in-out infinite;
}

.hero-image-badge i {
    font-size: 2rem;
    color: #f4B860;
}

.hero-image-badge strong {
    font-size: 1.5rem;
    color: #4144f3;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.hero-image-badge p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* ==================== HERO RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-container {
        padding: 80px 30px 60px;
    }

    .hero-right {
        order: -1;
    }

    .hero-image-wrapper {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-main-image {
        min-height: 400px;
    }

    .hero-section {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .hero-container {
        padding: 60px 20px 50px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-cta-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .hero-stat h3 {
        font-size: 2rem;
    }

    .hero-stat p {
        font-size: 0.85rem;
    }

    .hero-main-image {
        min-height: 300px;
    }

    .hero-image-badge {
        bottom: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .hero-image-badge i {
        font-size: 1.5rem;
    }

    .hero-image-badge strong {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    .hero-stats {
        gap: 10px;
    }

    .hero-stat h3 {
        font-size: 1.5rem;
    }

    .hero-stat p {
        font-size: 0.75rem;
    }
}

/* ==================== REST OF THE ORIGINAL CSS ==================== */

h1 {
    font-family: 'Poppins', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem 4rem;
    position: relative;
    z-index: 2;
}

article {
    background: white;
    border-radius: 24px;
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: 0 20px 60px var(--shadow);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

section {
    margin-bottom: 3.5rem;
}

section:last-child {
    margin-bottom: 0;
}

h2 {
    font-family: 'Poppins', serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    padding-bottom: 0.75rem;
    --underline-left: 0px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--underline-left);
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    transition: left 0.3s ease;
}

h3 {
    font-family: 'Poppins', serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    color: var(--secondary);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

p {
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.feature-card {
    background: var(--cream);
    padding: 1.75rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(217, 119, 87, 0.15);
    border-left-color: var(--secondary);
}

.feature-card strong {
    display: block;
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.highlight-box {
    background: linear-gradient(135deg, #4144f3 0%, #2ecc71 100%);
    color: rgb(255, 255, 255);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 2.5rem 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.highlight-box h3 {
    color: white;
    margin-top: 0;
}

.highlight-box ul {
    list-style: none;
    position: relative;
    z-index: 1;
}

.highlight-box li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    font-size: 1.05rem;
    color: white;
}

.highlight-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

/* ==================== COURSE CARD - EXACT DESIGN FROM SCREENSHOT ==================== */

.single-course-card {
    background: linear-gradient(135deg, #e0f2f1 0%, #e8f5f3 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 150, 136, 0.1);
}

.single-course-inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    position: relative;
}

/* Vertical divider between columns */
.single-course-inner::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(0, 150, 136, 0.2) 10%, 
        rgba(0, 150, 136, 0.2) 90%, 
        transparent 100%);
    transform: translateX(-50%);
}

/* Horizontal divider between rows */
.single-course-inner::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
        transparent 0%, 
        rgba(0, 150, 136, 0.2) 5%, 
        rgba(0, 150, 136, 0.2) 95%, 
        transparent 100%);
    transform: translateY(-50%);
}

.single-course-item {
    background: transparent;
    padding: 2rem;
    border-radius: 0;
    border: none;
    transition: all 0.3s ease;
    position: relative;
}

.single-course-item:hover {
    transform: translateY(-2px);
}

.single-course-item h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #00897b;
    border: none;
    padding-bottom: 0;
}

.single-course-item h4 i {
    font-size: 1.4rem;
    color: #00897b;
}

.single-course-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.single-course-item ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
    font-size: 1rem;
    color: #455a64;
    font-weight: 400;
}

.single-course-item ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #00897b;
    font-weight: bold;
    font-size: 1.3rem;
    line-height: 1.7;
}

/* ==================== END COURSE CARD ==================== */

.course-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-card {
    background: rgb(222, 239, 179);
    border: 2px solid var(--cream);
    padding: 1.75rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

/* Center the last card */
.detail-card:last-child {
    grid-column: 1 / -1;
    max-width: 33.333%;
    margin: 0 auto;
}

.detail-card:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.detail-card h4 {
    font-family: 'Poppins', serif;
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.detail-card ul {
    list-style: none;
}

.detail-card li {
    padding: 0.5rem 0;
    color: var(--text-mid);
    position: relative;
    padding-left: 1.5rem;
}

.detail-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
    font-size: 1.3rem;
}

.career-list {
    background: var(--cream);
    padding: 2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
}

.career-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.career-list li {
    padding: 0.75rem 1rem;
    background: white;
    border-radius: 10px;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2.5rem;
}

.career-list li::before {
    content: '★';
    position: absolute;
    left: 1rem;
    color: var(--accent);
}

.career-list li:hover {
    background: var(--primary);
    color: white;
    transform: translateX(4px);
}

.career-list li:hover::before {
    color: white;
}

/* OPTIMIZED IMAGE STYLING */
.blog-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    max-height: 450px;
    border-radius: 16px;
    margin: 2.5rem auto;
    display: block;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transition: all 0.4s ease;
    object-fit: cover;
}

.blog-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(65, 68, 243, 0.2);
}

.image-caption {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.75rem;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image-wrapper {
    position: relative;
    margin: 1rem auto 3rem;
    max-width: 900px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(253, 250, 250, 0.15);
}

.hero-image {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    display: block;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem auto;
    max-width: 800px;
}

.image-grid-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
    height: 300px;
}

.image-grid-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(65, 68, 243, 0.25);
}

.image-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.image-grid-item:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
    padding: 2rem 1.5rem 1.5rem;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.image-grid-item:hover .image-overlay {
    background: linear-gradient(to top, rgba(65, 68, 243, 0.9) 0%, rgba(65, 68, 243, 0.5) 60%, transparent 100%);
}

/* ==================== CTA Section ==================== */
.cta-section {
    background: linear-gradient(135deg, #4144f3 0%, #2ecc71 100%);
    color: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    margin-top: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="3" fill="white" opacity="0.1"/></svg>');
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section h2::after {
    background: var(--accent);
    left: 50%;
    transform: translateX(-50%);
}

/* ===== FIX: White text for all elements inside .cta-section ===== */
.cta-section p,
.cta-section span,
.cta-section div,
.cta-section li {
    color: #ffffff;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
}

.contact-item a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: var(--accent);
    transform: scale(1.05);
}

.cta-button {
    display: inline-block;
    background: rgb(255, 255, 255);
    color: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
    background: var(--accent);
    color: var(--text-light);
}

.website-links {
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.website-links a {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    border-bottom: 2px solid rgba(255,255,255,0.3);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.cta-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
    margin-top: 20px;
}

/* common button style */
.cta {
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

.cta.enroll {
    background: linear-gradient(135deg, #00bcd4, #1e88e5);
}

.cta.whatsapp {
    background: linear-gradient(135deg, #2af598, #22c55e);
}

.cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(255, 255, 255, 0.3);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background-color: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.faq-heading {
  font-size: 2.5em;
  font-weight: 700;
  color: #0056b3;
  margin-bottom: 10px;
}

.faq-underline {
  width: 100px;
  height: 4px;
  background-color: #0056b3;
  margin-bottom: 20px;
}

.faq-subtitle {
  font-size: 1.1em;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.6;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  border: 2px solid #e8ecef;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  background: white;
}

.faq-item:hover {
  border-color: #3498db;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

.faq-item.active {
  border-color: #3498db;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  font-size: 1.1em;
  font-weight: 600;
  color: #2c3e50;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: #3498db;
}

.faq-icon {
  font-size: 1.5em;
  font-weight: 300;
  color: #3498db;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  background: #f8f9fa;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  color: #555;
  font-size: 1em;
  line-height: 1.7;
  padding-top: 8px;
}

/* ==================== FOOTER ==================== */

.footer {
  background: #0c0f1a;
  color: #dcdcdc;
  font-family: 'Poppins', sans-serif;
}

/* ===== STATE QUICK LINKS ===== */
.footer-states {
  max-width: 1200px;
  margin: auto;
  padding: 50px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-states h4 {
  color: #1f4fd8;
  margin-bottom: 20px;
}

.state-links {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 30px;
}

.state-links a {
  color: #cccccc;
  font-size: 13px;
  text-decoration: none;
}

.state-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ===== MAIN GRID ===== */
.footer-grid {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

/* COMMON */
.footer-col h4 {
  color: #1f4fd8;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #cccccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-col a:hover {
  color: #ffffff;
}

/* BRAND */
.footer-logo {
  max-width: 150px;
  margin-bottom: 15px;
}

.footer-col h3 {
  color: #1f4fd8;
  margin-bottom: 10px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #cccccc;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #1f4fd8;
}

/* BOTTOM */
.footer-bottom {
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
  color: #999;
}

.footer-bottom p {
  margin: 0 0 5px 0;
  color: #999;
}

.footer-link {
  color: #1a5cff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease, text-decoration 0.3s ease;
}

.footer-link:hover {
  color: #1a5cff;
  text-decoration: underline;
}

.footer-links {
  font-size: 13px;
  color: #999;
}

.footer-links span {
  margin: 0 5px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (max-width: 768px) {
    :root {
        --navbar-height: 60px;
    }

    body {
        padding-top: var(--navbar-height);
    }

    .container {
        padding: 0 1rem 3rem;
    }

    article {
        padding: 2rem 1.5rem;
    }

    .features-grid,
    .course-details {
        grid-template-columns: 1fr;
    }

    .detail-card:last-child {
        max-width: 100%;
    }

    .contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-section {
        padding: 2rem 1.5rem;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .image-grid-item {
        height: 250px;
    }

    .blog-image {
        margin: 2rem auto;
        max-height: 350px;
    }

    .hero-image {
        max-height: 300px;
    }

    .cta-container {
        flex-direction: column;
        padding: 20px 0;
    }

    /* COURSE CARD RESPONSIVE */
    .single-course-inner {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Remove dividers on mobile */
    .single-course-inner::before,
    .single-course-inner::after {
        display: none;
    }
    
    .single-course-card {
        padding: 2rem 1.5rem;
    }
    
    .single-course-item {
        padding: 1.5rem;
        border-bottom: 1px dashed rgba(0, 150, 136, 0.2);
    }
    
    .single-course-item:last-child {
        border-bottom: none;
    }

    /* FAQ RESPONSIVE */
    .faq-heading {
        font-size: 2em;
    }

    .faq-subtitle {
        font-size: 1em;
    }

    .faq-question {
        font-size: 1em;
        padding: 16px 20px;
    }

    /* FOOTER RESPONSIVE */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .state-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    :root {
        --navbar-height: 70px;
    }

    .single-course-card {
        padding: 2rem;
    }
    
    .single-course-item {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .state-links {
    grid-template-columns: 1fr;
  }
}

@media print {
    body {
        background: white;
        padding-top: 0;
    }

    body::before,
    body::after {
        display: none;
    }

    .hero-section {
        background: var(--primary);
        page-break-after: avoid;
        margin-top: 0;
    }

    article {
        box-shadow: none;
    }
}