/* 
   Hunarho Learning Solutions - Custom Stylesheet
   Theme: Purple & Gold Modern EdTech
   Primary Colors: #36348E (Purple), #ffe4a8 (Gold)
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --primary-purple: #36348E;
    --primary-purple-light: #4c49b6;
    --primary-purple-dark: #222163;
    --bg-dark-purple: #0b0a20;
    --bg-card-dark: #141334;
    --accent-gold: #f9c015;
    --accent-gold-dark: #ffd782;
    --bg-light-purple: #f6f5fb;
    --text-dark: #111026;
    --text-muted: #74729c;
    --text-light: #ffffff;
    --text-light-muted: #b1b0d0;
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --glow-purple: 0 0 20px rgba(54, 52, 142, 0.45);
    --glow-gold: 0 0 20px rgba(255, 228, 168, 0.35);
}

/* Base Styles & Typography */
body {
    font-family: var(--font-body);
    font-weight: 500;
    /* Medium thickness for Space Grotesk body text */
    color: var(--text-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
    font-family: var(--font-heading);
    font-weight: 700 !important;
    /* Boldest weight for Space Grotesk */
}

.hero-section h1 {
    font-weight: 700 !important;
}

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

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

::-webkit-scrollbar-thumb {
    background: var(--primary-purple);
    border: 2px solid var(--bg-dark-purple);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gold);
}

/* Scroll Selection color */
::selection {
    background-color: var(--primary-purple);
    color: var(--accent-gold);
}

/* Custom Gradients */
.gradient-purple-bg {
    background: linear-gradient(135deg, var(--bg-dark-purple) 0%, var(--primary-purple-dark) 50%, var(--primary-purple) 100%);
    color: var(--text-light);
}

.gradient-text-gold-white {
    background: linear-gradient(90deg, var(--accent-gold) 0%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-solid-gold {
    color: #fbd341;
    /* Matches the solid yellow/gold from the image */
}

.gradient-text-purple {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-solid-purple {
    color: var(--primary-purple);
}

/* Navigation bar styling */
.navbar-custom {
    background: #242461;
    /* Solid premium deep navy-purple from mockup */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle white border line */
    transition: var(--transition-smooth);
    padding: 10px 0;
    /* Compact padding */
}

.navbar-custom.navbar-scrolled {
    padding: 6px 0;
    /* Extremely compact padding on scroll */
    box-shadow: 0 8px 25px rgba(11, 10, 32, 0.25);
    background: rgba(36, 36, 97, 0.96);
    /* Frosted deep navy-purple glassmorphism on scroll */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 228, 168, 0.12);
    /* Subtle gold border line */
}

.navbar-brand img {
    height: 46px;
    /* Logo height at top (large enough to read clearly) */
    width: auto;
    transition: var(--transition-smooth);
}

.navbar-custom.navbar-scrolled .navbar-brand img {
    height: 40px;
    /* Smaller logo when scrolled to minimize navbar height */
}

.navbar-custom .nav-link {
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.9);
    /* Brighter high-contrast white text */
    font-weight: 500;
    font-size: 15px;
    padding: 8px 16px !important;
    transition: var(--transition-smooth);
    position: relative;
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--accent-gold) !important;
}

.navbar-custom .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    right: 16px;
    height: 2px;
    background-color: var(--accent-gold);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: right;
}

.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar-custom .dropdown-menu {
    background: rgba(30, 30, 82, 0.98);
    /* Matching deep navy-purple dropdown */
    border: 1px solid rgba(255, 228, 168, 0.15);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    padding: 10px;
    margin-top: 10px;
}

.navbar-custom .dropdown-item {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition-smooth);
}

.navbar-custom .dropdown-item:hover {
    background-color: rgba(54, 52, 142, 0.5);
    color: var(--accent-gold);
    transform: translateX(5px);
}

/* Enable hover on desktop */
@media (min-width: 992px) {
    .navbar-custom .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        /* Removes gap to prevent hover drop-off */
    }
}

/* Custom Buttons */
.btn-gold {
    background-color: var(--accent-gold);
    color: var(--bg-dark-purple);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 5px 19px;
    border-radius: 30px;
    border: 2px solid var(--accent-gold);
    transition: var(--transition-smooth);
    box-shadow: var(--glow-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 228, 168, 0.2);
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
}

.btn-purple {
    background-color: var(--primary-purple);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid var(--primary-purple);
    transition: var(--transition-smooth);
    box-shadow: var(--glow-purple);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-purple:hover {
    background-color: var(--primary-purple-light);
    border-color: var(--primary-purple-light);
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-outline-purple {
    background-color: transparent;
    color: var(--primary-purple);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 30px;
    border: 2px solid var(--primary-purple);
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-purple:hover {
    background-color: var(--primary-purple);
    color: #ffffff;
    transform: translateY(-3px);
}

/* Floating animated background blobs in Hero */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.shape-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    animation: float-blob 15s infinite alternate ease-in-out;
}

.shape-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: var(--primary-purple);
    animation-delay: 0s;
}

.shape-2 {
    bottom: 15%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: var(--primary-purple-light);
    animation-delay: 3s;
}

.shape-3 {
    top: 40%;
    left: 50%;
    width: 250px;
    height: 250px;
    background: var(--accent-gold);
    opacity: 0.15;
    animation-delay: 6s;
}

@keyframes float-blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.15);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    padding-top: 100px;
    padding-bottom: 122px;
    overflow: hidden;
    background-image: url('/assets/images/herobg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.85);
    /* Dark slate/black overlay instead of purple */
    z-index: 1;
}

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

