/* ============================================
   Modern Sections - Combined CSS
   Includes: Hero, Programme, Process, Category, Testimonial, CTA Sections
   ============================================ */

/* ============================================
   MODERN HERO SECTION
   ============================================ */

/* Hero Section Base */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a192f 0%, #172a45 50%, #1e3a5f 100%);
    padding: 120px 0 80px;
}

/* Background Layers */
.hero-background-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-pattern-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 102, 204, 0.1) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(0, 212, 255, 0.05) 50%, transparent 70%);
    animation: patternMove 20s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { 
        transform: translate(0, 0) scale(1); 
    }
    50% { 
        transform: translate(-20px, -20px) scale(1.1); 
    }
}

.hero-grid-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 212, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: gridMove 15s linear infinite;
}

@keyframes gridMove {
    0% { 
        transform: translate(0, 0); 
    }
    100% { 
        transform: translate(50px, 50px); 
    }
}

/* Floating Shapes */
.hero-shapes-container {
    position: absolute;
    width: 100%;
    height: 100%;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 102, 204, 0.1));
    animation: floatShape 6s ease-in-out infinite;
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: -3%;
    animation-delay: 2s;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 10%;
    animation-delay: 4s;
}

.hero-shape-4 {
    width: 100px;
    height: 100px;
    top: 30%;
    right: 15%;
    animation-delay: 1s;
}

@keyframes floatShape {
    0%, 100% { 
        transform: translate(0, 0) rotate(0deg); 
    }
    33% { 
        transform: translate(30px, -30px) rotate(120deg); 
    }
    66% { 
        transform: translate(-20px, 20px) rotate(240deg); 
    }
}

/* Hero Content */
.modern-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    padding: 40px 0;
}

.modern-hero-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: rgba(0, 212, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    animation: fadeInUp 0.8s ease;
}

.modern-hero-badge i {
    color: #00d4ff;
}

.modern-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.1;
    animation: fadeInUp 1s ease;
}

.title-line-1,
.title-line-2 {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

.title-highlight {
    display: block;
    background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.3), transparent);
    border-radius: 4px;
}

.modern-hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 550px;
    animation: fadeInUp 1.2s ease;
}

/* Hero Buttons */
.modern-hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
    animation: fadeInUp 1.4s ease;
}

.modern-hero-btn-primary,
.modern-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modern-hero-btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.modern-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    color: white;
}

.modern-hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-color: rgba(255, 255, 255, 0.2);
    color: white;
}

.modern-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: white;
}

/* Hero Sponsor Badge */
.modern-hero-sponsor {
    margin-top: 30px;
    animation: fadeInUp 1.6s ease;
}

.sponsor-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    color: white;
    position: relative;
}

.sponsor-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
}

.sponsor-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 102, 204, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sponsor-icon i {
    color: #00d4ff;
    font-size: 1.2rem;
}

.sponsor-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.sponsor-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.sponsor-programs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.program-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #00d4ff;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.sponsor-badge:hover .program-tag {
    background: rgba(0, 212, 255, 0.25);
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-2px);
}

.sponsor-arrow {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.sponsor-arrow:hover {
    color: #00d4ff;
    background: rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
    transform: translateX(5px);
}

.sponsor-badge:hover .sponsor-arrow {
    color: #00d4ff;
}

/* Hero Stats */
.modern-hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1.6s ease;
}

.hero-stat {
    text-align: left;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    display: inline-block;
}

.stat-suffix {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin-top: 5px;
}

/* Hero Visual Cards */
.modern-hero-visual {
    position: relative;
    height: 500px;
    z-index: 3;
}

.hero-tech-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 18px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    animation: cardFloat 4s ease-in-out infinite;
    width: 140px;
}

.hero-tech-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.2);
}

/* Hero Sponsor Cards */
.hero-sponsor-card {
    position: absolute;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 204, 0.1));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 15px;
    padding: 14px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    animation: cardFloat 4s ease-in-out infinite;
    width: 140px;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.hero-sponsor-card:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 102, 204, 0.2));
    border-color: rgba(0, 212, 255, 0.5);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.sponsor-card-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 102, 204, 0.3));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.3rem;
    color: #00d4ff;
    border: 1px solid rgba(0, 212, 255, 0.4);
}

