


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

:root {
    --primary-color: #2563eb;
    --secondary-color: #ffffff;
    --accent-color: #ff6600;
    --text-light: #666666;
    --text-dark: #1a1a1a;
    --bg-light: #fafafa;
    --border-color: #e5e5e5;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--secondary-color);
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(37, 99, 235, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-bottom-color: rgba(37, 99, 235, 0.15);
}

.nav-container {
    max-width: 1400px;
    height: 110px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 50%, var(--accent-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    cursor: pointer;
}






/* nav logo image (replaces text logo) */
.nav-logo {
    width: 140px; /* default desktop size */
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 900px) {
    .nav-logo {
        width: 110px; /* tablet */
    }
}

@media (max-width: 600px) {
    .nav-logo {
        width: 88px; /* mobile */
    }
}

.nav-links {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.65rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-links a:hover::before {
    opacity: 1;
}

.nav-links a:hover::after {
    width: 70%;
}

/* CTA Button Styling */
.nav-links a.nav-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
    margin-left: 0.5rem;
    position: relative;
    overflow: hidden;
}

.nav-links a.nav-cta::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    opacity: 0;
}

.nav-links a.nav-cta::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.nav-links a.nav-cta:hover {
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
    background: linear-gradient(135deg, #1d4ed8 0%, var(--primary-color) 100%);
}

.nav-links a.nav-cta:hover::before {
    opacity: 1;
}

.nav-links a.nav-cta:hover::after {
    width: 300px;
    height: 300px;
}

.nav-links a.nav-cta:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* Hamburger Menu - Hidden on Desktop */
.hamburger-menu {
    display: none;
}
.fancy-select {
    /* Reset default look */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* Layout & spacing */
    min-width: 260px;
    max-width: 100%;
    padding: 12px 44px 12px 16px;
    font-size: 15px;
    line-height: 1.5;

    /* Colors & typography */
    font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    font-weight: 500;
    color: #111827;               /* dark gray */
    background-color: #ffffff;

    /* Custom arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;

    /* Border & subtle base */
    border: 1px solid #d1d5db;    /* light gray */
    border-radius: 8px;

    /* NO box-shadow by default */
    box-shadow: none;
    cursor: pointer;

    /* Smooth transitions — only border & bg */
    transition: 
      border-color 0.15s ease,
      background-color 0.15s ease,
      transform 0.12s ease;
  }

  /* ─── Hover ─── only border + very light bg lift ─── NO shadow/popup feel */
  .fancy-select:hover {
    border-color: #9ca3af;        /* medium gray */
    background-color: #f9fafb;    /* very subtle off-white */
    transform: translateY(-1px);  /* tiny lift — optional, remove if you don't like */
  }

  /* ─── Focus / Opened ─── clean blue ring, still NO heavy shadow */
  .fancy-select:focus {
    outline: none;
    border-color: #3b82f6;        /* blue */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.12);  /* very soft glow – almost invisible */
    background-color: #ffffff;
  }

  /* Placeholder look when nothing selected */
  .fancy-select:invalid {
    color: #6b7280;               /* gray */
  }

  /* Optional: make arrow darker on hover/focus */
  .fancy-select:hover,
  .fancy-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234b5563' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  }

  /* Mobile touch-friendly */
  @media (max-width: 480px) {
    .fancy-select {
      padding: 14px 48px 14px 18px;
      font-size: 15.5px;
    }
  }
/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 2rem 1rem;
    position: relative;
    background-color: var(--bg-light);
    overflow: hidden;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 100% 60% at 50% 0%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 40%, rgba(255, 255, 255, 0.85) 100%);
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 102, 0, 0.03) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
    padding: 1rem 0;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    position: relative;
    z-index: 2;
        margin-top: 90px;
}

.hero-images {
    position: relative;
    height: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.3s both;
}

.hero-image-main {
    position: relative;
    width: 100%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: rotate(-2deg);
    transition: transform 0.4s ease;
}

.hero-image-main:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-image-main:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    z-index: 1;
}

.hero-image-secondary {
    position: absolute;
    top: 40px;
    right: -30px;
    width: 160px;
    height: 160px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(5deg);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.hero-image-secondary:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 4;
}

.hero-image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-tertiary {
    position: absolute;
    bottom: 60px;
    right: 40px;
    width: 150px;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: rotate(-3deg);
    z-index: 2;
    animation: float 8s ease-in-out infinite reverse;
    transition: transform 0.3s ease;
}

.hero-image-tertiary:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 4;
}

.hero-image-tertiary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.7rem 1.2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.2);
    z-index: 3;
    animation: float 5s ease-in-out infinite;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-badge:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.badge-1 {
    top: 80px;
    left: -50px;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 120px;
    left: -30px;
    animation-delay: 1s;
}

.badge-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.2rem;
}

.badge-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

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

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0.9rem;
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-radius: 50px;
    margin-bottom: 1rem;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

/* Logo inside hero badge */
.hero-logo {
    width: 44px;
    height: 44px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
}