.hero-visual-grid {
    position: relative;
    z-index: 5;
}

/* Interactive Visual cards grid inside Hero representing categories */
.visual-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@keyframes rotate-border {
    100% {
        transform: rotate(360deg);
    }
}

.visual-grid-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 16px;
    height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* The spinning laser gradient */
.visual-grid-card::before {
    content: '';
    position: absolute;
    top: -150%;
    left: -50%;
    width: 200%;
    height: 400%;
    background: conic-gradient(from 90deg at 50% 50%,
            transparent 0%,
            rgba(111, 66, 193, 0.3) 20%,
            #fbd341 50%,
            rgba(111, 66, 193, 0.3) 80%,
            transparent 100%);
    animation: rotate-border 4s linear infinite;
    z-index: -2;
}

/* The inner card (glass layer) masking the inside */
.visual-grid-card::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 14px;
    background: rgba(30, 30, 70, 0.7);
    /* Deep dark purple glass */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: -1;
    transition: background 0.4s ease;
}

.visual-grid-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 45px rgba(251, 211, 65, 0.15);
}

.visual-grid-card:hover::before {
    animation-duration: 2s;
    /* Speed up on hover */
    background: conic-gradient(from 90deg at 50% 50%,
            transparent 0%,
            rgba(251, 211, 65, 0.3) 20%,
            #fbd341 50%,
            rgba(251, 211, 65, 0.3) 80%,
            transparent 100%);
}

.visual-grid-card:hover::after {
    background: rgba(40, 35, 90, 0.8);
}

.visual-grid-card .icon-box {
    position: relative;
    z-index: 2;
    font-size: 20px;
    color: #f59e0b;
    /* Golden yellow */
    background: rgba(245, 158, 11, 0.15);
    /* Semi-transparent gold background */
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    margin-bottom: 15px;
}

.visual-grid-card .card-info {
    position: relative;
    z-index: 2;
}

.visual-grid-card h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: #ffffff;
    font-weight: 600;
}

.visual-grid-card p {
    font-size: 12px;
    margin: 0;
    color: var(--text-light-muted);
}

/* Offset positioning to create dynamic modern grid feel */
.grid-item-offset {
    margin-top: 30px;
}

/* Floating animation for hero cards */
@keyframes float-up-down {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }

    100% {
        transform: translateY(0);
    }
}

.floating-wrapper {
    animation: float-up-down 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    /* Use will-change for smoother animation */
    will-change: transform;
}

/* Negative delays ensure the animations start immediately but out of sync */
.floating-delay-1 {
    animation-delay: 0s;
}

.floating-delay-2 {
    animation-delay: -1.2s;
}

.floating-delay-3 {
    animation-delay: -2.5s;
}

.floating-delay-4 {
    animation-delay: -3.8s;
}

/* Curve divider shapes between sections */
.section-divider {
    position: relative;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.section-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 50px;
}

.section-divider.divider-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}

.section-divider.divider-top {
    margin-bottom: -1px;
}

.divider-bg-white {
    fill: #ffffff;
}

.divider-bg-purple {
    fill: var(--bg-dark-purple);
}

.divider-bg-light {
    fill: var(--bg-light-purple);
}

/* General Section Setup */
.section-padding {
    /* padding: 60px 0; */
    position: relative;
}

.section-title-wrapper {
    margin-bottom: 35px;
}

.badge-outline {
    border: 1px solid var(--primary-purple);
    color: var(--primary-purple);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.badge-outline-gold {
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
}

.section-title.text-white {
    color: #ffffff !important;
}

/* About Hunarho Section styles */
.about-image-wrapper {
    position: relative;
    padding-bottom: 50px;
    padding-right: 40px;
}

.about-carousel {
    position: relative;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(54, 52, 142, 0.15);
    border: 4px solid #ffffff;
    border-radius: 24px;
}

/* Clip images inside the rounded carousel only */
.about-carousel .carousel-inner {
    border-radius: 20px;
    overflow: hidden;
}

.about-image-main {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    object-fit: cover;
    height: 480px;
    border: none;
    display: block;
}

/* Custom Prev/Next Buttons */
.about-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(54, 52, 142, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.about-carousel-btn:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--bg-dark-purple);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--glow-gold);
}

.about-carousel-prev {
    left: 14px;
}

.about-carousel-next {
    right: 14px;
}

/* Custom Dot Indicators */
.about-carousel-indicators {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.about-carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.about-carousel-indicators button.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    width: 28px;
    border-radius: 5px;
}


.about-image-overlay-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-purple);
    color: #ffffff;
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--glow-purple);
    max-width: 260px;
    border-left: 5px solid var(--accent-gold);
    z-index: 30;
}

.about-focus-badge {
    background: var(--primary-purple);
    color: #ffffff;
    border-radius: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--glow-purple);
    transition: var(--transition-smooth);
    height: 100%;
    border: none;
    border-left: 5px solid var(--accent-gold);
}

.about-focus-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(54, 52, 142, 0.25);
}