.hero-sponsor-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: white;
    line-height: 1.2;
}

.hero-sponsor-card p {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 6px 0;
}

.sponsor-badge-tag {
    display: inline-block;
    padding: 3px 8px;
    background: rgba(0, 212, 255, 0.2);
    border: 1px solid rgba(0, 212, 255, 0.4);
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: 600;
    color: #00d4ff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-1 {
    top: 5%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 5%;
    right: 5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 5%;
    left: 5%;
    animation-delay: 2s;
}

.card-4 {
    bottom: 5%;
    right: 5%;
    animation-delay: 1.5s;
}

/* Override positions for sponsor cards to ensure better spacing */
.hero-sponsor-card.card-1 {
    top: 8%;
    left: 5%;
    animation-delay: 0s;
}

.hero-sponsor-card.card-2 {
    top: 8%;
    right: 5%;
    animation-delay: 1s;
}

.hero-sponsor-card.card-3 {
    bottom: 8%;
    left: 5%;
    animation-delay: 2s;
}

.hero-sponsor-card.card-4 {
    bottom: 8%;
    right: 5%;
    animation-delay: 1.5s;
}

@keyframes cardFloat {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-15px); 
    }
}

.tech-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 102, 204, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.4rem;
    color: #00d4ff;
}

.hero-tech-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: white;
}

.hero-tech-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Center Logo */
.hero-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    z-index: -1;
}

.logo-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(0, 102, 204, 0.2));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(0, 212, 255, 0.3);
    animation: pulseCircle 3s ease-in-out infinite;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo-circle:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.3), rgba(0, 102, 204, 0.3));
    border-color: rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

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

.logo-circle i {
    font-size: 2.5rem;
    color: #00d4ff;
    margin-bottom: 10px;
}

.logo-circle span {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

/* Scroll Indicator */
.hero-scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    z-index: 3;
    animation: bounceScroll 2s infinite;
}

.hero-scroll-down span {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-arrow-down {
    font-size: 1.5rem;
    color: #00d4ff;
}

@keyframes bounceScroll {
    0%, 100% { 
        transform: translateX(-50%) translateY(0); 
    }
    50% { 
        transform: translateX(-50%) translateY(-10px); 
    }
}

/* ============================================
   MODERN PROGRAMME SECTION
   ============================================ */

/* Programme Section */
.modern-programme-section {
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.modern-programme-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.modern-programme-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.modern-programme-header {
    margin-bottom: 60px !important;
}

.modern-programme-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.modern-programme-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0066cc);
    border-radius: 2px;
}

.modern-programme-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Programme Cards */
.modern-programme-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-programme-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Card Image */
.programme-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.programme-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-programme-card:hover .programme-card-image img {
    transform: scale(1.1);
}

.programme-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-programme-card:hover .programme-overlay {
    opacity: 1;
}

.programme-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #0066cc 0%, #00d4ff 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.3);
    z-index: 2;
}

/* Card Content */
.programme-card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.programme-rating {
    color: #ffc107;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.programme-rating i {
    margin-right: 2px;
}

.programme-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
    flex-grow: 1;
}

.programme-card-title a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.programme-card-title a:hover {
    color: #0066cc;
}

.programme-card-footer {
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.programme-certification {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.programme-certification i {
    color: #0066cc;
}

/* Hover Content */
.programme-card-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0066cc 0%, #00d4ff 100%);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
    border-radius: 20px;
}

.modern-programme-card:hover .programme-card-hover {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hover-content {
    text-align: center;
    width: 100%;
}

.hover-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.hover-title:hover {
    transform: translateY(-3px);
    color: white;
}

.hover-description {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
}

.hover-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.hover-author i {
    font-size: 1.1rem;
}

.btn-programme-hover {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    background: white;
    color: #0066cc;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-programme-hover:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #0066cc;
}

.btn-programme-hover i {
    transition: transform 0.3s ease;
}

.btn-programme-hover:hover i {
    transform: translateX(5px);
}

/* ============================================
   MODERN PROCESS SECTION
   ============================================ */

/* Process Section */
.modern-process-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.modern-process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.modern-process-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.modern-process-header {
    margin-bottom: 60px !important;
}

.modern-process-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.modern-process-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0066cc);
    border-radius: 2px;
}

