:root {
    --primary-blue: #2A52BE;
    --primary-gold: #DAA520;
    --dark-blue: #1a3a7a;
    --light-blue: #3d6fd4;
    --dark-gold: #b8860b;
    --light-gold: #f4d03f;
    --accent-purple: #8A2BE2;
    --accent-teal: #20B2AA;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-lighter: #f1f3f4;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(42, 82, 190, 0.1);
    --shadow-hover: 0 15px 40px rgba(42, 82, 190, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue), var(--light-blue));
    --gradient-gold: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    --gradient-hero: linear-gradient(135deg, #1a3a7a 0%, #2A52BE 50%, #3d6fd4 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Enhanced Navbar Styles */
.navbar-custom {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-bottom: 1px solid rgba(42, 82, 190, 0.1);
}

.navbar-custom.scrolled {
    padding: 0.7rem 0;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.logo-img {
    height: 85px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-text-container {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text-main {
    font-size: 1.4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.logo-text-sub {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link {
    color: var(--primary-blue);
    font-weight: 600;
    padding: 0.75rem 1.25rem;
    margin: 0 0.15rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    font-size: 0.95rem;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 3px 3px 0 0;
}

.navbar-nav .nav-link:hover::before,
.navbar-nav .nav-link.active::before {
    width: 80%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-gold);
    background: rgba(42, 82, 190, 0.05);
}

.navbar-nav .nav-link i {
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover i {
    transform: scale(1.1);
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-hover);
    border-radius: 12px;
    padding: 0.75rem 0;
    margin-top: 0.75rem;
    border: 1px solid rgba(42, 82, 190, 0.1);
    animation: dropdownFade 0.3s ease;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.dropdown-item i {
    margin-right: 0.75rem;
    color: var(--primary-blue);
    width: 16px;
    text-align: center;
}

.dropdown-item:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(5px);
}

.dropdown-item:hover i {
    color: white;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
    background: transparent;
    position: relative;
    width: 30px;
    height: 30px;
}

.navbar-toggler span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--primary-blue);
    margin: 6px 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.navbar-toggler[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Enhanced Button Styles */
.btn-outline-custom-nav {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 0.9rem;
}

.btn-outline-custom-nav:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42, 82, 190, 0.3);
}

.btn-primary-custom-nav {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(42, 82, 190, 0.3);
}

.btn-primary-custom-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(42, 82, 190, 0.4);
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
}

.btn-primary-custom {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 0.85rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 82, 190, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: all 0.5s ease;
}

.btn-primary-custom:hover::before {
    left: 100%;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(42, 82, 190, 0.4);
}

.btn-outline-custom {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    background: transparent;
    padding: 0.85rem 2.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: var(--primary-blue);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 82, 190, 0.3);
}

/* Enhanced Hero Section */
.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><polygon fill="%231a3a7a" points="0,100 150,200 300,150 450,250 600,150 750,250 900,150 1050,250 1200,150 1200,0 0,0"/><polygon fill="%232A52BE" points="0,400 150,300 300,400 450,300 600,400 750,300 900,400 1050,300 1200,400 1200,250 0,250"/><polygon fill="%233d6fd4" points="0,550 150,650 300,550 450,650 600,550 750,650 900,550 1050,650 1200,550 1200,400 0,400"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    color: white;
    z-index: 2;
    position: relative;
}

/* hero badge removed from markup; keeping minimal style in case reused elsewhere */
.hero-badge {
    display: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons {
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin: 0 auto 0.5rem;
}

.stat-item { text-align: center; color: white; }

.stat-number { font-size: 2rem; }

/* Watch video button redesign */
.btn-video-link {
    background: rgba(255,255,255,0.12);
    color: white;
    padding: 0.55rem 1rem;
    border-radius: 999px;
    display: inline-flex;
    gap: 0.6rem;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.18);
    transition: all 0.25s ease;
}

.btn-video-link:hover {
    background: rgba(255,255,255,0.18);
    transform: translateY(-3px);
}

.btn-video-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: white;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-video-label { font-weight: 700; }

.hero-image-container {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* New hero visual styles */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.visual-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.12;
    filter: blur(18px);
    transform: translate3d(0,0,0);
    animation: float-slow 8s ease-in-out infinite;
}

.shape-1 { width: 260px; height: 260px; background: var(--primary-blue); top: 10%; left: 5%; }
.shape-2 { width: 180px; height: 180px; background: var(--primary-gold); bottom: 5%; right: 10%; animation-delay: 2s; }
.shape-3 { width: 140px; height: 140px; background: var(--accent-teal); top: 30%; right: 30%; animation-delay: 4s; }

@keyframes float-slow {
    0% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-18px) translateX(6px); }
    100% { transform: translateY(0px) translateX(0px); }
}

.visual-card {
    width: 420px;
    max-width: 90%;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    position: relative;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(.2,.9,.3,1);
}

.visual-card:hover { transform: translateY(-8px) scale(1.02); }

.visual-img { width: 100%; height: auto; display: block; }

.visual-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    gap: 0.75rem;
}

/* overlay and floating play button styles removed — elements deleted from markup */

.visual-caption { font-size: 0.95rem; opacity: 0.95; }

@media (max-width: 991px) {
    .hero-visual { height: 420px; }
    .visual-card { width: 360px; }
}