.about-focus-badge .focus-icon {
    font-size: 24px;
    color: var(--accent-gold);
    width: 30px;
    height: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-focus-badge h5 {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    color: #ffffff;
}

/* Explore By Category Filter */
.explore-category-wrapper {
    position: relative;
    background: #ffffff;
    border-radius: 20px;
    padding: 30px 20px 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0 auto 50px auto;
    width: 100%;
}

.explore-category-header {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #f8f9fa;
    /* Matches bootstrap .bg-light */
    padding: 0 15px;
    color: #6c757d;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.explore-category-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

@media (max-width: 991px) {
    .explore-category-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
}

@media (max-width: 575px) {
    .explore-category-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}

.category-btn {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 16px;
    padding: 15px 10px;
    min-width: 130px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn span {
    font-size: 13px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.category-btn:hover,
.category-btn.active {
    transform: translateY(-5px);
    border-color: rgba(111, 66, 193, 0.2);
}

.category-btn.active span {
    color: var(--primary-purple);
}

.icon-box-3d {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-purple);
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.1), rgba(111, 66, 193, 0.05));
    transition: all 0.3s ease;
}

.category-btn:hover .icon-box-3d,
.category-btn.active .icon-box-3d {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.2), rgba(111, 66, 193, 0.1));
    transform: scale(1.05);
}

.icon-learning {
    color: #3b82f6;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
}

.icon-innovation {
    color: #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(139, 92, 246, 0.05));
}

.icon-saas {
    color: #ec4899;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05));
}

.icon-university {
    color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
}

.icon-all {
    color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1), rgba(99, 102, 241, 0.05));
}

/* Animation and alignment for filtering */
.solutions-grid {
    justify-content: center;
}

.solutions-swiper .swiper-wrapper {
    align-items: stretch;
}

.solution-card-container {
    transition: opacity 0.4s ease, transform 0.4s ease;
    height: auto !important;
    display: flex;
}

.solution-card-container.hide {
    display: none;
}

.solution-card-container.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

.solution-card-container.fade-in {
    opacity: 1;
    transform: scale(1);
}

/* Solutions & SaaS Tabs and Custom Cards */
.nav-pills-custom {
    background: rgba(54, 52, 142, 0.05);
    padding: 6px;
    border-radius: 40px;
    display: inline-flex;
    margin-bottom: 40px;
}

.nav-pills-custom .nav-link {
    border-radius: 35px;
    color: var(--text-dark);
    font-weight: 600;
    padding: 10px 24px;
    font-family: var(--font-heading);
    font-size: 15px;
    transition: var(--transition-smooth);
}

.nav-pills-custom .nav-link.active {
    background-color: var(--primary-purple);
    color: #ffffff;
    box-shadow: var(--glow-purple);
}

/* Modern solution cards */
.solution-card {
    background: #ffffff;
    border: 1px solid #eae8f5;
    width: 100%;
    border-radius: 20px;
    padding: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(54, 52, 142, 0.05);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;

}

.solution-card-image {
    width: 100%;
    height: 180px;
    position: relative;
    padding: 10px 10px 0 10px;
}

.solution-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.solution-card:hover .solution-card-image img {
    transform: scale(1.06);
}

.solution-card-body {
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}



.solution-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(54, 52, 142, 0.08);
    border-color: #eae8f5;
}

.solution-card .solution-header {
    margin-bottom: 0;
    position: relative;
}

/* Horizontal Header Layout matching the user's screenshot */
.solution-header-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 0;
}

/* Solution icon circle with soft lavender base wash */
.solution-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: rgba(76, 73, 182, 0.08);
    color: var(--primary-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.solution-card:hover .solution-icon-wrapper {
    background-color: var(--primary-purple);
    color: #ffffff;
    transform: scale(1.05);
}

.solution-title-block {
    display: flex;
    flex-direction: column;
}

.solution-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px 0;
    color: #1a202c;
    line-height: 1.4;
}

.solution-card .sub-title {
    font-size: 12.5px;
    color: #718096;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
}

/* Floating Icon */
.card-floating-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Arrow Button */
.card-arrow-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-top: 15px;
    transition: transform 0.3s ease;
    font-size: 11px;
}

.solution-card:hover .card-arrow-btn {
    transform: translateX(4px);
}

/* Themes */
.card-theme-purple .card-floating-icon {
    background-color: #6b46c1;
}

.card-theme-purple .card-arrow-btn {
    background-color: rgba(107, 70, 193, 0.1);
    color: #6b46c1;
}

.card-theme-green .card-floating-icon {
    background-color: #38a169;
}

.card-theme-green .card-arrow-btn {
    background-color: rgba(56, 161, 105, 0.1);
    color: #38a169;
}

.card-theme-orange .card-floating-icon {
    background-color: #ed8936;
}

.card-theme-orange .card-arrow-btn {
    background-color: rgba(237, 137, 54, 0.1);
    color: #ed8936;
}

.card-theme-blue .card-floating-icon {
    background-color: #3182ce;
}

.card-theme-blue .card-arrow-btn {
    background-color: rgba(49, 130, 206, 0.1);
    color: #3182ce;
}

/* Horizontal features pills styling */
.card-features-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 20px 0;
    padding: 0;
    list-style: none;
}

.card-features-pills li {
    font-size: 12.5px;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 20px;
    transition: var(--transition-smooth);
    background-color: #f6f5fb;
    color: var(--primary-purple);
}

.card-features-pills li:hover {
    background-color: var(--primary-purple);
    color: #ffffff;
}

/* Yellow target audience badges styling */
.card-target-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
    /* Pin target pills to the bottom of the card */
}