.modern-process-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Process Steps Grid */
.modern-process-steps {
    position: relative;
    margin-top: 40px;
}

/* Step Cards */
.modern-step-card {
    height: 100%;
    margin-bottom: 0;
}

.step-card-inner {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f0f0f0;
    overflow: hidden;
    cursor: pointer;
}

.step-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.modern-step-card:hover .step-card-inner {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.modern-step-card:hover .step-card-inner::before {
    opacity: 1;
}

/* Step Number Wrapper */
.step-number-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.step-number-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all 0.4s ease;
    z-index: 0;
}

.step-card-1 .step-number-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.step-card-2 .step-number-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.step-card-3 .step-number-bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.step-card-4 .step-number-bg {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.modern-step-card:hover .step-number-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-number {
    position: relative;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    z-index: 2;
    transition: transform 0.4s ease;
}

.modern-step-card:hover .step-number {
    transform: scale(1.1);
}

.step-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 2rem;
    color: white;
    z-index: 3;
    transition: transform 0.4s ease;
    opacity: 0;
}

.modern-step-card:hover .step-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.modern-step-card:hover .step-number {
    opacity: 0;
}

/* Step Content */
.step-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.modern-step-card:hover .step-title {
    color: #0066cc;
}

.step-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Step Connector - Removed for new horizontal layout */
.step-connector {
    display: none;
}

/* Video Section */
.modern-process-video {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: #000;
    aspect-ratio: 16 / 9;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-wrapper:hover .video-overlay {
    opacity: 1;
}

.video-border {
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #00d4ff, #0066cc);
    border-radius: 25px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.video-wrapper:hover .video-border {
    opacity: 1;
}

.modern-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 1;
    border-radius: 25px;
    transition: transform 0.4s ease;
}

.video-wrapper:hover .modern-video {
    transform: scale(1.02);
}

.video-play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s ease;
    pointer-events: none;
}

.video-play-indicator i {
    color: #0066cc;
    font-size: 1.5rem;
    margin-left: 3px;
}

.video-wrapper:hover .video-play-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

/* ============================================
   SHARED ANIMATIONS
   ============================================ */

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

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

/* Programme Card Animations */
.modern-programme-card {
    animation: fadeInUp 0.6s ease backwards;
}

.modern-programme-card:nth-child(1) {
    animation-delay: 0.1s;
}

.modern-programme-card:nth-child(2) {
    animation-delay: 0.2s;
}

.modern-programme-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* Process Card Animations */
.modern-step-card {
    animation: fadeInUp 0.6s ease backwards;
}

.modern-step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.modern-step-card:nth-child(2) {
    animation-delay: 0.2s;
}

.modern-step-card:nth-child(3) {
    animation-delay: 0.3s;
}

.modern-step-card:nth-child(4) {
    animation-delay: 0.4s;
}