.badge-text {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.badge-dot {
    width: 5px;
    height: 5px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero-tagline {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.tagline-main {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
    opacity: 0.9;
}

.tagline-sub {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    color: var(--text-light);
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.title-line {
    display: block;
    margin-bottom: 0.2rem;
}

.title-accent-line {
    position: relative;
    display: inline-block;
}

.title-accent {
    color: var(--accent-color);
    position: relative;
    display: inline-block;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.12em;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0.3;
    z-index: -1;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
    opacity: 0.85;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-description {
    max-width: 750px;
    margin-bottom: 1.2rem;
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    line-height: 1.6;
    color: var(--text-dark);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-description p {
    margin-bottom: 0.8rem;
}

.hero-description p:last-child {
    margin-bottom: 0;
}

.description-highlight {
    font-size: 1.05em;
    font-weight: 500;
    color: var(--primary-color);
    line-height: 1.5;
}

.hero-description strong {
    color: var(--accent-color);
    font-weight: 600;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(37, 99, 235, 0.1);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.feature-icon {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-dark);
}

.hero-quotes {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.quote-card {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(255, 102, 0, 0.05));
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
    position: relative;
    transition: all 0.3s ease;
}

.quote-card:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    font-style: italic;
    line-height: 1.4;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-top: 1rem;
    animation: fadeInUp 0.8s ease-out 0.9s both;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 1.8rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 50px;
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--accent-color), #ff8533);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.cta-button.primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
}

.cta-button.primary:hover::before {
    left: 0;
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-button.secondary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.button-text {
    position: relative;
    z-index: 1;
}

.button-arrow {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.cta-button:active {
    transform: translateY(-1px);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: fadeIn 1s ease-out 1.2s both;
}

.scroll-line {
    width: 4px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary-color), transparent);
    animation: scrollDown 2s ease-in-out infinite;
}

.scroll-text {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

@keyframes scrollDown {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

/* Why Section */
.why-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.why-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.why-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.why-header {
    text-align: center;
    position: relative;
}

.why-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.why-badge span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.why-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.title-part-1 {
    display: block;
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-part-2 {
    display: block;
    color: var(--text-dark);
    position: relative;
}

/* .title-part-2::after {
    content: '';
    position: absolute;
    bottom: 0.1em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0.4;
    z-index: -1;
} */

.why-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 2rem auto;
    border-radius: 2px;
}

.why-subtitle {
    font-size: clamp(0.95rem, 1.7vw, 1.25rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.why-mission {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    color: var(--text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 400;
}

.training-advantage {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    padding: 4rem 3rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.advantage-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.advantage-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    letter-spacing: -0.02em;
}

.advantage-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 400;
    font-style: italic;
}

.advantage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    background: var(--secondary-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.advantage-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(255, 102, 0, 0.03));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-card:hover::after {
    opacity: 1;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 30px rgba(37, 99, 235, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.advantage-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.advantage-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.advantage-card:hover .advantage-icon-wrapper::before {
    opacity: 0.1;
}

.advantage-card:hover .advantage-icon-wrapper {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.advantage-icon {
    font-size: 2rem;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

.advantage-card:hover .advantage-icon {
    opacity: 1;
}

.advantage-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.advantage-card-text {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.why-footer {
    text-align: center;
    padding-top: 3rem;
    position: relative;
}

.why-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
}

.why-footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.why-statement-wrapper {
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.why-statement {
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.why-quote-wrapper {
    position: relative;
    padding: 2rem;
}

.quote-mark {
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.2;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: Georgia, serif;
    line-height: 1;
}

.why-quote {
    font-size: clamp(1.1rem, 1.7vw, 1.5rem);
    font-style: italic;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

/* About Section */
.about-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.about-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(255, 102, 0, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.about-badge span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.title-main {
    color: var(--text-dark);
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.about-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 2rem auto;
    border-radius: 2px;
}

.about-intro {
    font-size: clamp(0.95rem, 1.7vw, 1.2rem);
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.about-block {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    padding: 4rem 3.5rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Volpe Way: plain block (no background or decorative overlays) */
.about-block.volpe-way {
    background: transparent;
    padding: 0; /* keep inner block spacing handled by child elements */
    box-shadow: none;
    border: none;
    backdrop-filter: none;
}

.about-block.volpe-way::before,
.about-block.volpe-way::after {
    display: none;
}

.about-block.volpe-way .block-header {
    margin-bottom: 1.5rem;
}

.about-block.volpe-way .block-body-grid {
    display: grid;
    grid-template-columns: 1fr 55%;
    gap: 24px;
    align-items: center;
    padding: 2rem 0; /* restore spacing inside the block */
}

.about-block.volpe-way .block-body-image {
    display: flex;
    justify-content: flex-end;
}

.about-block.volpe-way .block-body-image img {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    border-radius: 0; /* show plain PNG without rounded corners */
    box-shadow: none; /* remove decorative shadow */
}

@media (max-width: 900px) {
    .about-block.volpe-way .block-body-grid {
        grid-template-columns: 1fr;
    }
    .about-block.volpe-way .block-body-image {
        order: -1;
        margin-bottom: 12px;
        justify-content: center;
    }
    .about-block.volpe-way .block-body-image img {
        max-width: 100%;
    }
}

.about-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(255, 102, 0, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.about-block::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    border-radius: 50%;
}

.about-block:hover::before {
    opacity: 1;
}

.about-block:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.about-block:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 70px rgba(37, 99, 235, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.block-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.block-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.block-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-block:hover .block-icon-wrapper::before {
    opacity: 0.1;
}

.about-block:hover .block-icon-wrapper {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.2);
}

.block-icon {
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
    opacity: 0.9;
}

.about-block:hover .block-icon {
    opacity: 1;
}

.block-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.block-tagline {
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    font-weight: 600;
    color: var(--accent-color);
    margin: 0;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 1;
}

.block-body {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.block-description {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    text-align: center;
}

.block-points {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
     margin-left: 70px;
}

.point-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.point-card:hover {
    transform: translateX(5px) translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.12);
    border-color: rgba(37, 99, 235, 0.25);
    background: rgba(255, 255, 255, 0.9);
}

.point-icon {
    font-size: 1.7rem;
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    border-radius: 12px;
}

.point-item {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin: 0;
    flex: 1;
}

.block-intro {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}



/* Vision & Mission Section */
.vision-mission-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
    
}

.vm-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255, 102, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(37, 99, 235, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.vm-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vm-section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.vm-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.vm-badge span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.vm-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.vm-title-line {
    display: block;
    color: var(--text-dark);
}

.vm-title-accent {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vm-title-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.vm-content-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.vm-card {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 24px;
    padding: 2.5rem 2.5rem;
    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vm-card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.vision-bg-gradient {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.02));
}

.mission-bg-gradient {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.05), rgba(255, 102, 0, 0.02));
}

.vision-card:hover .vision-bg-gradient,
.mission-card:hover .mission-bg-gradient {
    opacity: 1;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 60px rgba(37, 99, 235, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.vm-card-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.vm-card-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.vm-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-icon-container {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.05));
}

.mission-icon-container {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(255, 102, 0, 0.05));
}

.vm-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.vision-icon-bg {
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
}

.mission-icon-bg {
    background: linear-gradient(135deg, var(--accent-color), #ff8533);
}

.vision-card:hover .vision-icon-bg,
.mission-card:hover .mission-icon-bg {
    opacity: 0.2;
}

.vision-card:hover .vm-icon-container,
.mission-card:hover .vm-icon-container {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.vm-icon-large {
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.vision-card:hover .vm-icon-large,
.mission-card:hover .vm-icon-large {
    opacity: 0.9;
}

.vm-card-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.vm-card-underline {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 1rem auto 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.vision-card:hover .vm-card-underline,
.mission-card:hover .vm-card-underline {
    width: 80px;
}

.vm-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vision-content-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    text-align: center;
}

.vision-icon-decoration {
    font-size: 2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(37, 99, 235, 0.15));
}

.vision-card:hover .vision-icon-decoration {
    opacity: 1;
}

.vm-card-text {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.8;
    color: var(--text-dark);
    max-width: 500px;
    margin: 0;
}

.vision-highlight-box {
    margin-top: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    position: relative;
    transition: all 0.3s ease;
}

.vision-card:hover .vision-highlight-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(255, 102, 0, 0.15));
    border-color: rgba(37, 99, 235, 0.3);
}

.vision-highlight-text {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 0.05em;
    position: relative;
    z-index: 1;
}

.vm-card-intro {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.mission-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.mission-item-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mission-item-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent-color), var(--primary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.mission-item-card:hover::before {
    transform: scaleY(1);
}

.mission-item-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 1));
}

.mission-check-circle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--accent-color), #ff8533);
    color: white;
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.25);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.mission-item-card:hover .mission-check-circle {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255, 102, 0, 0.35);
}

.mission-check-circle svg {
    width: 16px;
    height: 16px;
}

.mission-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.mission-item-title {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.mission-item-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 400;
    font-style: italic;
    margin: 0;
}



/* Courses Section */
.courses-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.courses-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.courses-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.courses-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Program Categories (3-grid on Home) */
.program-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

@media (max-width: 900px) {
    .program-category-grid {
        grid-template-columns: 1fr;
    }
}

.program-category-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    padding: 1.75rem 1.6rem;
    border-radius: 22px;
    text-decoration: none;
    border: 1px solid rgba(15, 23, 42, 0.10);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    overflow: hidden;
}

.program-category-tile::before,
.program-category-tile::after {
    content: '';
    position: absolute;
    pointer-events: none;
    opacity: 0.9;
}

.program-category-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 80px rgba(37, 99, 235, 0.16);
    border-color: rgba(37, 99, 235, 0.22);
}

.program-category-kicker {
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(15, 23, 42, 0.7);
}

.program-category-title {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--text-dark);
}

.program-category-subtitle {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--text-light);
}

/* 3 different tile designs */
.program-category-tile--hr {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(255, 102, 0, 0.10));
    border-radius: 999px 28px 999px 28px; /* pill-ish */
}

.program-category-tile--hr::before {
    width: 220px;
    height: 220px;
    right: -90px;
    top: -90px;
    background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.35), transparent 60%);
    border-radius: 999px;
    transform: rotate(10deg);
}

.program-category-tile--fe {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(37, 99, 235, 0.18);
    border-radius: 28px 28px 28px 6px; /* “cut” corner feel */
}

.program-category-tile--fe::before {
    width: 64px;
    height: 64px;
    left: -22px;
    bottom: -22px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.20), rgba(37, 99, 235, 0.05));
    transform: rotate(45deg);
    border-radius: 18px;
}

.program-category-tile--fe::after {
    width: 140px;
    height: 140px;
    right: -70px;
    bottom: -70px;
    border: 2px dashed rgba(37, 99, 235, 0.22);
    border-radius: 999px;
    opacity: 0.55;
}

.program-category-tile--dm {
    background: linear-gradient(135deg, rgba(255, 102, 0, 0.14), rgba(37, 99, 235, 0.10));
    border-radius: 26px 46px 22px 52px; /* blob/wavy */
}

.program-category-tile--dm::before {
    width: 260px;
    height: 180px;
    left: -120px;
    top: -90px;
    background: radial-gradient(circle at 60% 50%, rgba(255, 102, 0, 0.35), transparent 60%);
    border-radius: 40% 60% 55% 45% / 55% 45% 55% 45%;
    transform: rotate(-12deg);
}

.program-category-tile--dm::after {
    width: 220px;
    height: 220px;
    right: -120px;
    bottom: -140px;
    background: radial-gradient(circle at 30% 30%, rgba(37, 99, 235, 0.25), transparent 62%);
    border-radius: 60% 40% 45% 55% / 40% 55% 45% 60%;
    transform: rotate(18deg);
    opacity: 0.75;
}

/* Optional "blinking"/highlight effects for program tiles
   Usage examples (add to the <a>):
   - class="program-category-tile ... tile-blink"
   - class="program-category-tile ... tile-blink-slow"
   - class="program-category-tile ... tile-glow"
*/
@keyframes tileBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.65; }
}

