/* ============================================
   EDRONA LMS - Main Stylesheet
   Theme: Modern, Professional, Educational
   ============================================ */

/* ============================================
   CSS Variables - Easy Theme Customization
   ============================================ */
:root {
    /* Primary Colors */
    --primary-color: #1a5f7a;
    --primary-dark: #134b61;
    --primary-light: #2d8aaa;

    /* Secondary Colors */
    --secondary-color: #57c5b6;
    --secondary-dark: #3da99b;
    --secondary-light: #7ed4c8;

    /* Accent Colors */
    --accent-color: #159895;
    --accent-dark: #0f7473;
    --accent-light: #1db9b6;

    /* Neutral Colors */
    --dark-color: #1a1a2e;
    --text-color: #333333;
    --text-muted: #6c757d;
    --text-light: #ffffff;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e9ecef;

    /* Gradient */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-light) 100%);
    --gradient-hero: linear-gradient(135deg, #1a5f7a 0%, #159895 50%, #57c5b6 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Font Families */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Poppins', var(--font-primary);
}

/* ============================================
   Base Styles & Reset
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark-color);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--primary-dark);
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   Utility Classes
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.highlight-secondary {
    color: var(--secondary-color);
}

.bg-light {
    background-color: var(--light-bg);
}

.bg-gradient {
    background: var(--gradient-primary);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
    gap: 8px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(26, 95, 122, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.4);
    color: var(--white);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* ============================================
   Header & Navigation
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.main-header.scrolled .navbar {
    padding: 10px 0;
}

.main-header.scrolled .navbar-brand img {
    height: 65px;
}

.navbar {
    padding: 15px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.navbar-brand img {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: height 0.3s ease;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: 500;
    padding: 10px 18px !important;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

.navbar-nav .dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 15px 0;
    margin-top: 10px;
    min-width: 280px;
}

.dropdown-item {
    padding: 12px 20px;
    transition: var(--transition-fast);
}

.dropdown-item:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

.dropdown-item i {
    width: 24px;
    margin-right: 10px;
    color: var(--primary-color);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-buttons .btn-login {
    color: var(--text-color);
    font-weight: 500;
}

.nav-buttons .btn-login:hover {
    color: var(--primary-color);
}

/* Header Responsive Adjustments */
@media (max-width: 991px) {
    .navbar-brand img {
        height: 65px;
    }

    .main-header.scrolled .navbar-brand img {
        height: 55px;
    }

    .nav-buttons {
        margin-top: 15px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 55px;
    }

    .main-header.scrolled .navbar-brand img {
        height: 50px;
    }
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    padding: 160px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5f5 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(87, 197, 182, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(26, 95, 122, 0.1);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 550px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-trust {
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero-trust p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-logos img {
    height: 35px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition-normal);
}

.trust-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

.hero-image {
    position: relative;
    z-index: 1;
    animation: fadeInRight 0.8s ease 0.3s both;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 20px;
    left: 20px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.3;
}

/* Centered Hero Content */
.hero-content-centered {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 1;
}

.hero-content-centered .hero-subtitle {
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-content-centered .hero-buttons {
    justify-content: center;
}

/* Hero Video Section */
.hero-video-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-video-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: scale(var(--video-scale, 0.75));
    transition: box-shadow 0.4s ease;
    will-change: transform;
}

.hero-video-container.scaled {
    box-shadow: var(--shadow-xl);
}

.plyr-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: var(--dark-color);
}

.plyr-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Video Play Overlay */
.video-play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.video-play-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.video-play-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.play-btn i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-left: 5px;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.play-text {
    color: var(--white);
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Logo Marquee Section */
.logo-marquee-section {
    margin-top: 80px;
    padding: 40px 0;
    background: transparent;
    /* border-top: 1px solid var(--border-color); */
}

.marquee-label {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-marquee {
    overflow: hidden;
    position: relative;
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, #e9f5f5 0%, transparent 100%);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, #e9f5f5 0%, transparent 100%);
}

.marquee-track {
    display: flex;
    width: fit-content;
    animation: marquee 30s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 30px;
}

.marquee-content img {
    height: 45px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.marquee-content img:hover {
    opacity: 1;
    filter: grayscale(0%);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Plyr Video Player Custom Theme */
.plyr {
    --plyr-color-main: var(--primary-color);
    --plyr-video-control-color: #fff;
    --plyr-video-control-color-hover: var(--white);
    --plyr-video-control-background-hover: var(--primary-color);
    border-radius: var(--radius-lg);
}

.plyr--video {
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.plyr__control--overlaid {
    background: var(--primary-color);
    border-radius: 50%;
    padding: 20px;
}

.plyr__control--overlaid:hover {
    background: var(--primary-dark);
}

.plyr--full-ui input[type=range] {
    color: var(--primary-color);
}

.plyr__controls {
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    padding: 20px 15px 15px;
}

.plyr__progress__buffer {
    background: rgba(255,255,255,0.3);
}

/* Responsive adjustments for video section */
@media (max-width: 991px) {
    .hero-video-wrapper {
        padding: 0 15px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
    }

    .play-btn i {
        font-size: 2rem;
    }

    .logo-marquee-section {
        margin-top: 60px;
    }

    .marquee-content {
        gap: 50px;
        padding: 0 25px;
    }

    .marquee-content img {
        height: 35px;
        max-width: 120px;
    }
}

@media (max-width: 767px) {
    .hero-content-centered {
        margin-bottom: 40px;
    }

    .play-btn {
        width: 60px;
        height: 60px;
    }

    .play-btn i {
        font-size: 1.5rem;
    }

    .play-text {
        font-size: 0.9rem;
    }

    .logo-marquee::before,
    .logo-marquee::after {
        width: 50px;
    }

    .marquee-content {
        gap: 30px;
    }

    .marquee-content img {
        height: 30px;
    }
}

/* ============================================
   Platform Carousel Section
   ============================================ */
.platform-carousel-section {
    padding: 100px 0 80px;
    background: var(--white);
    overflow: hidden;
}

.platform-carousel-section .section-title {
    margin-bottom: 50px;
}

.platform-carousel-section .section-title p strong {
    color: var(--text-color);
}

.carousel-wrapper {
    position: relative;
    padding: 0 0 0 10px;
}

@media (max-width: 1400px) {
    .carousel-wrapper {
        padding-left: 10px;
    }
}

.platform-carousel {
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    scroll-behavior: smooth;
}

.platform-carousel::-webkit-scrollbar {
    display: none;
}

.platform-carousel.grabbing {
    cursor: grabbing;
    scroll-behavior: auto;
}

.carousel-track {
    display: flex;
    gap: 25px;
    padding: 20px 50px 20px 0;
}

.platform-card {
    flex: 0 0 280px;
    background: var(--card-gradient, linear-gradient(149deg, #e8d5ff 10%, #f5f0ff 76%));
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}

.platform-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Platform Card Color Variants */
.platform-card.card-purple {
    background: linear-gradient(149deg, #e8d5ff 10%, #f5f0ff 76%);
}
.platform-card.card-blue {
    background: linear-gradient(149deg, #d5e8ff 10%, #f0f7ff 76%);
}
.platform-card.card-green {
    background: linear-gradient(149deg, #ccfcd9 10%, #f5fce8 76%);
}
.platform-card.card-coral {
    background: linear-gradient(149deg, #ffd5d5 10%, #fff0f0 76%);
}
.platform-card.card-orange {
    background: linear-gradient(149deg, #ffe5cc 10%, #fff8f0 76%);
}
.platform-card.card-sky {
    background: linear-gradient(149deg, #cce0ff 10%, #f0f5ff 76%);
}
.platform-card.card-lime {
    background: linear-gradient(149deg, #d9ffcc 10%, #f5ffe8 76%);
}

.platform-card .card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
}

.platform-card .card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    min-height: 180px;
}

.platform-card .card-image img {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.platform-card .card-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.platform-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark-color);
    font-size: 0.95rem;
    transition: gap 0.3s ease, color 0.3s ease;
    margin-top: auto;
}

.platform-card .card-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

.platform-card .card-link i {
    transition: transform 0.3s ease;
}

.platform-card .card-link:hover i {
    transform: translateX(3px);
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.carousel-nav:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav i {
    font-size: 1.2rem;
}

.carousel-nav-next {
    right: 30px;
}

.carousel-nav-prev {
    left: 30px;
}

.carousel-nav:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-nav:disabled:hover {
    background: var(--white);
    color: inherit;
    transform: translateY(-50%);
}

/* Platform Carousel Responsive */
@media (max-width: 991px) {
    .platform-carousel-section {
        padding: 70px 0 60px;
    }

    .carousel-wrapper {
        padding-left: 20px;
    }

    .carousel-track {
        gap: 20px;
    }

    .platform-card {
        flex: 0 0 260px;
        min-height: 400px;
        padding: 25px 20px;
    }

    .carousel-nav-next {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .platform-carousel-section {
        padding: 60px 0 50px;
    }

    .carousel-wrapper {
        padding-left: 15px;
    }

    .carousel-track {
        gap: 15px;
        padding-right: 30px;
    }

    .platform-card {
        flex: 0 0 240px;
        min-height: 380px;
        padding: 20px 18px;
    }

    .platform-card .card-title {
        font-size: 1.2rem;
    }

    .platform-card .card-image {
        min-height: 150px;
    }

    .platform-card .card-image img {
        max-height: 160px;
    }

    .carousel-nav {
        width: 45px;
        height: 45px;
    }

    .carousel-nav-next {
        right: 10px;
    }
}

@media (max-width: 575px) {
    .platform-card {
        flex: 0 0 220px;
        min-height: 360px;
    }

    .platform-card .card-description {
        font-size: 0.9rem;
    }
}

/* ============================================
   Marketing Tools Section (Tabbed)
   ============================================ */
.marketing-tools-section {
    padding: 100px 0;
    background: var(--dark-color);
}

.marketing-tools-section .section-title h2 {
    color: var(--white);
}

.marketing-tools-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

.highlight-green {
    color: #57c5b6;
}

.tools-tabs-container {
    margin-top: 50px;
}

.tools-tab-menu {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tools-tab-item {
    padding: 20px 25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tools-tab-item h4 {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 0;
    transition: color 0.3s ease;
}

.tools-tab-item .tab-description {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
    opacity: 0;
    margin-top: 0;
}

.tools-tab-item .tab-description p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-bottom: 0;
    padding-top: 10px;
    line-height: 1.5;
}

.tools-tab-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.tools-tab-item:hover h4 {
    color: var(--white);
}

.tools-tab-item.active {
    border-color: rgba(87, 197, 182, 0.5);
    background: rgba(87, 197, 182, 0.08);
}

.tools-tab-item.active h4 {
    color: var(--white);
    font-weight: 600;
}

.tools-tab-item.active .tab-description {
    max-height: 100px;
    opacity: 1;
    margin-top: 5px;
}

.tools-tab-content {
    position: relative;
    min-height: 400px;
}

.tools-tab-pane {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.tools-tab-pane.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.tools-tab-pane img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tools-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 60px;
}

.tools-cta-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
}

.tools-cta-buttons .btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* Marketing Tools Responsive */
@media (max-width: 991px) {
    .marketing-tools-section {
        padding: 70px 0;
    }

    .tools-tab-menu {
        margin-bottom: 40px;
    }

    .tools-tab-item {
        padding: 15px 20px;
    }

    .tools-tab-content {
        min-height: auto;
    }

    .tools-tab-pane {
        position: relative;
        display: none;
    }

    .tools-tab-pane.active {
        display: block;
    }
}

@media (max-width: 767px) {
    .marketing-tools-section {
        padding: 60px 0;
    }

    .tools-tab-item h4 {
        font-size: 1rem;
    }

    .tools-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .tools-cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ============================================
   Stats Section
   ============================================ */
.stats-section {
    padding: 60px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-color);
}

/* Dark Stats Section */
.stats-section.stats-dark {
    background: var(--dark-color);
    border-bottom: none;
    padding: 70px 0;
}

.stats-section.stats-dark .stat-number {
    color: var(--white);
}

.stats-section.stats-dark .stat-number span {
    color: #57c5b6;
}

.stats-section.stats-dark .stat-label {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Content Security Section
   ============================================ */
.content-security-section {
    padding: 100px 0;
    background: var(--white);
}

.security-content {
    padding-right: 40px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--light-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.section-badge i {
    color: #22c55e;
}

.security-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.security-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.security-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 1.05rem;
    color: var(--text-color);
    border-bottom: 1px solid var(--border-color);
}

.security-features-list li:last-child {
    border-bottom: none;
}

.security-features-list li i {
    color: #22c55e;
    font-size: 1.2rem;
}

.security-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.security-buttons .btn-outline-dark {
    border-color: var(--dark-color);
    color: var(--dark-color);
}

.security-buttons .btn-outline-dark:hover {
    background: var(--dark-color);
    color: var(--white);
}

/* Security Image Card */
.security-image-wrapper {
    display: flex;
    justify-content: center;
}

.security-image-card {
    background: linear-gradient(149deg, #e6f7ef 10%, #f0fdf4 76%);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    max-width: 500px;
}

.security-image-card h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 25px;
    line-height: 1.4;
}

.security-image-card h4 span {
    color: #22c55e;
}

.security-visual {
    position: relative;
    margin-bottom: 25px;
}

.security-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.security-badge-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.security-badge-icon.shield {
    background: #22c55e;
    color: var(--white);
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

.protection-logos {
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.protection-logos p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.logos-row {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.drm-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.drm-logo i {
    font-size: 1.1rem;
}

/* Content Security Responsive */
@media (max-width: 991px) {
    .content-security-section {
        padding: 70px 0;
    }

    .security-content {
        padding-right: 0;
        margin-bottom: 50px;
    }

    .security-content h2 {
        font-size: 2rem;
    }

    .security-image-card {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    .content-security-section {
        padding: 60px 0;
    }

    .security-content h2 {
        font-size: 1.75rem;
    }

    .security-features-list li {
        font-size: 1rem;
        padding: 10px 0;
    }

    .security-image-card {
        padding: 25px 20px;
    }

    .security-image-card h4 {
        font-size: 1.25rem;
    }

    .security-badge-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        left: -10px;
    }

    .logos-row {
        gap: 15px;
    }

    .drm-logo {
        font-size: 0.85rem;
    }
}

/* ============================================
   Branded Apps Section
   ============================================ */
.branded-apps-section {
    padding: 100px 0;
    background: var(--dark-color);
    position: relative;
    overflow: hidden;
}

.branded-apps-section .section-title h2 {
    color: var(--white);
}

.branded-apps-section .section-title p {
    color: rgba(255, 255, 255, 0.7);
}

/* Laptop Slider Container */
.laptop-slider-container {
    padding: 50px 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Laptop Frame */
.laptop-frame {
    position: relative;
    max-width: 800px;
    width: 100%;
}

/* Laptop Screen */
.laptop-screen {
    background: #1a1a1a;
    border-radius: 15px 15px 0 0;
    padding: 15px 15px 10px;
    border: 3px solid #2a2a2a;
    border-bottom: none;
    box-shadow: 0 -10px 50px rgba(0, 0, 0, 0.3);
}

/* Swiper inside laptop */
.laptop-swiper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    background: #000;
}

.laptop-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.laptop-swiper .swiper-slide img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

/* Laptop Base */
.laptop-base {
    background: linear-gradient(to bottom, #2a2a2a 0%, #1a1a1a 100%);
    height: 20px;
    border-radius: 0 0 10px 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.laptop-base::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 8px;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 0 0 5px 5px;
}

.laptop-notch {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 6px;
    background: #3a3a3a;
    border-radius: 3px;
}

/* Navigation Buttons */
.laptop-nav-btn {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
}

.laptop-nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.laptop-nav-prev {
    left: 20px;
}

.laptop-nav-next {
    right: 20px;
}

/* ============================================
   Floating Review Widget
   ============================================ */
.floating-review-widget {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 280px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transition: all 0.4s ease;
}

.floating-review-widget.hidden {
    transform: translateX(-120%);
    opacity: 0;
    pointer-events: none;
}

.review-close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: #f0f0f0;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #666;
    transition: all 0.3s ease;
}

.review-close-btn:hover {
    background: #e0e0e0;
    color: #333;
}

.review-slides {
    position: relative;
}

.review-slide {
    display: none;
    animation: fadeInReview 0.5s ease;
}

.review-slide.active {
    display: block;
}

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

.review-stars {
    color: #fbbf24;
    margin-bottom: 10px;
}

.review-stars i {
    font-size: 0.9rem;
    margin-right: 2px;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 12px;
    line-height: 1.5;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-author span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-color);
}

.review-source-icon {
    width: 18px;
    height: 18px;
}

/* Responsive */
@media (max-width: 767px) {
    .floating-review-widget {
        left: 10px;
        bottom: 10px;
        width: 260px;
        padding: 15px;
    }

    .review-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .floating-review-widget {
        left: 10px;
        right: 10px;
        width: auto;
        bottom: 10px;
    }
}

/* App CTA Buttons */
.app-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.app-cta-buttons .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
}

.app-cta-buttons .btn-outline-light:hover {
    background: var(--white);
    color: var(--dark-color);
}

/* Branded Apps / Laptop Responsive */

@media (max-width: 991px) {
    .branded-apps-section {
        padding: 70px 0;
    }

    .laptop-frame {
        max-width: 600px;
    }

    .laptop-screen {
        padding: 12px 12px 8px;
        border-radius: 12px 12px 0 0;
    }

    .laptop-swiper {
        border-radius: 6px;
    }

    .laptop-base {
        height: 16px;
        border-radius: 0 0 8px 8px;
    }

    .laptop-base::before {
        bottom: -6px;
        height: 6px;
    }

    .laptop-notch {
        width: 60px;
        height: 5px;
    }
}

@media (max-width: 767px) {
    .branded-apps-section {
        padding: 60px 0;
    }

    .laptop-slider-container {
        padding: 30px 15px;
    }

    .laptop-frame {
        max-width: 100%;
    }

    .laptop-screen {
        padding: 10px 10px 6px;
        border-radius: 10px 10px 0 0;
        border-width: 2px;
    }

    .laptop-swiper {
        border-radius: 5px;
    }

    .laptop-base {
        height: 14px;
        border-radius: 0 0 6px 6px;
    }

    .laptop-base::before {
        bottom: -5px;
        width: 35%;
        height: 5px;
    }

    .laptop-notch {
        width: 50px;
        height: 4px;
    }

    .laptop-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .laptop-nav-prev {
        left: 5px;
    }

    .laptop-nav-next {
        right: 5px;
    }

    .app-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .app-cta-buttons .btn {
        width: 100%;
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .laptop-screen {
        padding: 8px 8px 5px;
        border-radius: 8px 8px 0 0;
    }

    .laptop-base {
        height: 12px;
    }

    .laptop-base::before {
        bottom: -4px;
        height: 4px;
    }

    .laptop-nav-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .laptop-nav-prev {
        left: 0;
    }

    .laptop-nav-next {
        right: 0;
    }
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-number span {
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ============================================
   Features Section
   ============================================ */
.features-section {
    padding: 100px 0;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 2rem;
    color: var(--white);
}

.feature-card h4 {
    margin-bottom: 15px;
}

.feature-card p {
    font-size: 0.95rem;
}

/* ============================================
   Platform Section (All-in-One)
   ============================================ */
.platform-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.platform-feature {
    display: flex;
    align-items: flex-start;
    padding: 25px;
    background: var(--white);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition-normal);
}

.platform-feature:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.platform-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: rgba(26, 95, 122, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.platform-feature-icon i {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.platform-feature h5 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.platform-feature p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.platform-image {
    position: relative;
}

.platform-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Showcase Section (Feature Highlight)
   ============================================ */
.showcase-section {
    padding: 100px 0;
}

.showcase-section.bg-light {
    background: var(--light-bg);
}

.showcase-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.showcase-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

.showcase-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.showcase-list li {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.showcase-list li:last-child {
    border-bottom: none;
}

.showcase-list li i {
    width: 24px;
    height: 24px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 0.8rem;
    color: var(--white);
}

.showcase-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   Security Section
   ============================================ */
.security-section {
    padding: 80px 0;
    background: var(--dark-color);
    color: var(--white);
}

.security-section h2 {
    color: var(--white);
}

.security-section p {
    color: rgba(255, 255, 255, 0.7);
}

.security-badge {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
}

.security-badge i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.security-badge h5 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1rem;
}

.security-badge p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ============================================
   Use Cases Section
   ============================================ */
.use-cases-section {
    padding: 100px 0;
}

.use-case-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    height: 100%;
}

.use-case-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.use-case-image {
    height: 200px;
    overflow: hidden;
}

.use-case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.use-case-card:hover .use-case-image img {
    transform: scale(1.1);
}

.use-case-content {
    padding: 25px;
}

.use-case-content h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.use-case-content p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   Testimonials Section
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--light-bg);
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 20px;
    color: var(--text-color);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-info p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

/* ============================================
   Unique Features Section
   ============================================ */
.unique-features-section {
    padding: 100px 0;
}

.unique-feature-box {
    padding: 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    height: 100%;
    transition: var(--transition-normal);
    border-top: 3px solid transparent;
}

.unique-feature-box:hover {
    box-shadow: var(--shadow-md);
    border-top-color: var(--primary-color);
}

.unique-feature-box .icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(26, 95, 122, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.unique-feature-box .icon-wrapper i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.unique-feature-box h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.unique-feature-box p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="80" r="3" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="60" r="1.5" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* ============================================
   Footer
   ============================================ */
.main-footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 0;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.8rem;
}

.footer-brand h3 span {
    color: var(--secondary-color);
}

.footer-about p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-title {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact-item i {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.footer-bottom {
    margin-top: 50px;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    justify-content: flex-end;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* ============================================
   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);
    }
}

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

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

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

/* Animation Classes */
.animate-fade-up {
    animation: fadeInUp 0.6s ease both;
}

.animate-fade-right {
    animation: fadeInRight 0.6s ease both;
}

.animate-fade-left {
    animation: fadeInLeft 0.6s ease both;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================
   Scroll Animations (AOS-like)
   ============================================ */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

/* ============================================
   Responsive Styles
   ============================================ */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }

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

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 50px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-trust {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .trust-logos {
        justify-content: center;
    }

    .navbar-nav {
        padding: 20px 0;
    }

    .navbar-nav .nav-link {
        padding: 12px 0 !important;
    }

    .nav-buttons {
        flex-direction: column;
        gap: 10px;
        padding: 15px 0;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .stat-number {
        font-size: 2.2rem;
    }

    .showcase-content {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .stat-item {
        margin-bottom: 20px;
    }

    .feature-card {
        margin-bottom: 20px;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
}

@media (max-width: 575px) {
    .hero-section {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .platform-feature {
        flex-direction: column;
        text-align: center;
    }

    .platform-feature-icon {
        margin: 0 auto 15px;
    }
}

/* ============================================
   Custom Scrollbar
   ============================================ */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* ============================================
   Preloader (Optional)
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--light-bg);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