.target-pill {
    font-size: 11.5px;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
    background-color: rgba(54, 52, 142, 0.05);
    color: var(--primary-purple-light);
}

.target-pill:hover {
    background-color: rgba(54, 52, 142, 0.1);
}

/* SaaS Product styling variant */
.saas-card {
    background: var(--bg-card-dark);
    /* Dark card background */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--accent-gold);
    /* Gold left accent border stripe */
    color: #ffffff;
}

.saas-card .solution-card-image {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


.saas-card::after {
    background: var(--primary-purple-light);
}

.saas-card h3 {
    color: #ffffff;
}

.saas-card .sub-title {
    color: var(--accent-gold);
}

.saas-card .solution-icon-wrapper {
    background-color: rgba(255, 228, 168, 0.15);
    color: var(--accent-gold);
}

.saas-card:hover .solution-icon-wrapper {
    background-color: var(--accent-gold);
    color: var(--primary-purple-dark);
}

.saas-card .features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.saas-card .features-list li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
    font-size: 13.5px;
    color: var(--text-light-muted);
}

.saas-card .features-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent-gold);
    font-size: 12px;
}

.saas-card .target-audience {
    background: rgba(255, 228, 168, 0.1);
    padding: 6px 14px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    /* Pin target audience to the bottom of the card */
}

.saas-card:hover {
    box-shadow: 0 15px 35px rgba(255, 228, 168, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}





/* Why Choose Us & Impact Sections - Custom Mockup Layout */

/* 1. Dark Purple Grid Section (Why Choose Us) */
.why-choose-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    height: 100%;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.why-choose-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    font-size: 18px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.why-choose-card:hover .why-choose-icon {
    background: var(--accent-gold);
    color: var(--primary-purple);
    transform: scale(1.05);
}

.why-choose-card h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-choose-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
}

/* 2. Light Lavender Section (Our Impact Stats) */
.impact-stat-card {
    border-radius: 16px;
    padding: 20px 15px;
    height: 100%;
    transition: var(--transition-smooth);
}

/* Odd cards: Lavender/Purple theme (Cards 1 and 3) */
#our-impact .row.g-3>div:nth-child(odd) .impact-stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #f0effb 100%);
    border: 1px solid rgba(54, 52, 142, 0.12);
    box-shadow: 0 10px 30px rgba(54, 52, 142, 0.03);
}

#our-impact .row.g-3>div:nth-child(odd) .impact-stat-card .impact-stat-number {
    color: var(--primary-purple);
}

#our-impact .row.g-3>div:nth-child(odd) .impact-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(54, 52, 142, 0.08);
    border-color: var(--primary-purple);
}

/* Even cards: Gold/Yellow theme (Cards 2 and 4) */
#our-impact .row.g-3>div:nth-child(even) .impact-stat-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff8e7 100%);
    border: 1px solid rgba(130, 98, 23, 0.18);
    box-shadow: 0 10px 30px rgba(130, 98, 23, 0.03);
}

#our-impact .row.g-3>div:nth-child(even) .impact-stat-card .impact-stat-number {
    color: #826217;
}

#our-impact .row.g-3>div:nth-child(even) .impact-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(130, 98, 23, 0.08);
    border-color: #826217;
}

.impact-stat-number {
    font-family: var(--font-heading);
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 4px;
    transition: var(--transition-smooth);
}

.impact-stat-label {
    font-size: 11.5px;
    font-weight: 600;
    color: #6b6980;
    letter-spacing: 0.5px;
}

/* Testimonials Deck Styling */
.testimonials-section {
    background-color: #ffffff;
    /* Matches screenshot background */
}

.testimonial-card-v2 {
    background-color: #f0effb;
    /* soft purple tint background */
    border-radius: 20px;
    padding: 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(54, 52, 142, 0.02);
}

.testimonial-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(54, 52, 142, 0.08);
}

.testimonial-text-wrapper {
    position: relative;
    padding-right: 20px;
}

.testimonial-quote-v2 {
    position: absolute;
    top: 5px;
    right: 0px;
    font-size: 36px;
    color: #cbcaee;
    /* light purple quotes */
    line-height: 1;
    pointer-events: none;
}

.testimonial-card-v2 p {
    font-size: 14.5px;
    font-style: italic;
    color: #2b294e;
    line-height: 1.65;
    margin-bottom: 25px;
    font-weight: 400;
}

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

.testimonial-avatar-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--primary-purple);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    font-family: var(--font-heading);
}

.testimonial-meta-v2 h5 {
    font-size: 15px;
    font-weight: 700;
    color: #2b294e;
    margin: 0 0 2px 0;
}

.testimonial-meta-v2 span {
    font-size: 12px;
    color: #6a688a;
    display: block;
}



/* Compact CTA Banner */
.cta-banner-compact {
    background: linear-gradient(135deg, var(--bg-dark-purple) 0%, var(--primary-purple-dark) 50%, var(--bg-dark-purple) 100%);
    background-size: 200% 200%;
    animation: gradient-shift 10s ease infinite;
    border-radius: 20px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(11, 10, 32, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
}

.cta-banner-compact:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(11, 10, 32, 0.6), var(--glow-purple);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Interactive Floating Shapes */
.cta-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    z-index: 1;
    opacity: 0.5;
    animation: float-shape 15s infinite ease-in-out alternate;
}