@keyframes tileGlow {
    0%, 100% { box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08); transform: translateY(0); }
    50% { box-shadow: 0 30px 90px rgba(255, 102, 0, 0.22); transform: translateY(-4px); }
}

.tile-blink {
    animation: tileBlink 0.9s step-end infinite;
}

.tile-blink-slow {
    animation: tileBlink 1.6s step-end infinite;
}

.tile-glow {
    animation: tileGlow 1.6s ease-in-out infinite;
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
    .tile-blink,
    .tile-blink-slow,
    .tile-glow {
        animation: none !important;
    }
}

.courses-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.courses-badge span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.courses-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.courses-title-line {
    display: block;
    color: var(--text-dark);
}

.courses-title-accent {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.courses-title-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.course-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(255, 102, 0, 0.04));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.course-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
    border-radius: 50%;
}

.course-card:hover::before {
    opacity: 1;
}

.course-card:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 25px 60px rgba(37, 99, 235, 0.12),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.course-card-header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 55px;
}

/* .course-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
} */

.course-card:hover .course-icon-wrapper {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(255, 102, 0, 0.15));
}

.course-icon {
    font-size: 2.5rem;
    transition: opacity 0.3s ease;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.course-card:hover .course-icon {
    opacity: 1;
}

.course-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.course-tagline {
    font-size: 0.9rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.course-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.course-section-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.course-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.course-item {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    padding-left: 1.2rem;
    position: relative;
}

.course-item::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 0.8rem;
}

.course-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(37, 99, 235, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.course-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.8rem 1rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(255, 102, 0, 0.05));
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.course-detail-item:hover {
    transform: translateX(5px);
    border-color: rgba(37, 99, 235, 0.2);
}

.course-detail-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.course-detail-value {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.course-eligibility strong,
.course-mode strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* IT Programs Section */
.it-programs-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.it-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.it-programs-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.it-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.it-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.it-badge span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.it-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.it-title-line {
    display: block;
    color: var(--text-dark);
}

.it-title-accent {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.it-title-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.it-course-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.it-course-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 32px;
    padding: 4rem 3.5rem;
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    position: relative;
    
}

.it-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.it-course-card:hover::before {
    transform: scaleX(1);
}

.it-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 90px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.it-card-header {
    text-align: center;
    margin-bottom: 3rem;
}


.it-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.it-course-card:hover .it-icon-bg {
    opacity: .2;
}



/* ensure the image inside the icon wrapper fills the larger area */
.it-icon-img {
    width: 50%;
    height: 50%;
    object-fit: cover;
    
}

.it-icon {
    font-size: 3rem;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.it-course-card:hover .it-icon {
    transform: scale(1.2) rotate(-5deg);
}

.it-course-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.it-course-tagline {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

.it-course-content {
    margin-top: 2rem;
}

.it-skills-section {
    margin-bottom: 3.5rem;
}

.it-section-label {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    letter-spacing: 0.02em;
}

.it-skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.it-skill-card {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 250, 252, 0.9));
    border-radius: 12px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.it-skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s ease;
}

.it-skill-card:hover::before {
    transform: scaleY(1);
}

.it-skill-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.it-skill-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.it-skill-card:hover .it-skill-icon {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.it-skill-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.it-modules-section {
    margin: 3.5rem 0;
}

.it-modules-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.it-module-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 2px solid rgba(37, 99, 235, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(37, 99, 235, 0.05);
}

.it-module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color), var(--primary-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
}

.it-module-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.it-module-card:hover::before {
    transform: scaleY(1);
}

.it-module-card:hover::after {
    opacity: 1;
}

.it-module-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 25px 60px rgba(37, 99, 235, 0.2),
        0 0 0 1px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 1));
}

.it-module-highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(255, 102, 0, 0.08));
    border-color: rgba(37, 99, 235, 0.25);
    border-width: 2px;
}

.it-module-highlight::after {
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
}

.it-module-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.it-module-number {
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    border: 4px solid transparent;
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 1),
        0 4px 15px rgba(37, 99, 235, 0.2);
}

.it-module-number::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    border-right-color: var(--accent-color);
    border-bottom-color: var(--primary-color);
    border-left-color: var(--accent-color);
    z-index: -1;
    opacity: 0.6;
    transition: opacity 0.6s ease;
    animation: rotateBorder 3s linear infinite;
}

.it-module-number::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: -2;
}

@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.it-module-card:hover .it-module-number::before {
    opacity: 1;
}

.it-module-card:hover .it-module-number::after {
    transform: translate(-50%, -50%) scale(1.5);
}