/* No-image composed visual */
.visual-no-image { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); padding: 1.25rem; }
.cards-stack { display: grid; grid-template-columns: 1fr; gap: 10px; position: relative; z-index: 2; }
.stack-card { display: flex; gap: 0.75rem; align-items: center; padding: 0.9rem; border-radius: 12px; background: rgba(255,255,255,0.03); color: white; box-shadow: 0 10px 30px rgba(0,0,0,0.2); transform-origin: left center; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.stack-icon { width: 46px; height: 46px; border-radius: 10px; background: rgba(255,255,255,0.12); display: inline-flex; align-items: center; justify-content: center; font-size: 1.15rem; }
.stack-card h6 { margin: 0; font-size: 1rem; font-weight: 800; }
.stack-card p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.85); }

.card-a { transform: translateX(-8px); }
.card-b { transform: translateX(6px); }
.card-c { transform: translateX(-12px); }
.stack-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: 0 18px 40px rgba(0,0,0,0.28); }

.visual-graphic { position: absolute; right: 12px; top: 10px; width: 220px; height: 160px; z-index: 1; opacity: 0.95; }
.hero-svg { width: 100%; height: 100%; display: block; }

@media (max-width: 991px) {
    .visual-graphic { display: none; }
    .stack-card { padding: 0.7rem; }
}

@media (max-width: 576px) {
    .hero-visual { height: 300px; }
    .visual-card { width: 92%; }
    .hero-play-floating { right: 12px; bottom: 12px; width: 48px; height: 48px; }
}

.hero-main-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.5s ease;
}

.hero-main-image:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-main-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-image-container { height: 420px; }
    .hero-title { font-size: 2.4rem; }
    .hero-subtitle { font-size: 1.05rem; }
}

@media (max-width: 576px) {
    .hero-image-container { height: 300px; }
    .hero-title { font-size: 1.9rem; }
    .hero-stats { gap: 1rem; flex-direction: column; align-items: flex-start; }
    .stat-item { text-align: left; }
}

.hero-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    border-radius: 15px;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.card-1 {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.card-2 {
    top: 20%;
    right: 5%;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20%;
    left: 0;
    animation-delay: 4s;
}

/* Hide floating cards now that they're removed from markup */
.floating-card { display: none; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.card-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.2rem;
}

.card-content span {
    font-weight: 700;
    color: var(--text-dark);
    display: block;
    font-size: 0.9rem;
}

.card-content small {
    color: var(--text-light);
    font-size: 0.75rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

/* Enhanced Section Styles */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.section-divider span {
    height: 2px;
    width: 60px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-divider i {
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Enhanced Features Section */
.features-section {
    background: var(--bg-light);
    position: relative;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(42, 82, 190, 0.1);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-hover-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.feature-link {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.feature-link:hover {
    gap: 1rem;
    color: var(--dark-blue);
}

/* Enhanced Courses Section */
.courses-section {
    background: white;
}

.course-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    border: 1px solid rgba(42, 82, 190, 0.1);
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.course-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-new {
    background: var(--gradient-gold);
}

.course-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(42, 82, 190, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.course-card:hover .course-overlay {
    opacity: 1;
}

.btn-play {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: white;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.btn-play:hover {
    transform: scale(1.1);
    background: var(--primary-gold);
    color: white;
}

.course-content {
    padding: 1.5rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.course-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.course-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.course-instructor {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.course-instructor img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.course-instructor span {
    font-weight: 600;
    color: var(--text-dark);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-blue);
}

.course-price small {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 0.5rem;
}

/* Enhanced Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(42, 82, 190, 0.1);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(42, 82, 190, 0.1);
    font-size: 3rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-blue);
}

.author-info h5 {
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Enhanced CTA Section */
.cta-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><polygon fill="%231a3a7a" points="0,100 150,200 300,150 450,250 600,150 750,250 900,150 1050,250 1200,150 1200,0 0,0"/><polygon fill="%232A52BE" points="0,400 150,300 300,400 450,300 600,400 750,300 900,400 1050,300 1200,400 1200,250 0,250"/></svg>');
    background-size: cover;
    opacity: 0.1;
}

.cta-content {
    position: relative;
    z-index: 2;
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn {
    border-radius: 30px;
    padding: 0.85rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-buttons .btn-light {
    background: white;
    color: var(--primary-blue);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.cta-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.cta-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Animation Classes */
.animate-slide-in {
    animation: slideInLeft 1s ease-out;
}

.animate-slide-in-delay-1 {
    animation: slideInLeft 1s ease-out 0.3s both;
}

.animate-slide-in-delay-2 {
    animation: slideInLeft 1s ease-out 0.6s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s both;
}

.animate-float {
    animation: floatIn 1.5s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes floatIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .navbar-nav {
        padding: 1rem 0;
    }
    
    .navbar-actions {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid rgba(42, 82, 190, 0.1);
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .floating-card {
        position: relative;
        margin-bottom: 1rem;
        animation: none;
    }
    
    .hero-image-container {
        height: auto;
        margin-top: 3rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .hero-buttons .me-3 {
        margin-right: 0 !important;
    }
    

}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }
}





.policy-content h4, .terms-content h4 {
    margin-top: 1.8rem;
    font-weight: 600;
    color: var(--primary-color);
}

.policy-content p, .terms-content p {
    line-height: 1.7;
    color: #555;
}

.text-gradient {
    background: linear-gradient(90deg, #2A52BE, #DAA520);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