.cta-shape-1 {
    width: 250px;
    height: 250px;
    background: rgba(255, 42, 109, 0.4);
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.cta-shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(255, 126, 95, 0.3);
    bottom: -100px;
    right: 30%;
    animation-delay: -5s;
}

.cta-shape-3 {
    width: 150px;
    height: 150px;
    background: rgba(54, 52, 142, 0.6);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float-shape {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(30px, -30px) scale(1.1);
    }

    100% {
        transform: translate(-20px, 40px) scale(0.9);
    }
}

.cta-badge {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #e2e8f0;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(10px);
}

.pulse-glow {
    animation: pulse-glow-anim 2s infinite;
}

@keyframes pulse-glow-anim {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

.cta-badge i {
    color: #fbd341;
}

.cta-title {
    font-size: 48px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.text-gradient-theme {
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-cta-theme {
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-gold-dark) 100%);
    background-size: 200% auto;
    color: var(--primary-purple-dark);
    border: none;
    font-weight: 700;
    border-radius: 30px;
    transition: var(--transition-smooth);
    box-shadow: var(--glow-gold);
}

.btn-cta-theme:hover {
    color: var(--primary-purple-dark);
    background-position: right center;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 228, 168, 0.5);
}

.btn-outline-white-muted {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #e2e8f0;
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition-smooth);
}

.btn-outline-white-muted:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.cta-right-img {
    max-width: 140%;
    margin-right: -20%;
    margin-top: -10%;
    position: relative;
    z-index: 2;
    transform: translateY(0);
    animation: float-book 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
}

@keyframes float-book {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* Footer layout */
.footer-custom {
    background: rgba(36, 36, 97, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-light-muted);
    padding: 37px 0 30px 0;
}

.footer-custom h5 {
    color: #ffffff;
    font-weight: 400 !important;
    font-size: 16px;
    margin-top: 0;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-custom h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-gold);
}

a.text-decoration-none.text-light-muted {
    color: #f1e2d6 !important;
    font-weight: 300 !important;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: 15px;
}

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

.footer-links a {
    color: var(--text-light-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}

.footer-socials {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-socials a:hover {
    background: var(--primary-purple);
    color: var(--accent-gold);
    transform: translateY(-3px);
    border-color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 30px;
    padding-top: 30px;
    font-size: 14px;
}

/* Scroll Animation classes (Disabled) */
.animate-reveal {
    opacity: 1;
    transform: none;
    transition: none;
}

.animate-reveal.reveal-left {
    transform: none;
}

.animate-reveal.reveal-right {
    transform: none;
}

.animate-reveal.reveal-scale {
    transform: none;
}

.animate-reveal.revealed {
    opacity: 1;
    transform: none;
}


/* Contact / Demo Modals Styling */
.modal-content-custom {
    background-color: var(--bg-card-dark);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 24px;
}

.modal-content-custom .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-content-custom .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.modal-content-custom .form-control,
.modal-content-custom .form-select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 10px;
    padding: 12px;
}

.modal-content-custom .form-control:focus,
.modal-content-custom .form-select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-gold);
    box-shadow: 0 0 10px rgba(255, 228, 168, 0.2);
    color: #ffffff;
}

.modal-content-custom label {
    font-size: 14px;
    color: var(--text-light-muted);
    margin-bottom: 8px;
}

/* Responsive fixes */
@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 90px;
        /* Reduced from 130px */
        padding-bottom: 60px;
    }

    .about-image-overlay-card {
        position: relative;
        bottom: 0;
        right: 0;
        margin: 20px auto 0 auto;
        max-width: 100%;
    }

    .about-image-main {
        height: 320px;
    }

    .visual-grid-container {
        margin-top: 40px;
    }
}

/* Solutions Section Header Redesign styles */
.badge-outline-pill {
    border: 1px solid rgba(54, 52, 142, 0.15);
    background-color: rgba(54, 52, 142, 0.04);
    color: var(--primary-purple);
    font-size: 11px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 30px;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.section-title-split {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
}

.btn-purple-gradient {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    border: none;
    border-radius: 14px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(54, 52, 142, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-purple-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(54, 52, 142, 0.35);
}

.btn-outline-demo {
    background-color: #ffffff;
    border: 1px solid #eae8f5;
    color: var(--text-dark) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    border-radius: 14px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-demo:hover {
    background-color: #f6f5fb;
    border-color: rgba(54, 52, 142, 0.15);
    transform: translateY(-2px);
}

.solutions-header-illustration {
    transition: var(--transition-smooth);
    /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); */
    animation: floatAnimation 6s ease-in-out infinite;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (max-width: 991.98px) {
    .section-title-split {
        font-size: 32px;
        font-weight: 800;
        color: var(--text-dark);
        line-height: 1.2;
    }
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary-purple);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--glow-purple);
    border: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 9999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--accent-gold);
    color: var(--bg-dark-purple);
    transform: translateY(-3px);
}

/* Swiper Carousel Styling */
.solutions-swiper .swiper-pagination-bullet {
    background-color: rgba(54, 52, 142, 0.4);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: all 0.3s ease;
}

.solutions-swiper .swiper-pagination-bullet-active {
    background-color: var(--primary-purple);
    width: 25px;
    border-radius: 5px;
}

/* Trust Bar */
.trust-bar-container {
    background-color: #ffffff;
    border: 1px solid #eae8f5;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(54, 52, 142, 0.05);
    padding: 10px;
}

.trust-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