.it-module-card:hover .it-module-number {
    transform: scale(1.2) rotateY(360deg);
    color: white;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 
        0 0 0 2px rgba(255, 255, 255, 1),
        0 8px 30px rgba(37, 99, 235, 0.4),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    border-color: transparent;
}

.it-module-title {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    line-height: 1.4;
    position: relative;
    transition: color 0.3s ease;
}

.it-module-card:hover .it-module-title {
    color: var(--primary-color);
}

.it-module-examples {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--text-light);
    margin: 0.5rem 0 1.2rem;
    padding-left: 4rem;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.it-module-list {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: 4rem;
    position: relative;
    z-index: 1;
}

.it-module-list li {
    font-size: 0.85rem;
    line-height: 1.9;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
    padding-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
    padding-top: 0.2rem;
    padding-bottom: 0.2rem;
}

.it-module-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, var(--accent-color), #ff8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 102, 0, 0.3);
    transition: all 0.3s ease;
}

.it-module-list li::after {
    content: '✓';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 900;
    font-size: 0.7rem;
    z-index: 1;
    transition: all 0.3s ease;
}

.it-module-card:hover .it-module-list li::before {
    transform: translateY(-50%) scale(1.2);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

.it-module-card:hover .it-module-list li {
    color: var(--text-dark);
    padding-left: 2.2rem;
}

.it-course-footer {
    margin-top: 3.5rem;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(37, 99, 235, 0.1);
}

.it-course-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.it-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(255, 102, 0, 0.05));
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: all 0.3s ease;
}

.it-detail-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.2);
}

.it-detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.it-detail-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.it-graduation-box {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(37, 99, 235, 0.2);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.it-graduation-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transition: left 0.8s ease;
}

.it-graduation-box:hover::before {
    left: 100%;
}

.it-graduation-statement {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    font-style: italic;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Digital Marketing Section */
.digital-marketing-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.dm-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.digital-marketing-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dm-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.dm-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.dm-badge span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.dm-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.dm-title-line {
    display: block;
    color: var(--text-dark);
}

.dm-title-accent {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.dm-title-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.dm-course-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.dm-course-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.dm-course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.dm-course-card:hover::before {
    transform: scaleX(1);
}

.dm-course-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 35px 90px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.dm-card-header {
    text-align: center;
    margin-bottom: 3rem;
}

.dm-icon-wrapper {
    width: 90px;
    height: 90px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(255, 102, 0, 0.15));
}

.dm-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.dm-course-card:hover .dm-icon-bg {
    opacity: 0.2;
}

.dm-course-card:hover .dm-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 20px 50px rgba(37, 99, 235, 0.3);
}

.dm-icon {
    font-size: 3rem;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.dm-course-card:hover .dm-icon {
    transform: scale(1.2) rotate(-5deg);
}

.dm-course-title {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.dm-course-tagline {
    font-size: clamp(0.9rem, 1.3vw, 1rem);
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

.dm-course-content {
    margin-top: 2rem;
}

.dm-detailed-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-color);
}

.dm-intro {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.module-description {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-style: italic;
}

.module-subtitle {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.module-outcome {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
}

.modules-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.module-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.05),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.module-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.module-item:hover::before {
    transform: scaleX(1);
}

.module-item:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 20px 50px rgba(37, 99, 235, 0.1),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.module-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    display: block;
}

.module-list {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
}

.module-list li {
    font-size: 0.85rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.module-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Workshops Section */
.workshops-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.workshops-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(255, 102, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.workshops-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.workshops-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.workshops-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.workshops-badge span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.workshops-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.workshops-title-line {
    display: block;
    color: var(--text-dark);
}

.workshops-title-accent {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.workshops-title-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

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

.workshop-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    padding: 3rem 2.5rem;
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.workshop-card:hover::before {
    transform: scaleX(1);
}

.workshop-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 30px 80px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.workshop-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    transition: all 0.4s ease;
}

.workshop-card:hover .workshop-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(255, 102, 0, 0.2));
}

.workshop-icon {
    font-size: 2rem;
    transition: transform 0.4s ease;
}

.workshop-card:hover .workshop-icon {
    transform: scale(1.2) rotate(-10deg);
}

.workshop-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.workshop-price-wrapper {
    margin-bottom: 1.5rem;
}

.workshop-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.workshop-age {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
    background: linear-gradient(135deg, #e0f2fe, #bfdbfe);
    color: #1d4ed8;
    border: 1px solid rgba(59, 130, 246, 0.6);
    box-shadow: 0 6px 18px rgba(59, 130, 246, 0.25);
}

.workshop-tagline {
    font-size: 0.85rem;
    font-style: italic;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.contact-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.contact-badge span {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--primary-color);
    text-transform: uppercase;
}

.contact-main-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
}

.contact-title-line {
    display: block;
    color: var(--text-dark);
}

.contact-title-accent {
    background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.contact-title-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    margin: 0 auto;
    border-radius: 2px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
        margin-right: -27px;    
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item:hover {
    transform: translateY(-5px) translateX(5px);
    box-shadow: 
        0 30px 80px rgba(37, 99, 235, 0.15),
        0 0 0 1px rgba(37, 99, 235, 0.1);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(255, 102, 0, 0.1));
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-item:hover .contact-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(255, 102, 0, 0.2));
}

.contact-icon {
    font-size: 1.8rem;
    transition: transform 0.4s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.15);
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.contact-value a {
    color: inherit;
    text-decoration: none;
}

.contact-value a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    margin-top: 3rem;
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(37, 99, 235, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    opacity: 0.9;
}