.modern-process-video {
    animation: fadeInRight 0.8s ease backwards;
    animation-delay: 0.3s;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Hero Responsive */
@media (max-width: 992px) {
    .modern-hero {
        padding: 100px 0 60px;
    }
    
    .modern-hero-title {
        font-size: 3.5rem;
    }
    
    .modern-hero-visual {
        height: 400px;
        margin-top: 50px;
    }
    
    .hero-tech-card {
        width: 130px;
        padding: 15px;
    }
    
    .hero-center-logo {
        width: 150px;
        height: 150px;
    }
    
    .modern-hero-stats {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .modern-hero {
        padding: 80px 0 40px;
        text-align: center;
    }
    
    .modern-hero-content {
        text-align: center;
    }
    
    .modern-hero-title {
        font-size: 2.5rem;
    }
    
    .modern-hero-subtitle {
        font-size: 1.1rem;
        margin: 0 auto 30px;
    }
    
    .modern-hero-buttons {
        justify-content: center;
        flex-direction: column;
        align-items: stretch;
    }
    
    .modern-hero-btn-primary,
    .modern-hero-btn-secondary {
        justify-content: center;
    }
    
    .modern-hero-sponsor {
        margin-top: 25px;
    }
    
    .sponsor-badge {
        padding: 15px 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .sponsor-icon {
        width: 35px;
        height: 35px;
    }
    
    .sponsor-icon i {
        font-size: 1rem;
    }
    
    .sponsor-content {
        width: 100%;
        text-align: center;
    }
    
    .sponsor-label {
        font-size: 0.7rem;
        text-align: center;
    }
    
    .sponsor-programs {
        justify-content: center;
    }
    
    .program-tag {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .sponsor-arrow {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .modern-hero-stats {
        justify-content: center;
        gap: 25px;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .modern-hero-visual {
        height: 400px;
        margin-top: 40px;
    }
    
    .hero-tech-card {
        width: 120px;
        padding: 12px;
        font-size: 0.85rem;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .hero-tech-card h4 {
        font-size: 0.9rem;
    }
    
    .hero-tech-card p {
        font-size: 0.75rem;
    }
    
    .hero-sponsor-card {
        width: 120px;
        padding: 12px;
    }
    
    .hero-sponsor-card.card-1 {
        top: 6%;
        left: 3%;
    }
    
    .hero-sponsor-card.card-2 {
        top: 6%;
        right: 3%;
    }
    
    .hero-sponsor-card.card-3 {
        bottom: 6%;
        left: 3%;
    }
    
    .hero-sponsor-card.card-4 {
        bottom: 6%;
        right: 3%;
    }
    
    .sponsor-card-icon {
        width: 38px;
        height: 38px;
        font-size: 1.2rem;
        margin-bottom: 8px;
    }
    
    .hero-sponsor-card h4 {
        font-size: 0.85rem;
    }
    
    .hero-sponsor-card p {
        font-size: 0.65rem;
    }
    
    .sponsor-badge-tag {
        font-size: 0.55rem;
        padding: 3px 7px;
    }
    
    .hero-center-logo {
        width: 120px;
        height: 120px;
    }
    
    .logo-circle i {
        font-size: 2rem;
    }
    
    .logo-circle span {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .modern-hero-title {
        font-size: 2rem;
    }
    
    .modern-hero-sponsor {
        margin-top: 20px;
    }
    
    .sponsor-badge {
        padding: 12px 15px;
        gap: 12px;
    }
    
    .sponsor-icon {
        width: 32px;
        height: 32px;
    }
    
    .sponsor-icon i {
        font-size: 0.9rem;
    }
    
    .sponsor-content {
        gap: 8px;
    }
    
    .sponsor-label {
        font-size: 0.65rem;
    }
    
    .sponsor-programs {
        gap: 6px;
    }
    
    .program-tag {
        font-size: 0.7rem;
        padding: 4px 10px;
    }
    
    .sponsor-arrow {
        width: 30px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .stat-value,
    .stat-suffix {
        font-size: 2rem;
    }
    
    .hero-tech-card {
        width: 110px;
        padding: 10px;
    }
    
    .tech-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .hero-tech-card h4 {
        font-size: 0.85rem;
    }
    
    .hero-tech-card p {
        font-size: 0.7rem;
    }
    
    .hero-sponsor-card {
        width: 110px;
        padding: 10px;
    }
    
    .hero-sponsor-card.card-1 {
        top: 4%;
        left: 2%;
    }
    
    .hero-sponsor-card.card-2 {
        top: 4%;
        right: 2%;
    }
    
    .hero-sponsor-card.card-3 {
        bottom: 4%;
        left: 2%;
    }
    
    .hero-sponsor-card.card-4 {
        bottom: 4%;
        right: 2%;
    }
    
    .sponsor-card-icon {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        margin-bottom: 7px;
    }
    
    .hero-sponsor-card h4 {
        font-size: 0.8rem;
    }
    
    .hero-sponsor-card p {
        font-size: 0.6rem;
        margin-bottom: 5px;
    }
    
    .sponsor-badge-tag {
        font-size: 0.5rem;
        padding: 2px 6px;
    }
}

/* Programme Responsive */
@media (max-width: 992px) {
    .modern-programme-title {
        font-size: 2.3rem;
    }
    
    .programme-card-image {
        height: 220px;
    }
    
    .programme-card-content {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .modern-programme-section {
        padding: 60px 0;
    }
    
    .modern-programme-header {
        margin-bottom: 40px !important;
    }
    
    .modern-programme-title {
        font-size: 2rem;
    }
    
    .modern-programme-subtitle {
        font-size: 1rem;
    }
    
    .programme-card-image {
        height: 200px;
    }
    
    .programme-card-title {
        font-size: 1.3rem;
    }
    
    .programme-card-hover {
        padding: 25px 20px;
    }
    
    .hover-title {
        font-size: 1.5rem;
    }
    
    .hover-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .modern-programme-title {
        font-size: 1.8rem;
    }
    
    .programme-card-image {
        height: 180px;
    }
    
    .programme-card-content {
        padding: 18px;
    }
    
    .programme-card-title {
        font-size: 1.2rem;
    }
}

/* Process Responsive */
@media (max-width: 1200px) {
    .step-card-inner {
        padding: 25px 20px;
    }
    
    .step-number-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 18px;
    }
    
    .step-number {
        font-size: 1.6rem;
    }
    
    .step-icon {
        font-size: 1.8rem;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 992px) {
    .modern-process-title {
        font-size: 2.3rem;
    }
    
    .modern-process-video {
        max-width: 100%;
        margin-bottom: 40px !important;
    }
    
    .step-card-inner {
        padding: 25px 20px;
    }
    
    .step-number-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 15px;
    }
    
    .step-number {
        font-size: 1.5rem;
    }
    
    .step-icon {
        font-size: 1.6rem;
    }
    
    .step-title {
        font-size: 1.1rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .modern-process-section {
        padding: 60px 0;
    }
    
    .modern-process-header {
        margin-bottom: 40px !important;
    }
    
    .modern-process-title {
        font-size: 2rem;
    }
    
    .modern-process-subtitle {
        font-size: 1rem;
    }
    
    .modern-process-video {
        max-width: 100%;
        margin-bottom: 30px !important;
    }
    
    .modern-process-steps {
        margin-top: 30px;
    }
    
    .step-card-inner {
        padding: 22px 18px;
    }
    
    .step-number-wrapper {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    
    .step-number {
        font-size: 1.4rem;
    }
    
    .step-icon {
        font-size: 1.4rem;
    }
    
    .step-title {
        font-size: 1.05rem;
        margin-bottom: 10px;
    }
    
    .step-description {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .modern-process-title {
        font-size: 1.8rem;
    }
    
    .step-card-inner {
        padding: 20px 15px;
    }
    
    .step-number-wrapper {
        width: 55px;
        height: 55px;
        margin-bottom: 12px;
    }
    
    .step-number {
        font-size: 1.2rem;
    }
    
    .step-icon {
        font-size: 1.2rem;
    }
    
    .step-title {
        font-size: 1rem;
    }
    
    .step-description {
        font-size: 0.8rem;
    }
}

/* ============================================
   MODERN CATEGORY SECTION
   ============================================ */

/* Category Section */
.modern-category-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.modern-category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.modern-category-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.modern-category-header {
    margin-bottom: 60px !important;
}

.modern-category-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.modern-category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0066cc);
    border-radius: 2px;
}

.modern-category-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Category Grid */
.modern-category-grid {
    display: flex;
    flex-wrap: wrap;
}

/* Category Cards */
.modern-category-card {
    height: 100%;
    margin-bottom: 0;
}

.category-card-inner {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid #f0f0f0;
    overflow: hidden;
    cursor: pointer;
}

.category-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.modern-category-card:hover .category-card-inner {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.modern-category-card:hover .category-card-inner::before {
    opacity: 1;
}

/* Icon Wrapper */
.category-icon-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.category-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    transition: all 0.4s ease;
    z-index: 0;
}

.category-card-1 .category-icon-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.category-card-2 .category-icon-bg {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.category-card-3 .category-icon-bg {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.category-card-4 .category-icon-bg {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.category-card-5 .category-icon-bg {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.modern-category-card:hover .category-icon-bg {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.category-icon {
    position: relative;
    width: 60px;
    height: 60px;
    object-fit: contain;
    z-index: 2;
    transition: transform 0.4s ease;
    filter: brightness(0) invert(1);
}

.modern-category-card:hover .category-icon {
    transform: scale(1.15);
}

/* Category Content */
.category-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

.category-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.category-title a {
    color: inherit;
    text-decoration: none;
    display: block;
}

.modern-category-card:hover .category-title {
    color: #0066cc;
}

.category-arrow {
    margin-top: 15px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    color: #0066cc;
    font-size: 1.2rem;
}

.modern-category-card:hover .category-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Category Card Animations */
.modern-category-card {
    animation: fadeInUp 0.6s ease backwards;
}

.modern-category-card:nth-child(1) {
    animation-delay: 0.1s;
}

.modern-category-card:nth-child(2) {
    animation-delay: 0.2s;
}

.modern-category-card:nth-child(3) {
    animation-delay: 0.3s;
}

.modern-category-card:nth-child(4) {
    animation-delay: 0.4s;
}

.modern-category-card:nth-child(5) {
    animation-delay: 0.5s;
}

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

/* ============================================
   MODERN TESTIMONIAL SECTION
   ============================================ */

/* Testimonial Section */
.modern-testimonial-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.modern-testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 102, 204, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.modern-testimonial-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.modern-testimonial-header {
    margin-bottom: 60px !important;
}

.modern-testimonial-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.modern-testimonial-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d4ff, #0066cc);
    border-radius: 2px;
}

.modern-testimonial-subtitle {
    font-size: 1.15rem;
    color: #666;
    margin-top: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Testimonial Carousel */
.modern-testimonial-carousel {
    position: relative;
}

.modern-testimonial-carousel .owl-stage-outer {
    padding: 20px 0;
}

/* Testimonial Cards */
.modern-testimonial-card {
    padding: 15px;
}

.modern-testimonial-inner {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 40px 35px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid #f0f0f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.modern-testimonial-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(0, 212, 255, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.modern-testimonial-card:hover .modern-testimonial-inner {
    transform: translateY(-8px);
    border-color: transparent;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.modern-testimonial-card:hover .modern-testimonial-inner::before {
    opacity: 1;
}

/* Quote Icon */
.modern-quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 204, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.4s ease;
}

.modern-quote-icon i {
    font-size: 1.8rem;
    color: #0066cc;
    transition: transform 0.4s ease;
}

.modern-testimonial-card:hover .modern-quote-icon {
    background: linear-gradient(135deg, #00d4ff, #0066cc);
    transform: scale(1.1) rotate(5deg);
}

.modern-testimonial-card:hover .modern-quote-icon i {
    color: white;
    transform: rotate(-5deg);
}

/* Testimonial Text */
.modern-testimonial-text {
    position: relative;
    z-index: 1;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
    flex-grow: 1;
    font-style: italic;
}

/* Author Section */
.modern-testimonial-author {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.modern-testimonial-card:hover .author-name {
    color: #0066cc;
}

.author-role {
    font-size: 0.9rem;
    color: #888;
    font-weight: 500;
}

/* Carousel Navigation */
.modern-testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.modern-testimonial-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modern-testimonial-carousel .owl-nav button:hover {
    background: linear-gradient(135deg, #00d4ff, #0066cc);
    border-color: transparent;
    color: white;
    transform: scale(1.1);
}

.modern-testimonial-carousel .owl-nav button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Carousel Dots */
.modern-testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.modern-testimonial-carousel .owl-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d0d0d0;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.modern-testimonial-carousel .owl-dots button.active {
    background: linear-gradient(135deg, #00d4ff, #0066cc);
    width: 30px;
    border-radius: 6px;
}

.modern-testimonial-carousel .owl-dots button:hover {
    background: #0066cc;
}

/* Testimonial Card Animations */
.modern-testimonial-card {
    animation: fadeInUp 0.6s ease backwards;
}

/* ============================================
   MODERN CTA SECTION
   ============================================ */

/* CTA Section */
.modern-cta-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.modern-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 102, 204, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.modern-cta-section .container {
    position: relative;
    z-index: 1;
}

/* CTA Wrapper */
.modern-cta-wrapper {
    position: relative;
    background: white;
    border-radius: 30px;
    padding: 60px 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    z-index: 1;
}

.modern-cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(0, 102, 204, 0.03) 100%);
    z-index: 0;
}

/* Floating Shapes */
.modern-cta-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 204, 0.1));
    animation: floatShape 8s ease-in-out infinite;
}

.cta-shape-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    left: -30px;
    animation-delay: 2s;
}

.cta-shape-3 {
    width: 100px;
    height: 100px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

/* CTA Image */
.modern-cta-image {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.modern-cta-wrapper:hover .image-wrapper {
    transform: scale(1.05);
}

.modern-cta-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.modern-cta-wrapper:hover .modern-cta-img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 102, 204, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modern-cta-wrapper:hover .image-overlay {
    opacity: 1;
}

/* CTA Content */
.modern-cta-content {
    position: relative;
    z-index: 2;
}

.modern-cta-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 102, 204, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0066cc;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.modern-cta-badge i {
    color: #00d4ff;
    font-size: 1.1rem;
}

.modern-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.modern-cta-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 550px;
}

/* CTA Buttons */
.modern-cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    align-items: center;
}

.modern-cta-btn,
.modern-cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.modern-cta-btn {
    background: linear-gradient(135deg, #00d4ff 0%, #0066cc 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.modern-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
    color: white;
}

.modern-cta-btn i {
    font-size: 1.3rem;
}

.modern-cta-btn-secondary {
    background: white;
    border: 2px solid #e0e0e0;
    color: #1a1a1a;
}

.modern-cta-btn-secondary:hover {
    background: #f8f9fa;
    border-color: #0066cc;
    color: #0066cc;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.modern-cta-btn-secondary i {
    transition: transform 0.3s ease;
}

.modern-cta-btn-secondary:hover i {
    transform: translateX(5px);
}

/* CTA Animations */
.modern-cta-wrapper {
    animation: fadeInUp 0.8s ease backwards;
}

/* ============================================
   RESPONSIVE DESIGN - CATEGORY
   ============================================ */

@media (max-width: 1200px) {
    .category-card-inner {
        padding: 30px 20px;
    }
    
    .category-icon-wrapper {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }
    
    .category-icon {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 992px) {
    .modern-category-title {
        font-size: 2.3rem;
    }
    
    .category-card-inner {
        padding: 25px 20px;
    }
    
    .category-icon-wrapper {
        width: 80px;
        height: 80px;
        margin-bottom: 18px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
    }
    
    .category-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .modern-category-section {
        padding: 60px 0;
    }
    
    .modern-category-header {
        margin-bottom: 40px !important;
    }
    
    .modern-category-title {
        font-size: 2rem;
    }
    
    .modern-category-subtitle {
        font-size: 1rem;
    }
    
    .category-card-inner {
        padding: 25px 18px;
    }
    
    .category-icon-wrapper {
        width: 70px;
        height: 70px;
        margin-bottom: 15px;
    }
    
    .category-icon {
        width: 45px;
        height: 45px;
    }
    
    .category-title {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .modern-category-title {
        font-size: 1.8rem;
    }
    
    .category-card-inner {
        padding: 20px 15px;
    }
    
    .category-icon-wrapper {
        width: 65px;
        height: 65px;
        margin-bottom: 12px;
    }
    
    .category-icon {
        width: 40px;
        height: 40px;
    }
    
    .category-title {
        font-size: 0.95rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - TESTIMONIAL
   ============================================ */

@media (max-width: 1200px) {
    .modern-testimonial-inner {
        padding: 35px 30px;
    }
    
    .modern-quote-icon {
        width: 55px;
        height: 55px;
        top: 20px;
        right: 20px;
    }
    
    .modern-quote-icon i {
        font-size: 1.6rem;
    }
}

@media (max-width: 992px) {
    .modern-testimonial-title {
        font-size: 2.3rem;
    }
    
    .modern-testimonial-inner {
        padding: 30px 25px;
    }
    
    .modern-testimonial-text {
        font-size: 1rem;
    }
    
    .author-name {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .modern-testimonial-section {
        padding: 60px 0;
    }
    
    .modern-testimonial-header {
        margin-bottom: 40px !important;
    }
    
    .modern-testimonial-title {
        font-size: 2rem;
    }
    
    .modern-testimonial-subtitle {
        font-size: 1rem;
    }
    
    .modern-testimonial-inner {
        padding: 25px 20px;
    }
    
    .modern-quote-icon {
        width: 50px;
        height: 50px;
        top: 15px;
        right: 15px;
    }
    
    .modern-quote-icon i {
        font-size: 1.4rem;
    }
    
    .modern-testimonial-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }
    
    .modern-testimonial-author {
        padding-top: 20px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-role {
        font-size: 0.85rem;
    }
    
    .modern-testimonial-carousel .owl-nav {
        margin-top: 30px;
    }
    
    .modern-testimonial-carousel .owl-nav button {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .modern-testimonial-title {
        font-size: 1.8rem;
    }
    
    .modern-testimonial-inner {
        padding: 22px 18px;
    }
    
    .modern-quote-icon {
        width: 45px;
        height: 45px;
        top: 12px;
        right: 12px;
    }
    
    .modern-quote-icon i {
        font-size: 1.2rem;
    }
    
    .modern-testimonial-text {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .modern-testimonial-author {
        padding-top: 18px;
    }
    
    .author-name {
        font-size: 0.95rem;
    }
    
    .author-role {
        font-size: 0.8rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - CTA
   ============================================ */

@media (max-width: 1200px) {
    .modern-cta-wrapper {
        padding: 50px 40px;
    }
    
    .modern-cta-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .modern-cta-wrapper {
        padding: 40px 35px;
    }
    
    .modern-cta-title {
        font-size: 2rem;
    }
    
    .modern-cta-description {
        font-size: 1rem;
    }
    
    .modern-cta-buttons {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .modern-cta-btn,
    .modern-cta-btn-secondary {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .modern-cta-section {
        padding: 60px 0;
    }
    
    .modern-cta-wrapper {
        padding: 35px 25px;
        border-radius: 20px;
    }
    
    .modern-cta-title {
        font-size: 1.8rem;
    }
    
    .modern-cta-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .modern-cta-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }
    
    .modern-cta-buttons {
        gap: 12px;
    }
    
    .modern-cta-btn,
    .modern-cta-btn-secondary {
        padding: 14px 25px;
        font-size: 1rem;
        flex: 1;
        min-width: 150px;
    }
    
    .cta-shape-1 {
        width: 150px;
        height: 150px;
    }
    
    .cta-shape-2 {
        width: 120px;
        height: 120px;
    }
    
    .cta-shape-3 {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 576px) {
    .modern-cta-wrapper {
        padding: 30px 20px;
    }
    
    .modern-cta-title {
        font-size: 1.6rem;
    }
    
    .modern-cta-description {
        font-size: 0.9rem;
    }
    
    .modern-cta-badge {
        font-size: 0.8rem;
        padding: 8px 18px;
    }
    
    .modern-cta-buttons {
        gap: 10px;
    }
    
    .modern-cta-btn,
    .modern-cta-btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
        flex: 1;
        min-width: 140px;
    }
}