@media (min-width: 992px) {
    .trust-item:not(.border-none) {
        border-right: 1px solid #eae8f5;
    }
}

.trust-icon {
    font-size: 28px;
    margin-right: 15px;
}

.trust-content {
    display: flex;
    flex-direction: column;
}

.trust-title {
    font-size: 14px;
    font-weight: 700;
    color: #1a202c;
    margin: 0 0 4px 0;
}

.trust-desc {
    font-size: 12px;
    color: #718096;
    margin: 0;
    line-height: 1.3;
}

/* Trust Theme Colors */
.text-theme-blue {
    color: #3182ce;
}

.text-theme-purple {
    color: #6b46c1;
}

/* Helper classes replacing inline styles */
@keyframes text-color-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hero-heading-title {
    line-height: 1.2;
    letter-spacing: -0.5px;
    font-size: 40px !important;

    background: linear-gradient(270deg, #ffffff, #fbd341, #c4b5fd, #ffffff, #fbd341);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-color-shift 8s ease infinite;
}

.hero-subtitle-text {
    font-size: 17px;
    line-height: 1.65;
}

.about-lead-text,
.solutions-header-text {
    line-height: 1.7;
    font-size: 16px;
}

.about-sub-text {
    line-height: 1.7;
    font-size: 15px;
}

.rotated-bg {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotate(180deg);
}

.btn-custom-size {
    font-size: 15px;
}

.solutions-header-img {
    max-height: 360px;
    object-fit: contain;
}

.section-padding-custom {
    padding: 50px 0;
    position: relative;
}

.section-badge-small {
    font-size: 13px;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 10px;
}

.section-title-md {
    font-size: 32px !important;
}

.text-accent-gold {
    color: var(--accent-gold);
}

.section-padding-sm {
    background-color: var(--bg-light-purple);
    padding: 40px 0;
}

.section-title-lg {
    color: var(--primary-purple);
    font-size: 32px !important;
    margin-bottom: 0;
}

.section-title-xl {
    color: var(--primary-purple);
    font-size: 32px !important;
    margin-bottom: 0;
}

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

.shape-left {
    width: 150px;
    height: 150px;
    left: 5%;
}

.shape-right {
    width: 200px;
    height: 200px;
    right: 5%;
}

/* Ensure all section titles are exactly the same size */
.section-title,
.section-title-split,
.section-title-md,
.section-title-lg,
.section-title-xl {
    font-size: 32px !important;
}

/* Testimonial Marquee Styles */
.testimonial-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 20px 0;
}

.testimonial-marquee-content {
    display: flex;
    gap: 24px;
    animation: scroll-left 40s linear infinite;
    white-space: nowrap;
}

.testimonial-marquee-content:hover {
    animation-play-state: paused;
}

.testimonial-marquee-content .testimonial-card-v2 {
    flex-shrink: 0;
    width: 400px;
    white-space: normal;
    height: 100%;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 12px));
    }
}

/* Structured Course Cards */
.section-structured-bg {
    background-color: #f7fbff;
    position: relative;
    overflow: hidden;
}

/* =============================================
   SPLIT COURSE CARDS (Reference Image Design)
   ============================================= */
.section-courses-bg {
    background: radial-gradient(circle at 10% 20%, rgba(54, 52, 142, 0.05), transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(249, 192, 21, 0.08), transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f4f6fb 100%);
    position: relative;
}

.course-split-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 220px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

.card-cream {
    background-color: #fef6ed;
}



.card-cream .csc-content {
    position: relative;
    z-index: 2;
}

.card-cream .csc-deco {
    z-index: 1;
}

.card-skyblue {
    background-color: #edf3ff;
}



.card-skyblue .csc-content {
    position: relative;
    z-index: 2;
}

.card-skyblue .csc-deco {
    z-index: 1;
}

/* Decorative elements */
.csc-deco {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.csc-deco-sun {
    top: 18px;
    right: 48%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, #ffd15c 0%, #ff9d00 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(255, 193, 7, 0.15);
}

.csc-deco-circle {
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border: 3px solid rgba(255, 140, 0, 0.15);
    border-radius: 50%;
}

.csc-deco-dots {
    top: 10px;
    right: 48%;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(circle, var(--primary-purple) 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    opacity: 0.25;
}

.csc-deco-book {
    top: 16px;
    right: 30%;
    font-size: 42px;
    color: var(--primary-purple);
    opacity: 0.12;
    line-height: 1;
}

/* Left content pane */
.csc-content {
    flex: 0 0 100%;
    padding: 1.1rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Tags */
.csc-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 20px;
    white-space: nowrap;
}

.tag-peach {
    background: rgba(255, 140, 0, 0.12);
    color: #d06200;
    border: 1.5px solid rgba(255, 140, 0, 0.25);
}

.tag-blue-light {
    background: rgba(54, 52, 142, 0.1);
    color: var(--primary-purple);
    border: 1.5px solid rgba(54, 52, 142, 0.2);
}

.tag-dark-navy {
    background: #1e1c4a;
    color: #fff;
}

/* Title & subtitle */
.csc-title {
    font-size: 18px;
    font-weight: 800;
    color: #141226;
    line-height: 1.2;
    margin-bottom: 2px;
}

.csc-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-purple);
    line-height: 1.4;
    margin-bottom: 0;
}

/* Meta pills */
.csc-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin: 8px 0;
}

.csc-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 600;
    color: #555;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 3px 9px;
    border-radius: 6px;
}