.contact-form-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.contact-form-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.9rem 1rem;
    border-radius: 14px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 140px;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: rgba(37, 99, 235, 0.55);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.contact-form-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.contact-submit-btn {
    appearance: none;
    border: none;
    cursor: pointer;
    padding: 0.95rem 1.25rem;
    border-radius: 999px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: white;
    background: linear-gradient(135deg, var(--primary-color), #3b82f6);
    box-shadow: 0 16px 35px rgba(37, 99, 235, 0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 45px rgba(37, 99, 235, 0.28);
    filter: brightness(1.02);
}

.contact-submit-btn:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    transform: none;
}

.contact-form-status {
    font-size: 0.9rem;
    color: var(--text-light);
    min-height: 1.2em;
}

/* Footer */
.footer {
    padding: 5rem 2rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.footer-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 102, 0, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.footer-tagline {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.footer-description {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link-list li {
    margin: 0;
}

.footer-link-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-link-list a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease;
}

.footer-link-list a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-link-list a:hover::before {
    width: 100%;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.footer-contact-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.footer-contact-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-motto {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* General mobile styles */
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    /* Digital Marketing specific mobile styles */
    .dm-course-wrapper {
        padding: 0;
        margin: 0 -1rem;
        width: calc(100% + 2rem);
    }
    
    .dm-course-card {
        border-radius: 0;
        padding: 2rem 1.5rem;
        margin: 0;
        width: 100%;
    }
    
    .dm-detailed-section {
        margin-top: 2rem;
        padding-top: 2rem;
    }
    
    .module-item {
        margin-bottom: 2rem;
        padding: 1.25rem;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 12px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }
    
    .module-number {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--primary-color);
        display: block;
    }
    
    .module-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
        color: var(--text-dark);
    }
    
    .module-subtitle {
        font-weight: 600;
        margin: 1.5rem 0 0.75rem;
        font-size: 1rem;
        color: var(--primary-color);
    }
    
    .module-list {
        padding-left: 1.5rem;
        margin: 0.75rem 0 1.5rem;
    }
    
    .module-list li {
        margin-bottom: 0.6rem;
        font-size: 0.95rem;
        line-height: 1.6;
        color: var(--text-dark);
    }
    
    .module-outcome {
        font-style: italic;
        font-size: 0.95rem;
        color: var(--text-light);
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px dashed var(--border-color);
        font-weight: 500;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    .nav-links a {
        font-size: 0.85rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 0 1.5rem;
        background-attachment: scroll;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-images {
        min-height: 400px;
        order: -1;
    }
    
    .hero-image-main {
        height: 350px;
        transform: rotate(0deg);
    }
    
    .hero-image-secondary {
        width: 150px;
        height: 150px;
        top: 20px;
        right: 20px;
    }
    
    .hero-image-tertiary {
        width: 130px;
        height: 130px;
        bottom: 40px;
        right: 30px;
    }
    
    .floating-badge {
        padding: 0.8rem 1.2rem;
    }
    
    .badge-1 {
        top: 60px;
        left: 20px;
    }
    
    .badge-2 {
        bottom: 100px;
        left: 20px;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-label {
        font-size: 0.7rem;
    }
    
    .hero-badge {
        padding: 0.4rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .hero-tagline {
        margin-bottom: 2rem;
    }
    
    .tagline-main {
        font-size: 0.8rem;
    }
    
    .tagline-sub {
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .description-highlight {
        font-size: 1.05em;
    }
    
    .hero-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .feature-item {
        padding: 0.6rem 1rem;
    }
    
    .feature-text {
        font-size: 0.85rem;
    }
    
    .hero-quotes {
        gap: 1rem;
        margin-bottom: 2.5rem;
    }
    
    .quote-card {
        padding: 1.2rem 1.5rem;
        min-width: 100%;
    }
    
    .quote-icon {
        font-size: 2.5rem;
    }
    
    .quote-text {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2.5rem;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
        font-size: 0.9rem;
    }
    
    .hero-scroll-indicator {
        bottom: 1.5rem;
    }
    
    .scroll-line {
        height: 30px;
    }
    
    .scroll-text {
        font-size: 0.7rem;
    }
    
    .why-section {
        padding: 4rem 1.5rem;
    }
    
    .why-content {
        gap: 3rem;
    }
    
    .why-badge {
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .why-badge span {
        font-size: 0.6rem;
    }
    
    .why-title {
        font-size: 1.7rem;
        gap: 0.2rem;
    }
    
    .why-divider {
        width: 60px;
        margin: 1.5rem auto;
    }
    
    .why-subtitle {
        font-size: 0.95rem;
    }
    
    .why-mission {
        font-size: 0.9rem;
    }
    
    .training-advantage {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }
    
    .advantage-header {
        margin-bottom: 2.5rem;
    }
    
    .advantage-title {
        font-size: 1.3rem;
    }
    
    .advantage-subtitle {
        font-size: 0.85rem;
    }
    
    .advantage-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .advantage-card {
        padding: 2rem 1.5rem;
    }
    
    .advantage-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .advantage-icon {
        font-size: 1.7rem;
    }
    
    .advantage-card-title {
        font-size: 0.95rem;
    }
    
    .advantage-card-text {
        font-size: 0.8rem;
    }
    
    .why-footer {
        padding-top: 2rem;
    }
    
    .why-footer-content {
        gap: 1.5rem;
    }
    
    .why-statement-wrapper {
        padding: 1.2rem 1.5rem;
    }
    
    .why-statement {
        font-size: 0.95rem;
    }
    
    .why-quote-wrapper {
        padding: 1.5rem;
    }
    
    .quote-mark {
        font-size: 3.5rem;
    }
    
    .why-quote {
        font-size: 1.05rem;
    }
    
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    .logo {
        font-size: 0.9rem;
        letter-spacing: 0.15em;
    }
    
    .nav-links {
        gap: 0.5rem;
    }
    
    .nav-links a {
        padding: 0.55rem 1.1rem;
        font-size: 0.85rem;
    }
    
    .nav-links a.nav-cta {
        padding: 0.65rem 1.4rem;
        font-size: 0.85rem;
        margin-left: 0.25rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }
    
    .logo {
        font-size: 0.8rem;
        letter-spacing: 0.1em;
    }
    
    .nav-links {
        gap: 0.35rem;
        flex-wrap: wrap;
    }
    
    .nav-links a {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }
    
    .nav-links a.nav-cta {
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
        margin-left: 0;
    }
    
    .hero-badge {
        padding: 0.35rem 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .badge-text {
        font-size: 0.65rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 0 1rem;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-images {
        min-height: 300px;
    }
    
    .hero-image-main {
        height: 280px;
    }
    
    .hero-image-secondary {
        width: 120px;
        height: 120px;
        top: 10px;
        right: 10px;
    }
    
    .hero-image-tertiary {
        width: 100px;
        height: 100px;
        bottom: 30px;
        right: 20px;
    }
    
    .floating-badge {
        padding: 0.6rem 1rem;
    }
    
    .badge-1 {
        top: 40px;
        left: 10px;
    }
    
    .badge-2 {
        bottom: 80px;
        left: 10px;
    }
    
    .badge-number {
        font-size: 1.3rem;
    }
    
    .badge-label {
        font-size: 0.65rem;
    }
    
    .hero-tagline {
        margin-bottom: 1.5rem;
    }
    
    .tagline-main {
        font-size: 0.75rem;
    }
    
    .tagline-sub {
        font-size: 0.7rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .feature-item {
        padding: 0.5rem 0.9rem;
    }
    
    .why-title {
        font-size: 1.5rem;
    }
    
    .why-subtitle {
        font-size: 0.9rem;
    }
    
    .why-mission {
        font-size: 0.85rem;
    }
    
    .training-advantage {
        padding: 2rem 1rem;
        border-radius: 16px;
    }
    
    .advantage-title {
        font-size: 1.1rem;
    }
    
    .advantage-subtitle {
        font-size: 0.8rem;
    }
    
    .advantage-card {
        padding: 1.8rem 1.2rem;
    }
    
    .advantage-icon-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .advantage-icon {
        font-size: 1.5rem;
    }
    
    .advantage-card-title {
        font-size: 0.9rem;
    }
    
    .advantage-card-text {
        font-size: 0.75rem;
    }
    
    .why-statement {
        font-size: 0.9rem;
    }
    
    .why-quote {
        font-size: 1rem;
    }
    
    .quote-mark {
        font-size: 3rem;
    }
    
    .about-section {
        padding: 4rem 1.5rem;
    }
    
    .about-header {
        margin-bottom: 3rem;
    }
    
    .about-badge {
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .about-badge span {
        font-size: 0.6rem;
    }
    
    .section-title {
        font-size: 1.7rem;
        margin-bottom: 1.5rem;
    }
    
    .about-divider {
        width: 60px;
        margin: 1.5rem auto;
    }
    
    .about-intro {
        font-size: 0.9rem;
    }
    
    .about-content {
        gap: 3rem;
    }
    
    .about-block {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .block-header {
        margin-bottom: 2rem;
    }
    
    .block-icon-wrapper {
        width: 75px;
        height: 75px;
        margin-bottom: 1.2rem;
    }
    
    .block-icon {
        font-size: 2rem;
    }
    
    .block-title {
        font-size: 1.3rem;
    }
    
    .block-tagline {
        font-size: 0.95rem;
    }
    
    .block-description {
        font-size: 0.9rem;
    }
    
    .block-points {
        gap: 1.2rem;
        margin: 2rem 0;
        margin-left: 70px;
    }
    
    .point-card {
        padding: 1.2rem;
        gap: 1.2rem;
    }
    
    .point-icon {
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
    
    .point-item {
        font-size: 0.85rem;
    }
    
    .block-intro {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .promise-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .promise-card {
        padding: 1.5rem 1rem;
    }
    
    .promise-icon {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    
    .promise-item {
        font-size: 0.85rem;
    }
    
    .block-statement {
        font-size: 0.9rem;
        padding: 1.2rem;
    }
    
    .block-footer {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
    
    .block-quote {
        font-size: 0.95rem;
    }
    
    .vision-mission-section {
        padding: 3rem 1.5rem;
    }

    .vm-section-header {
        margin-bottom: 2rem;
    }
    
    .vm-badge {
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .vm-badge span {
        font-size: 0.7rem;
    }
    
    .vm-main-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .vm-title-divider {
        width: 70px;
    }
    
    .vm-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .vm-card {
        padding: 2rem 2rem;
        border-radius: 20px;
    }

    .vm-card-header {
        margin-bottom: 1.25rem;
    }
    
    .vm-icon-container {
        width: 55px;
        height: 55px;
        margin-bottom: 1rem;
    }

    .vm-icon-large {
        font-size: 1.6rem;
    }
    
    .vm-card-title {
        font-size: 1.5rem;
    }
    
    .vm-card-underline {
        width: 50px;
    }
    
    .vision-card:hover .vm-card-underline,
    .mission-card:hover .vm-card-underline {
        width: 75px;
    }
    
    .vision-content-wrapper {
        gap: 1.5rem;
    }
    
    .vision-icon-decoration {
        font-size: 1.75rem;
    }
    
    .vm-card-text {
        font-size: 1rem;
    }
    
    .vision-highlight-box {
        padding: 1.2rem 2rem;
    }
    
    .vision-highlight-text {
        font-size: 0.95rem;
    }
    
    .vm-card-intro {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }

    .mission-items-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .mission-item-card {
        padding: 1.125rem 1.125rem;
        gap: 0.875rem;
    }
    
    .mission-check-circle {
        width: 36px;
        height: 36px;
    }
    
    .mission-check-circle svg {
        width: 18px;
        height: 18px;
    }
    
    .mission-item-title {
        font-size: 0.95rem;
    }
    
    .mission-item-subtitle {
        font-size: 0.8rem;
    }
    
    .block-text {
        font-size: 1rem;
    }
    
    .edge-section {
        padding: 4rem 1.5rem;
    }
    
    .edge-description {
        font-size: 0.95rem;
    }
    
    .edge-quote {
        font-size: 1.05rem;
    }
    
    .courses-section {
        padding: 4rem 1.5rem;
    }
    
    .courses-section-header {
        margin-bottom: 3rem;
    }
    
    .courses-badge {
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .courses-badge span {
        font-size: 0.6rem;
    }
    
    .courses-main-title {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .courses-title-divider {
        width: 70px;
    }
    
    .dm-section-header {
        margin-bottom: 3rem;
    }
    
    .dm-badge {
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .dm-badge span {
        font-size: 0.6rem;
    }
    
    .dm-main-title {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .dm-title-divider {
        width: 70px;
    }
    
    .workshops-section-header {
        margin-bottom: 3rem;
    }
    
    .workshops-badge {
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .workshops-badge span {
        font-size: 0.6rem;
    }
    
    .workshops-main-title {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .workshops-title-divider {
        width: 70px;
    }
    
    .contact-section-header {
        margin-bottom: 3rem;
    }
    
    .contact-badge {
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-badge span {
        font-size: 0.6rem;
    }
    
    .contact-main-title {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-title-divider {
        width: 70px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .course-card {
        padding: 2rem 1.5rem;
    }
    
    .it-programs-section {
        padding: 2rem 1.5rem 4rem 1.5rem;
    }
    
    .it-section-header {
        margin-bottom: 3rem;
    }
    
    .it-badge {
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .it-badge span {
        font-size: 0.6rem;
    }
    
    .it-main-title {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .it-title-divider {
        width: 70px;
    }
    
    .it-course-card {
        padding: 3rem 2.5rem;
        border-radius: 24px;
    }
    
    .it-card-header {
        margin-bottom: 2.5rem;
    }
    
    .it-icon-wrapper {
        width: 140px;
        height: 140px;
        margin-bottom: 1.5rem;
    }
    
    .it-icon {
        font-size: 2.5rem;
    }
    
    .it-course-title {
        font-size: 1.5rem;
    }
    
    .it-skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 0.8rem;
    }
    
    .it-module-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .it-module-header {
        gap: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .it-module-number {
        width: 52px;
        height: 52px;
        font-size: 1.15rem;
        border-width: 3px;
    }
    
    .it-module-number::before {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-width: 3px;
    }
    
    .it-modules-container {
        grid-template-columns: 1fr;
    }
    
    .it-module-list,
    .it-module-examples {
        padding-left: 3.5rem;
    }
    
    .it-module-list li {
        padding-left: 1.8rem;
    }
    
    .it-module-list li::before,
    .it-module-list li::after {
        width: 18px;
        height: 18px;
    }
    
    .it-module-list li::after {
        font-size: 0.65rem;
    }
    
    .it-module-card:hover .it-module-list li {
        padding-left: 1.9rem;
    }
    
    .it-course-details {
        grid-template-columns: 1fr;
    }
    
    .module-number {
        font-size: 1.1rem;
    }
    
    .modules-section {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .module-item {
        padding: 1.5rem;
    }
    
    .footer {
        padding: 4rem 1.5rem 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .about-header {
        margin-bottom: 2.5rem;
    }
    
    .about-badge {
        padding: 0.35rem 1rem;
        margin-bottom: 1.2rem;
    }
    
    .about-badge span {
        font-size: 0.65rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .about-divider {
        width: 50px;
        margin: 1.2rem auto;
    }
    
    .about-intro {
        font-size: 0.95rem;
    }
    
    .about-content {
        gap: 2.5rem;
    }
    
    .about-block {
        padding: 2rem 1.5rem;
        border-radius: 16px;
    }
    
    .block-header {
        margin-bottom: 1.8rem;
    }
    
    .block-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 1rem;
    }
    
    .block-icon {
        font-size: 2.2rem;
    }
    
    .block-title {
        font-size: 1.3rem;
    }
    
    .block-tagline {
        font-size: 1rem;
    }
    
    .block-description {
        font-size: 0.95rem;
    }
    
    .block-points {
        gap: 1rem;
        margin: 1.8rem 0;
    }
    
    .point-card {
        padding: 1rem;
        gap: 1rem;
    }
    
    .point-icon {
        width: 40px;
        height: 40px;
        font-size: 1.6rem;
    }
    
    .point-item {
        font-size: 0.95rem;
    }
    
    .block-intro {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .promise-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        margin-bottom: 1.8rem;
    }
    
    .promise-card {
        padding: 1.2rem 0.8rem;
    }
    
    .promise-icon {
        width: 55px;
        height: 55px;
        font-size: 1.8rem;
    }
    
    .promise-item {
        font-size: 0.95rem;
    }
    
    .block-statement {
        font-size: 1rem;
        padding: 1rem;
        margin: 2rem 0 0;
    }
    
    .block-footer {
        margin-top: 1.8rem;
        padding-top: 1.2rem;
    }
    
    .block-quote {
        font-size: 1rem;
    }
    
    .vision-mission-section {
        padding: 2.5rem 1rem;
    }
    
    .vm-section-header {
        margin-bottom: 1.75rem;
    }
    
    .vm-badge {
        padding: 0.35rem 1rem;
        margin-bottom: 1.2rem;
    }
    
    .vm-badge span {
        font-size: 0.65rem;
    }
    
    .vm-main-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .vm-title-divider {
        width: 60px;
    }
    
    .vm-content-wrapper {
        gap: 2rem;
    }
    
    .vm-card {
        padding: 1.75rem 1.5rem;
        border-radius: 18px;
    }

    .vm-card-header {
        margin-bottom: 1rem;
    }
    
    .vm-icon-container {
        width: 50px;
        height: 50px;
        margin-bottom: 0.875rem;
    }

    .vm-icon-large {
        font-size: 1.4rem;
    }
    
    .vm-card-title {
        font-size: 1.3rem;
    }
    
    .vm-card-underline {
        width: 45px;
    }
    
    .vision-card:hover .vm-card-underline,
    .mission-card:hover .vm-card-underline {
        width: 60px;
    }
    
    .vision-content-wrapper {
        gap: 1.2rem;
    }
    
    .vision-icon-decoration {
        font-size: 1.5rem;
    }
    
    .vm-card-text {
        font-size: 0.95rem;
    }
    
    .vision-highlight-box {
        padding: 1rem 1.5rem;
    }
    
    .vision-highlight-text {
        font-size: 0.9rem;
    }
    
    .vm-card-intro {
        font-size: 0.9rem;
        margin-bottom: 1.125rem;
    }

    .mission-items-grid {
        gap: 0.75rem;
    }
    
    .mission-item-card {
        padding: 1rem 1rem;
        gap: 0.75rem;
    }
    
    .mission-check-circle {
        width: 32px;
        height: 32px;
    }
    
    .mission-check-circle svg {
        width: 16px;
        height: 16px;
    }
    
    .mission-item-title {
        font-size: 0.9rem;
    }
    
    .mission-item-subtitle {
        font-size: 0.75rem;
    }
    
    .block-text {
        font-size: 0.95rem;
    }
    
    .edge-title {
        font-size: 1.3rem;
    }
    
    .edge-description {
        font-size: 0.9rem;
    }
    
    .edge-quote {
        font-size: 1rem;
    }
    
    .courses-main-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .courses-title-divider {
        width: 60px;
    }
    
    .dm-section-header {
        margin-bottom: 3rem;
    }
    
    .dm-badge {
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .dm-badge span {
        font-size: 0.6rem;
    }
    
    .dm-main-title {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .dm-title-divider {
        width: 70px;
    }
    
    .workshops-section-header {
        margin-bottom: 3rem;
    }
    
    .workshops-badge {
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .workshops-badge span {
        font-size: 0.6rem;
    }
    
    .workshops-main-title {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .workshops-title-divider {
        width: 70px;
    }
    
    .contact-section-header {
        margin-bottom: 3rem;
    }
    
    .contact-badge {
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-badge span {
        font-size: 0.6rem;
    }
    
    .contact-main-title {
        font-size: 1.7rem;
        margin-bottom: 1.2rem;
    }
    
    .contact-title-divider {
        width: 70px;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .course-title {
        font-size: 1.05rem;
    }
    
    .course-tagline {
        font-size: 0.85rem;
    }
    
    .course-section-title {
        font-size: 0.9rem;
    }
    
    .course-item {
        font-size: 0.8rem;
    }
    
    .it-main-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .it-title-divider {
        width: 60px;
    }
    
    .it-course-card {
        padding: 2.5rem 2rem;
        border-radius: 20px;
    }
    
    .it-icon-wrapper {
        width: 120px;
        height: 120px;
        margin-bottom: 1.2rem;
    }
    
    .it-icon {
        font-size: 2.2rem;
    }
    
    .it-course-title {
        font-size: 1.3rem;
    }
    
    .it-skills-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .it-skill-card {
        padding: 0.9rem 1rem;
    }
    
    .it-module-card {
        padding: 1.8rem 1.2rem;
    }
    
    .it-module-header {
        gap: 0.9rem;
        margin-bottom: 1.2rem;
    }
    
    .it-module-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
        border-width: 3px;
    }
    
    .it-module-number::before {
        top: -3px;
        left: -3px;
        right: -3px;
        bottom: -3px;
        border-width: 3px;
    }
    
    .it-module-list,
    .it-module-examples {
        padding-left: 3rem;
    }
    
    .it-module-list li {
        padding-left: 1.6rem;
        font-size: 0.8rem;
    }
    
    .it-module-list li::before,
    .it-module-list li::after {
        width: 16px;
        height: 16px;
    }
    
    .it-module-list li::after {
        font-size: 0.6rem;
    }
    
    .it-module-card:hover .it-module-list li {
        padding-left: 1.7rem;
    }
    
    .it-graduation-statement {
        font-size: 0.9rem;
    }
    
    .digital-marketing-section {
        padding: 4rem 1.5rem;
    }
    
    .dm-course-card {
        padding: 2rem 1.5rem;
    }
    
    .workshops-section {
        padding: 4rem 1.5rem;
    }
    
    .workshops-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .workshop-card {
        padding: 2rem 1.5rem;
    }
    
    .contact-section {
        padding: 4rem 1.5rem;
    }
    
    .contact-main-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .contact-title-divider {
        width: 60px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .dm-course-card {
        padding: 1.5rem 1rem;
    }
    
    .module-description {
        font-size: 0.8rem;
    }
    
    .module-subtitle {
        font-size: 0.85rem;
    }
    
    .module-outcome {
        font-size: 0.8rem;
    }
    
    .modules-section {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .module-item {
        padding: 1.25rem;
    }
    
    .module-number {
        font-size: 1rem;
    }
    
    .footer {
        padding: 3rem 1.25rem 1.25rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        max-width: 100%;
        grid-column: 1;
    }
    
    .footer-logo {
        font-size: 1rem;
    }
    
    .footer-tagline {
        font-size: 0.9rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
    }
    
    .footer-heading {
        font-size: 0.95rem;
        margin-bottom: 1.25rem;
    }
    
    .footer-link-list a {
        font-size: 0.85rem;
    }
    
    .footer-contact-text {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .footer-copyright,
    .footer-motto {
        font-size: 0.8rem;
    }
    
    .workshop-title {
        font-size: 0.95rem;
    }
    
    .workshop-price {
        font-size: 1.3rem;
    }
    
    .workshop-tagline {
        font-size: 0.8rem;
    }
    
    .contact-heading {
        font-size: 1.3rem;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
}

/* Tablet Responsive Styles (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 1.1rem 1.75rem;
    }
    
    .logo {
        font-size: 0.95rem;
    }
    
    .nav-links {
        gap: 0.6rem;
    }
    
    .nav-links a {
        padding: 0.6rem 1.2rem;
        font-size: 0.875rem;
    }
    
    .nav-links a.nav-cta {
        padding: 0.7rem 1.6rem;
        font-size: 0.875rem;
    }
    
    .hero {
        padding: 0 2rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-images {
        min-height: 450px;
        order: -1;
    }
    
    .hero-image-main {
        height: 400px;
    }
    
    .hero-image-secondary {
        width: 180px;
        height: 180px;
    }
    
    .hero-image-tertiary {
        width: 160px;
        height: 160px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-cta {
        flex-direction: row;
        gap: 1.25rem;
    }
    
    .cta-button {
        width: auto;
    }
    
    .why-section {
        padding: 5rem 2rem;
    }
    
    .advantage-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }
    
    .about-section {
        padding: 5rem 2rem;
    }
    
    .vision-mission-section {
        padding: 4rem 2rem;
    }
    
    .vm-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .edge-section {
        padding: 4rem 2rem;
    }
    
    .courses-section {
        padding: 5rem 2rem;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .it-programs-section {
        padding: 3rem 2rem 5rem 2rem;
    }
    
    .it-skills-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .it-modules-container {
        grid-template-columns: 1fr;
    }
    
    .digital-marketing-section {
        padding: 5rem 2rem;
    }
    
    .workshops-section {
        padding: 5rem 2rem;
    }
    
    .workshops-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .contact-section {
        padding: 5rem 2rem;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer {
        padding: 4rem 2rem 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Enhanced Mobile Navigation - Hamburger Menu */
/* Mobile menu styles */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
        position: relative;
    }
    
    body.menu-open {
        position: fixed;
        width: 100%;
        height: 100%;
        overflow: hidden;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        max-height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        flex-direction: column;
        align-items: flex-start;
        padding: 1.5rem;
        gap: 0;
        transition: left 0.3s ease, opacity 0.3s ease;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-links.active {
        left: 0;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        border-radius: 0;
        text-align: left;
        transition: all 0.2s ease;
    }
    
    .nav-links a:hover {
        background: rgba(37, 99, 235, 0.05);
        transform: none;
    }
    
    .nav-links a.nav-cta {
        margin: 1rem 0 0;
        border-radius: 12px;
        text-align: center;
        background: linear-gradient(135deg, var(--primary-color) 0%, #3b82f6);
        color: white !important;
        border: none;
        padding: 0.8rem 1.5rem;
    }
    
    .nav-links a.nav-cta:hover {
        background: linear-gradient(135deg, #1d4ed8 0%, var(--primary-color));
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    }
    
    /* Hamburger Menu Button - Show on Mobile */
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        order: 2;
        position: relative;
        -webkit-tap-highlight-color: transparent;
    }
    
    .hamburger-menu span {
        width: 100%;
        height: 3px;
        background: var(--text-dark);
        border-radius: 3px;
        transition: all 0.3s ease;
        transform-origin: center;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .nav-container {
        position: relative;
    }
    
    .hero-container {
        padding-top: 2rem;
    }
    
    .why-container,
    .about-container,
    .vm-container,
    .courses-container,
    .it-programs-container,
    .digital-marketing-container,
    .workshops-container,
    .contact-container {
        padding: 0 1.5rem;
    }
    
    .it-course-wrapper,
    .dm-course-wrapper {
        padding: 0;
    }
    
    .it-course-card,
    .dm-course-card {
        padding: 2rem 1.5rem;
    }
    
    .it-skills-section,
    .it-modules-section {
        margin-bottom: 2rem;
    }
    
    .it-section-label {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .it-module-title {
        font-size: 0.95rem;
    }
    
    .it-module-list li {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .dm-detailed-section {
        margin-top: 2rem;
    }
    
    .module-item {
        margin-bottom: 1.5rem;
    }
    
    .module-list {
        font-size: 0.85rem;
    }
    
    .module-list li {
        margin-bottom: 0.5rem;
    }
    
    .course-card {
        margin-bottom: 1.5rem;
    }
    
    .course-list {
        font-size: 0.9rem;
    }
    
    .course-footer {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .course-detail-item {
        width: 100%;
        padding: 0.75rem;
    }
    
    .it-course-footer {
        margin-top: 2rem;
    }
    
    .it-course-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .it-detail-item {
        width: 100%;
    }
    
    .it-graduation-box {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
    
    .workshop-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem 1rem;
        margin-bottom: 1rem;
    }
    
    .contact-icon-wrapper {
        margin-bottom: 1rem;
    }
    
    .contact-content {
        text-align: center;
    }
    
    .footer-content {
        text-align: center;
    }
    
    .footer-section {
        margin-bottom: 2rem;
    }
}

/* Small Mobile Devices (max-width: 480px) - Enhanced */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }
    
    .title-line {
        display: block;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .why-title {
        font-size: 1.3rem;
    }
    
    .title-part-1,
    .title-part-2 {
        display: block;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .title-main,
    .title-accent {
        display: block;
    }
    
    .vm-main-title {
        font-size: 1.4rem;
    }
    
    .vm-title-line {
        display: block;
    }
    
    .courses-main-title,
    .it-main-title,
    .dm-main-title,
    .workshops-main-title,
    .contact-main-title {
        font-size: 1.4rem;
    }
    
    .courses-title-line,
    .it-title-line,
    .dm-title-line,
    .workshops-title-line,
    .contact-title-line {
        display: block;
    }
    
    .edge-title {
        font-size: 1.3rem;
    }
    
    .promise-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-items-grid {
        grid-template-columns: 1fr;
    }
    
    .it-skills-grid {
        grid-template-columns: 1fr;
    }
    
    .it-programs-section {
        padding: 1.5rem 1.25rem 3rem 1.25rem;
    }
    
    .floating-badge {
        display: none; /* Hide floating badges on very small screens */
    }
    
    .hero-scroll-indicator {
        display: none; /* Hide scroll indicator on very small screens */
    }
    
    .block-points {
        flex-direction: column;
    }
    
    .point-card {
        width: 100%;
    }
}

/* Landscape Mobile Orientation */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
    
    .hero-grid {
        gap: 2rem;
    }
    
    .hero-images {
        min-height: 300px;
    }
    
    .hero-image-main {
        height: 250px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: row;
        gap: 1rem;
    }
    
    .cta-button {
        width: auto;
        flex: 1;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    /* Improve touch targets */
    .cta-button,
    .nav-links a {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Better spacing for mobile */
    section {
        scroll-margin-top: 70px;
    }
    
    /* Improve readability */
    p, li {
        line-height: 1.7;
    }
    
    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve form elements if any */
    input, textarea, select, button {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Tablet Landscape Optimizations */
@media (min-width: 769px) and (max-width: 1024px) and (orientation: landscape) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-images {
        order: 0;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .workshops-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
/* course gird */
.course-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    background: #fff;
}

.course-image {
    width: 100%;
    height: 240px;               /* change height as you want */
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* makes the image fill nicely */
    border-radius: 12px 12px 0 0; /* optional: rounded only top corners */
}