/* Label */
.csc-label {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 6px;
}

/* Skills */
.csc-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-height: 62px;
    overflow: hidden;
}

.csc-skills span {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 3px 9px;
    border-radius: 6px;
}

/* CTA Button */
.csc-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #1e1c4a;
    color: #fff !important;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 9px;
    border: none;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
    margin-top: auto;
}

.csc-btn:hover {
    background: var(--primary-purple);
    transform: translateY(-2px);
}

/* Right image pane */
.csc-image-wrap {
    flex: 1;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

.csc-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.course-split-card:hover .csc-image {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .course-split-card {
        flex-direction: column;
        min-height: unset;
    }

    .csc-content {
        flex: unset;
        padding: 1.5rem;
    }

    .csc-image-wrap {
        min-height: 220px;
    }

    .csc-deco-sun,
    .csc-deco-dots,
    .csc-deco-book {
        right: 10px;
    }
}


.structured-badge-main {
    background-color: var(--accent-gold);
    color: var(--primary-purple);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
}

.structured-title {
    font-weight: 800;
    color: #1a2340;
    line-height: 1.2;
    margin-top: 15px;
}

.structured-subtitle {
    font-size: 18px;
    color: #64748b;
}

.text-purple {
    color: var(--primary-purple);
}

.structured-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.structured-card.back-gold {
    background-color: #fffdf7;
    border-color: #fce8b3;
}

.structured-card.back-purple {
    background-color: var(--bg-light-purple);
    border-color: #e6e5f7;
}

.structured-card-top {
    padding: 1.8rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.structured-card-bottom {
    padding: 1.8rem;
    border-radius: 0 0 20px 20px;
}

.structured-tag {
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.tag-yellow {
    background-color: #fff8e1;
    color: #ffb300;
}

.tag-blue {
    background-color: #e5f0ff;
    color: #2a5aff;
}

.tag-dark {
    background-color: #1a2340;
    color: #ffffff;
}

.structured-bookmark {
    font-size: 24px;
    color: #94a3b8;
    cursor: pointer;
    transition: color 0.3s;
}

.structured-bookmark:hover {
    color: #1a2340;
}

.structured-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.icon-yellow {
    background-color: #fff8e1;
    color: #ffb300;
}

.icon-blue {
    background-color: #e5f0ff;
    color: #2a5aff;
}

.structured-course-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a2340;
    margin-bottom: 5px;
}

.structured-course-subtitle {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0;
}

.structured-meta {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.structured-meta span {
    font-size: 13px;
    font-weight: 600;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #f1f5f9;
    padding: 6px 12px;
    border-radius: 6px;
}

.structured-section-label {
    font-size: 12px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.structured-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.structured-skills span {
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
}

.skills-yellow span {
    background-color: #fffcf2;
    color: #b78a1f;
}

.skills-blue span {
    background-color: #f0f7ff;
    color: #3b82f6;
}

.structured-btn {
    padding: 12px 28px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    color: #ffffff !important;
    border: none;
    transition: transform 0.3s;
}

.structured-btn:hover {
    transform: translateY(-2px);
}

.btn-yellow {
    background: linear-gradient(90deg, #ffb300, #ff8f00);
}

.btn-blue {
    background: linear-gradient(90deg, #4b6bfb, #2a5aff);
}

.structured-students {
    display: flex;
    align-items: center;
    gap: 10px;
}

.avatar-group {
    display: flex;
}

.avatar-group img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-right: -10px;
    object-fit: cover;
}

.students-text {
    display: flex;
    flex-direction: column;
    margin-left: 10px;
}

.students-text strong {
    font-size: 16px;
    color: #1a2340;
    line-height: 1;
}

.students-text small {
    font-size: 12px;
    color: #64748b;
}

/* Flip Card Animation */
.flip-card-container {
    perspective: 1500px;
    height: 100%;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card-container:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    border-radius: 20px;
}

.flip-card-front {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1f5f9;
    z-index: 2;
    overflow: hidden;
}

.flip-card-front img {
    transition: transform 0.6s ease;
}

.flip-card-container:hover .flip-card-front img {
    transform: scale(1.1);
}

.flip-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.flip-card-back {
    position: relative;
    transform: rotateY(180deg);
}

@media (max-width: 768px) {
    .structured-title {
        font-size: 28px;
    }

    .structured-card-top,
    .structured-card-bottom {
        padding: 1.5rem;
    }
}

/* Organic & Vibrant Styles */
.organic-hero {
    padding: 120px 0 60px;
    background: #ffffff;
    background-image: radial-gradient(#e5e7eb 1px, transparent 1px);
    background-size: 20px 20px;
}

.organic-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 20px;
}

.organic-subtitle {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-pill-teal {
    background: #1e7a82;
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.btn-pill-teal:hover {
    background: #14595e;
    color: #fff;
    transform: translateY(-2px);
}

.btn-pill-orange {
    background: #ff8c00;
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
}

.btn-pill-orange:hover {
    background: #e07b00;
    color: #fff;
    transform: translateY(-2px);
}

.custom-shape-divider-bottom-hero {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.custom-shape-divider-bottom-hero svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.shape-fill-teal {
    fill: #1e7a82;
}

.shape-fill-navy {
    fill: #1a2b4c;
}

.shape-fill-green {
    fill: #8dc153;
}

.shape-fill-white {
    fill: #ffffff;
}

.custom-shape-divider-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.custom-shape-divider-bottom svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.organic-features-wrapper {
    overflow: hidden;
    background: #ffffff;
}

.glowing-snake-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
    opacity: 0.8;
}

.glowing-snake {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 10px rgba(52, 211, 153, 0.8));
}

.wave-block {
    padding: 60px 0;
}

.wave-block-teal {
    background: #1e7a82;
}

.wave-block-navy {
    background: #1a2b4c;
}

.wave-block-green {
    background: #8dc153;
}

.organic-row {
    margin-bottom: 40px;
}

.organic-row.reverse {
    flex-direction: row-reverse;
}

.organic-feature-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.organic-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.organic-feature-list li {
    font-size: 18px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff8c00;
}

.dot-yellow {
    background: #fcd34d;
}

.overlap-img-right {
    transform: translateX(40px) scale(1.1);
    position: relative;
    z-index: 10;
    border-radius: 12px;
}

.overlap-img-left {
    transform: translateX(-40px) scale(1.1);
    position: relative;
    z-index: 10;
    border-radius: 12px;
}

.organic-section-title {
    font-size: 36px;
    font-weight: 800;
    color: #111827;
}

.snake-flow-container {
    max-width: 900px;
    margin: 0 auto;
}

.snake-dashed-line {
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed #9ca3af;
    z-index: 1;
}

.snake-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;
    margin: 0 auto 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.node-teal {
    background: #1e7a82;
}

.node-navy {
    background: #1a2b4c;
}

.node-green {
    background: #8dc153;
}

.node-orange {
    background: #ff8c00;
}

.node-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
}

.node-desc {
    font-size: 12px;
    color: #6b7280;
}

.offset-card {
    position: relative;
    border-radius: 16px;
    padding: 0;
    margin-bottom: 20px;
}

.offset-card::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    z-index: 0;
}

.offset-orange::before {
    background: #ff8c00;
}

.offset-teal::before {
    background: #1e7a82;
}

.offset-green::before {
    background: #8dc153;
}

.card-inner {
    background: #fff;
    padding: 40px 30px;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    border: 1px solid #e5e7eb;
    text-align: center;
    height: 100%;
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.text-orange {
    color: #ff8c00;
}

.text-teal {
    color: #1e7a82;
}

.text-green {
    color: #8dc153;
}

.card-inner h4 {
    font-weight: 800;
    color: #111827;
    margin-bottom: 15px;
}

.card-inner p {
    color: #4b5563;
    font-size: 15px;
    margin: 0;
}

.testimonial-solid {
    border-radius: 20px;
    padding: 50px 30px 30px;
    text-align: center;
    color: #fff;
    position: relative;
    margin-top: 30px;
}

.t-teal {
    background: #1e7a82;
}

.t-navy {
    background: #1a2b4c;
}

.t-green {
    background: #8dc153;
}

.t-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
    background: #fff;
}

.testimonial-solid h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.t-role {
    display: block;
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.testimonial-solid p {
    font-size: 14px;
    font-style: italic;
    margin-bottom: 20px;
}

.stars {
    color: #fcd34d;
    font-size: 12px;
}

.cta-rounded-banner {
    background: linear-gradient(135deg, #ff8c00 0%, #1e7a82 100%);
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    color: #fff;
}

.cta-rounded-banner h2 {
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-rounded-banner p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .organic-hero {
        text-align: center;
    }

    .hero-text-col {
        margin-bottom: 40px;
    }

    .overlap-img-right,
    .overlap-img-left {
        transform: translateX(0) scale(1);
        margin-top: 30px;
    }

    .snake-dashed-line {
        display: none;
    }

    .organic-row,
    .organic-row.reverse {
        text-align: center;
    }

    .organic-feature-list li {
        justify-content: center;
    }

    .offset-card::before {
        top: 10px;
        left: -10px;
    }
}

/* --- Global Mobile Responsiveness Updates --- */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content .d-flex {
        justify-content: center;
    }

    .section-title {
        font-size: 28px !important;
    }

    .section-title-split {
        font-size: 26px !important;
    }

    .hero-heading-title {
        font-size: 32px !important;
    }

    .section-padding {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .visual-grid-container {
        grid-template-columns: 1fr;
    }

    .grid-item-offset {
        margin-top: 0;
    }

    .about-image-wrapper {
        padding-right: 0;
    }

    .about-image-main {
        height: auto;
        min-height: 300px;
    }

    .about-image-overlay-card {
        bottom: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
        padding: 15px;
    }

    .explore-category-container {
        grid-template-columns: 1fr 1fr;
    }

    .trust-item {
        border-right: none !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .course-split-card {
        flex-direction: column;
    }

    .navbar-collapse {
        background: var(--bg-dark-purple);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .hero-visual-grid {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .explore-category-container {
        grid-template-columns: 1fr;
    }

    .hero-heading-title {
        font-size: 26px !important;
    }

    .btn-gold,
    .btn-outline-white,
    .btn-purple,
    .btn-outline-purple,
    .btn-purple-gradient,
    .btn-outline-demo {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-content .d-flex {
        flex-direction: row !important;
        width: 100%;
        gap: 10px !important;
    }

    .hero-content .d-flex .btn {
        width: 50% !important;
        margin-bottom: 0 !important;
        padding: 10px 5px !important;
        font-size: 14px !important;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .solutions-header-text+.d-flex {
        flex-direction: column;
        width: 100%;
    }
}