/* ======================================
   GLOBAL STYLES & VARIABLES
   ====================================== */

:root {
    /* Color Palette */
    --dark-blue: #1a2942;
    --dark-blue-light: #2d3e5f;
    --navy: #0f1e3a;
    --light-blue: #e8f1ff;
    --lighter-blue: #f5f9ff;

    --golden: #fbbf24;
    --golden-bright: #fcd34d;
    --golden-dark: #f59e0b;
    --golden-light: #fef3c7;

    --white: #ffffff;
    --off-white: #f8fafc;
    --text-dark: #1e293b;
    --text-gray: #64748b;
    --text-light: #94a3b8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2d3e5f 0%, #1a2942 100%);
    --gradient-golden: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --gradient-light: linear-gradient(135deg, #f5f9ff 0%, #e8f1ff 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-golden: 0 4px 20px rgba(251, 191, 36, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--off-white);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

html {
    scroll-behavior: smooth;
}

/* ======================================
   ANIMATION KEYFRAMES
   ====================================== */

/* Golden Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
    }

    50% {
        box-shadow: 0 0 0 20px rgba(251, 191, 36, 0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes goldGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
    }

    50% {
        box-shadow: 0 0 40px rgba(251, 191, 36, 0.6);
    }
}

@keyframes float-bubble {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

@keyframes expand-divider {
    from {
        width: 0;
    }

    to {
        width: 80px;
    }
}

@keyframes rotate-badge {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes pulse-icon {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes float-logo {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================================
   NAVIGATION BAR
   ====================================== */

.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.logo-img {
    width: auto;
    height: 60px;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.3));
}

.nav-link {
    color: black !important;
    font-weight: 500;
    margin: 0 10px;
    padding: 8px 15px !important;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-golden);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--golden-dark) !important;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.btn-join {
    background: var(--gradient-golden);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-golden);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: inline-block;
}

.btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 28px rgba(251, 191, 36, 0.4);
    color: var(--white);
}

/* ======================================
   MAIN CONTENT AREA
   ====================================== */

.main-content {
    flex: 1;
    padding: 110px 0 0px;
    background: var(--off-white);
}

/* ======================================
   SLIDER SECTION
   ====================================== */

#lbnSlider.lbn-slider-container {
    background: linear-gradient(-45deg, #1a4393, #0c2b5e, #2a5cb8, #3a76dd);
    background-size: 400% 400%;
    animation: lbn-gradientBG 15s ease infinite;
    color: white;
    min-height: 500px;
    border-radius: 15px;
    overflow: hidden;
    margin: 20px auto;
    box-shadow: 0 15px 50px rgba(26, 67, 147, 0.3);
    position: relative;
    max-width: 1400px;
}

/* Animated Gradient Background */
@keyframes lbn-gradientBG {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

#lbnSlider .lbn-carousel-item {
    min-height: 500px;
    padding: 40px 0;
}

/* Content Styling */
#lbnSlider .lbn-content {
    padding: 30px 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#lbnSlider .lbn-subtitle {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0;
    animation: lbn-fadeIn 0.8s ease forwards 0.3s;
}

#lbnSlider .lbn-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Infinite Text Animation Loop */
#lbnSlider .lbn-animated-text {
    display: inline-block;
    position: relative;
}

#lbnSlider .lbn-text-loop {
    font-size: 3.2rem;
    font-weight: 900;
    -webkit-background-clip: text;
    background-clip: text;
    color: var(--golden-dark);
    background-size: 200% auto;
}

/* Text Shine Animation */
@keyframes lbn-textShine {

    0%,
    100% {
        background-position: 0% 50%;
        text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
    }

    50% {
        background-position: 100% 50%;
        text-shadow: 0 0 20px rgba(251, 191, 36, 0.8);
    }
}

/* Typing Text Animation */
#lbnSlider .lbn-typing-text {
    overflow: hidden;
    border-right: 3px solid var(--golden-dark);
    white-space: nowrap;
    margin: 0;
    animation: lbn-typing 2.5s steps(25, end) infinite;
}

@keyframes lbn-typing {
    0% {
        width: 0;
    }

    50% {
        width: 100%;
    }

    90% {
        width: 100%;
    }

    100% {
        width: 0;
    }
}

#lbnSlider .lbn-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    margin: 15px 0 30px;
    opacity: 0;
    animation: lbn-fadeInUp 0.8s ease forwards 0.8s;
}

/* Slider Buttons */
#lbnSlider .lbn-btn {
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    font-size: 1rem;
    opacity: 0;
    animation: lbn-fadeInUp 0.8s ease forwards 1s;
}

#lbnSlider .lbn-btn-primary {
    background: var(--golden-dark);
    color: #0c2b5e;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

#lbnSlider .lbn-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
    color: #0c2b5e;
}

/* Photo Grid Section */
#lbnSlider .lbn-image-section {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 30px;
}

#lbnSlider .lbn-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

#lbnSlider .lbn-photo-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 160px;
    position: relative;
    opacity: 0;
    animation: lbn-fadeIn 0.8s ease forwards 0.8s;
}

#lbnSlider .lbn-photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.3);
}

#lbnSlider .lbn-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#lbnSlider .lbn-photo-item.large {
    grid-column: span 2;
    height: 180px;
}

/* Photo Overlay Effect */
#lbnSlider .lbn-photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(12, 43, 94, 0.8));
    padding: 10px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Floating Badges Container */
#lbnSlider .lbn-badge-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

/* Individual Badges */
#lbnSlider .lbn-badge {
    position: absolute;
    background: linear-gradient(135deg, rgba(12, 43, 94, 0.95), rgba(26, 67, 147, 0.95));
    border-radius: 15px;
    padding: 15px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(10px);
    border: 2px solid var(--golden-dark);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    min-width: 160px;
    pointer-events: auto;
    transition: all 0.3s ease;
    animation-duration: 6s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    z-index: 10;
}

#lbnSlider .lbn-badge:hover {
    transform: scale(1.05);
    border-color: var(--golden-bright);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.5);
}

/* Badge Positions and Animations */
#lbnSlider .lbn-badge-1 {
    top: 20%;
    left: 5%;
    opacity: 0;
    animation: lbn-float1 6s ease-in-out infinite 1s, lbn-fadeIn 0.8s ease forwards 1s;
}

#lbnSlider .lbn-badge-2 {
    top: 15%;
    right: 10%;
    opacity: 0;
    animation: lbn-float2 6s ease-in-out infinite 1.2s, lbn-fadeIn 0.8s ease forwards 1.2s;
}

#lbnSlider .lbn-badge-3 {
    bottom: 25%;
    left: 0;
    opacity: 0;
    animation: lbn-float3 6s ease-in-out infinite 1.4s, lbn-fadeIn 0.8s ease forwards 1.4s;
}

#lbnSlider .lbn-badge-4 {
    bottom: 20%;
    right: 5%;
    opacity: 0;
    animation: lbn-float4 6s ease-in-out infinite 1.6s, lbn-fadeIn 0.8s ease forwards 1.6s;
}

/* Floating Animations for Each Badge */
@keyframes lbn-float1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(-3deg);
    }

    50% {
        transform: translate(-10px, -15px) rotate(2deg);
    }
}

@keyframes lbn-float2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(3deg);
    }

    50% {
        transform: translate(10px, -10px) rotate(-2deg);
    }
}

@keyframes lbn-float3 {

    0%,
    100% {
        transform: translate(0, 0) rotate(-2deg);
    }

    50% {
        transform: translate(-8px, 10px) rotate(3deg);
    }
}

@keyframes lbn-float4 {

    0%,
    100% {
        transform: translate(0, 0) rotate(2deg);
    }

    50% {
        transform: translate(8px, 8px) rotate(-3deg);
    }
}

#lbnSlider .lbn-badge i {
    font-size: 24px;
    color: var(--golden-dark);
    margin-right: 12px;
}

#lbnSlider .lbn-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    line-height: 1.3;
}

/* Common Animations */
@keyframes lbn-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lbn-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Carousel Indicators */
#lbnSlider .carousel-indicators {
    bottom: 20px;
    margin: 0;
}

#lbnSlider .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    margin: 0 6px;
    transition: all 0.3s ease;
}

#lbnSlider .carousel-indicators [data-bs-target].active {
    color: var(--golden-dark);
    transform: scale(1.3);
    box-shadow: 0 0 10px var(--golden-dark);
}

/* ======================================
   ABOUT SECTION
   ====================================== */

.about-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

/* Background Decoration */
.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-bubble 20s ease-in-out infinite;
}

/* Section Header */
.section-header {
    margin-bottom: 60px;
    text-align: center;
    animation: fadeInDown 0.8s ease;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: #f6a813;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
    /* display: inline-block; */
}

.section-subtitle {
    font-size: 1.1rem;
    text-align: center;
    color: #0a1a2f;
    margin-bottom: 20px;
}

/* Title Divider with Golden Gradient */
.title-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-golden);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    animation: expand-divider 1s ease;
}

.title-divider::before,
.title-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--golden);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.title-divider::before {
    left: -15px;
}

.title-divider::after {
    right: -15px;
}

/* About Logo Container */
.about-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: fadeInLeft 1s ease;
}

/* Logo Badge - Decorative Element */
.logo-badge {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 80px;
    height: 80px;
    background: var(--gradient-golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-golden);
    animation: rotate-badge 20s linear infinite;
    z-index: 1;
}

.logo-badge i {
    font-size: 40px;
    color: var(--white);
    animation: pulse-icon 2s ease-in-out infinite;
}

/* About Logo */
.about-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 10px 30px rgba(26, 67, 147, 0.2));
    animation: float-logo 3s ease-in-out infinite;
}

/* Glowing Effect Behind Logo */
.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
    z-index: 0;
}

/* About Content */
.about-content {
    padding: 20px 0;
    animation: fadeInRight 1s ease;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: justify;
    position: relative;
    padding-left: 20px;
}

/* Decorative Line Before Each Paragraph */
.about-text::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 20px;
    background: var(--gradient-golden);
    border-radius: 2px;
}

/* Call to Action Button */
.about-cta {
    margin-top: 30px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: var(--gradient-golden);
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-golden);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Shine Effect on Hover */
.btn-read-more::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-read-more:hover::before {
    left: 100%;
}

.btn-read-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
    color: var(--white);
}

.btn-read-more i {
    transition: transform 0.3s ease;
}

.btn-read-more:hover i {
    transform: translateX(5px);
}

/* ======================================
   WHY CHOOSE LBN SECTION
   ====================================== */

.why-choose-section {
    background: linear-gradient(135deg, #f5f9ff 0%, #e8f1ff 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(251, 191, 36, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(26, 41, 66, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.why-choose-section .section-title {
    color: var(--golden-dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.why-choose-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--golden), transparent);
    animation: shimmer 2s infinite;
}

.why-choose-section .section-subtitle {
    color: var(--text-dark);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.feature-card {
    background: white;
    border-radius: 12px;
    text-align: center !important;
    padding: 2.5rem 2rem;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
    border: 2px solid transparent;
}

.feature-card:nth-child(1) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.6s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.5s;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.3);
    border-color: var(--golden);
}

.icon-circle {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--golden-light) 0%, var(--golden) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    animation: pulse 2s infinite;
}

.icon-circle::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--golden), var(--golden-light));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover .icon-circle {
    transform: rotate(360deg) scale(1.1);
    animation: goldGlow 1.5s infinite;
}

.feature-card:hover .icon-circle::before {
    opacity: 1;
}

.icon-circle i {
    font-size: 2rem;
    color: white;
    transition: transform 0.3s;
}

.feature-card:hover .icon-circle i {
    transform: scale(1.2);
}

.feature-title {
    color: var(--dark-blue);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    transition: color 0.3s;
}

.feature-card:hover .feature-title {
    color: var(--golden);
}

.feature-description {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ======================================
   GROWING NETWORK STATS SECTION
   ====================================== */

.stats-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 50%, var(--navy) 100%);
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: pulse 3s infinite;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    animation: pulse 4s infinite;
}

.stats-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 1;
}

.stats-title .highlight {
    color: var(--golden);
    position: relative;
    display: inline-block;
}

.stats-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--golden), transparent);
    animation: shimmer 2s infinite;
}

.stats-subtitle {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    z-index: 1;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(251, 191, 36, 0.3);
    border-radius: 16px;
    padding: 2.5rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease-out both;
    backdrop-filter: blur(10px);
    z-index: 1;
}

.stat-card:nth-child(1) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.4s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.5s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.6s;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.2), transparent);
    transition: left 0.6s;
}

.stat-card:hover::before {
    left: 100%;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--golden);
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.4);
}

.stat-icon {
    color: var(--golden);
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
    display: inline-block;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotateY(360deg);
    filter: drop-shadow(0 0 20px rgba(251, 191, 36, 0.8));
}

.stat-number {
    color: var(--golden);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
    transition: all 0.3s;
}

.stat-card:hover .stat-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(251, 191, 36, 0.8);
}

.stat-label {
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ======================================
   CALL TO ACTION SECTION
   ====================================== */

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--dark-blue-light) 50%, var(--navy) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-bubble 15s ease-in-out infinite;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float-bubble 20s ease-in-out infinite reverse;
}

.cta-title {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.cta-title span {
    color: var(--golden);
    position: relative;
    display: inline-block;
}

.cta-title span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-golden);
    border-radius: 2px;
}

.cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 35px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    background: var(--gradient-golden);
    border-radius: 50px;
    text-decoration: none;
    box-shadow: var(--shadow-golden);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 2px solid transparent;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.6);
    color: var(--white);
    border-color: var(--golden-bright);
}

.cta-btn i {
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(5px);
}

/* ======================================
   MEMBERS SECTION
   ====================================== */

.members-section {
    padding: 60px 0;
    background: #0a1a2f;
    min-height: 100vh;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #f6a813;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-golden);
    border-radius: 2px;
}

.section-header p {
    color: #ffffff;
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 20px auto 0;
    font-weight: 400;
}

/* ======================================
   MEMBER PROFILE CARDS - COMPACT DESIGN
   ====================================== */

.member-card {
    background: white;
    border-radius: 16px;
    padding: 0;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(226, 232, 240, 0.8);
    height: 100%;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
}

.member-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.12),
        0 8px 25px rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

/* Category Badge - Appears on Hover */
.category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient-golden);
    color: #2d3748;
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(251, 191, 36, 0.3);
    z-index: 20;
    transform: translateX(20px) scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.member-card:hover .category-badge {
    transform: translateX(0) scale(1);
    opacity: 1;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}

.category-badge i {
    font-size: 0.7rem;
}

/* Compact Profile Image Container */
.profile-image-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    margin: 0;
    overflow: hidden;
    background: #f8fafc;
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.05) 30%,
            rgba(0, 0, 0, 0.1) 70%,
            rgba(0, 0, 0, 0.15) 100%);
    z-index: 2;
    pointer-events: none;
}

.profile-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    transition: all 0.5s ease;
    filter: brightness(1.02) contrast(1.02);
    transform-origin: center;
}

.member-card:hover .profile-image {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.05);
}

.image-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            rgba(255, 255, 255, 0.3),
            rgba(255, 255, 255, 0.2),
            transparent);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
    z-index: 3;
    pointer-events: none;
}

.member-card:hover .image-shine {
    left: 100%;
}

/* Compact Card Content */
.card-content {
    padding: 20px 15px;
    position: relative;
}

.member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d3748;
    margin: 0 0 8px;
    line-height: 1.3;
    position: relative;
    display: block;
    padding-bottom: 10px;
}

.member-name::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-golden);
    border-radius: 1px;
    opacity: 0.8;
}

.member-role {
    color: var(--golden-dark);
    font-size: 0.85rem;
    margin-bottom: 12px;
    font-weight: 500;
    letter-spacing: 0.3px;
    line-height: 1.4;
}

.member-description {
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 20px;
    font-weight: 400;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 36px;
}

.member-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    justify-content: center;
}

.btn-profile,
.btn-connect {
    flex: 1;
    max-width: 120px;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-profile {
    background: #f8fafc;
    color: #4a5568;
    border: 1px solid #e2e8f0;
}

.btn-profile:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.btn-connect {
    background: var(--gradient-golden);
    color: #2d3748;
    box-shadow: 0 3px 10px rgba(251, 191, 36, 0.2);
    border: 1px solid transparent;
}

.btn-connect:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

.btn-profile i,
.btn-connect i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.btn-profile:hover i,
.btn-connect:hover i {
    transform: translateX(2px);
}

.social-links {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.social-link {
    width: 36px;
    height: 36px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: var(--gradient-golden);
    color: white;
    border-color: var(--golden);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.25);
}

.social-link i {
    position: relative;
    z-index: 1;
}

/* ================================
   SECTORS SLIDER
================================ */
.sectors-slider {
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.sectors-section {
    padding: 40px 0;
}

/* Track */
.sectors-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll 35s linear infinite;
}

/* Pause animation on hover */
.sectors-slider:hover .sectors-track {
    animation-play-state: paused;
}

/* Infinite animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Badge */
.sector-badge {
    min-width: 160px;
    height: 160px;
    background: linear-gradient(135deg,
            rgba(26, 40, 71, 0.9),
            rgba(10, 22, 40, 0.95));
    border: 2px solid var(--golden);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.sector-badge:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.45);
}

/* Icon */
.sector-badge .icon {
    font-size: 46px;
    line-height: 1;
}

/* Label */
.sector-badge .label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}


/* ======================================
   FOOTER SECTION
   ====================================== */

.footer {
    background: var(--dark-blue);
    position: relative;
    margin-top: auto;
}

.footer-main {
    padding: 80px 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about {
    margin-bottom: 20px;
}

.footer-logo {
    width: 230px;
    height: 50px;
    margin-bottom: 15px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Footer Social Links */
.footer .social-links {
    display: flex;
    gap: 12px;
}

.footer .social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--golden);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--golden-bright);
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer .social-link:hover {
    background: var(--gradient-golden);
    color: var(--white);
    transform: translateY(-5px) rotate(360deg);
    box-shadow: var(--shadow-golden);
}

/* Footer Links */
.footer-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-golden);
    border-radius: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    color: var(--golden-bright);
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: var(--golden-bright);
    padding-left: 10px;
}

.footer-links a:hover i {
    transform: translateX(5px);
}

/* Location Map */
.location-map {
    width: 100%;
    height: 150px;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid rgba(251, 191, 36, 0.3);
}

/* Contact Info */
.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.contact-info i {
    color: var(--golden-bright);
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 25px 0;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}

.copyright-text strong {
    color: var(--golden-bright);
}

.designer-link {
    color: var(--golden-bright);
    text-decoration: none;
    transition: all 0.3s ease;
}

.designer-link:hover {
    color: var(--golden);
    text-decoration: underline;
}

/* Back to Top Button */
.back-to-top {
    width: 50px;
    height: 50px;
    background: var(--gradient-golden);
    color: var(--white);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-golden);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 32px rgba(251, 191, 36, 0.5);
}

/* ======================================
   NAVBAR MOBILE RESPONSIVENESS
   ====================================== */

.navbar-toggler {
    border: 2px solid var(--golden);
    border-radius: 8px;
    padding: 8px 12px;
    background: transparent;
    transition: all 0.3s ease;
    z-index: 1051;
}

.navbar-toggler:hover,
.navbar-toggler:focus {
    background: rgba(251, 191, 36, 0.1);
    border-color: var(--golden-bright);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
    outline: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(251, 191, 36, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

/* Slider Responsive */
@media (max-width: 1200px) {
    #lbnSlider.lbn-slider-container {
        min-height: 480px;
    }

    #lbnSlider .lbn-title {
        font-size: 2.5rem;
    }

    #lbnSlider .lbn-text-loop {
        font-size: 2.7rem;
    }

    #lbnSlider .lbn-photo-grid {
        max-width: 350px;
    }

    #lbnSlider .lbn-photo-item {
        height: 140px;
    }

    #lbnSlider .lbn-photo-item.large {
        height: 160px;
    }
}

@media (max-width: 992px) {

    /* Navbar Mobile Styles */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        margin-top: 15px;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
        border: 2px solid var(--light-blue);
        position: relative;
        z-index: 1050;
    }

    .navbar-nav {
        gap: 5px;
        flex-direction: column;
        width: 100%;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 12px 20px !important;
        border-radius: 8px;
        margin: 0 !important;
        width: 100%;
        text-align: left;
        font-size: 1rem;
        background: transparent;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        min-height: 48px;
    }

    .nav-link:hover,
    .nav-link.active {
        background: linear-gradient(135deg, #f5f9ff 0%, #e8f1ff 100%);
        color: var(--dark-blue) !important;
        transform: translateX(5px);
    }

    .nav-link::before {
        display: none;
    }

    .btn-join {
        width: 100%;
        margin: 15px 0 0 0 !important;
        padding: 14px 30px;
        justify-content: center;
        display: flex;
        align-items: center;
    }

    .navbar {
        z-index: 1050;
        position: fixed;
        width: 100%;
        top: 0;
    }

    .navbar-toggler {
        min-width: 48px;
        min-height: 48px;
    }

    /* Slider Responsive */
    #lbnSlider .lbn-carousel-item {
        min-height: 550px;
        padding: 30px 0;
    }

    #lbnSlider .lbn-title {
        font-size: 2.2rem;
    }

    #lbnSlider .lbn-text-loop {
        font-size: 2.3rem;
    }

    #lbnSlider .lbn-content {
        padding: 20px;
    }

    #lbnSlider .lbn-image-section {
        padding-right: 0;
        margin-top: 30px;
    }

    #lbnSlider .lbn-photo-grid {
        max-width: 300px;
    }

    #lbnSlider .lbn-photo-item {
        height: 120px;
    }

    #lbnSlider .lbn-photo-item.large {
        height: 140px;
    }

    #lbnSlider .lbn-badge {
        min-width: 140px;
        padding: 12px;
    }

    /* About Section Responsive */
    .section-title {
        font-size: 2rem;
    }

    .about-logo {
        max-width: 300px;
    }

    /* Sectors Responsive */
    .sector-badge {
        min-width: 140px;
        height: 140px;
    }

    .sector-badge .icon {
        font-size: 40px;
    }

    /* CTA Responsive */
    .cta-title {
        font-size: 2.2rem;
    }

    .cta-text {
        font-size: 1.05rem;
    }
}

@media (max-width: 768px) {
    .logo-img {
        width: auto;
        height: 60px;
        margin-left: 17px;
    }

    .footer-main {
        padding: 50px 0 30px;
    }

    .text-center.text-md-start,
    .text-center.text-md-end {
        text-align: center !important;
    }

    .back-to-top {
        margin-top: 15px;
    }

    .main-content {
        padding: 110px 0;
    }

    /* Slider Responsive */
    #lbnSlider.lbn-slider-container {
        margin: 10px;
        border-radius: 10px;
    }

    #lbnSlider .lbn-carousel-item {
        min-height: 600px;
        text-align: center;
    }

    #lbnSlider .lbn-title {
        font-size: 1.9rem;
    }

    #lbnSlider .lbn-text-loop {
        font-size: 2rem;
    }

    #lbnSlider .lbn-description {
        font-size: 1rem;
        margin: 10px auto 20px;
    }

    #lbnSlider .lbn-btn {
        padding: 10px 30px;
        font-size: 0.95rem;
    }

    #lbnSlider .lbn-photo-grid {
        max-width: 280px;
        gap: 10px;
    }

    #lbnSlider .lbn-photo-item {
        height: 110px;
    }

    #lbnSlider .lbn-photo-item.large {
        height: 130px;
    }

    #lbnSlider .lbn-badge {
        display: none;
    }

    /* About Section Responsive */
    .about-section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-text {
        font-size: 1rem;
    }

    /* Stats Section Responsive */
    .stats-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .feature-card,
    .stat-card {
        margin-bottom: 1.5rem;
    }

    /* CTA Responsive */
    .cta-section {
        padding: 60px 20px;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }

    .cta-btn {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.5rem;
    }

    .sectors-slider {
        padding: 20px 0;
        overflow-x: auto;
    }

    /* Disable animation on mobile */
    .sectors-track {
        animation: none;
        padding: 0 16px;
    }

    .sector-badge {
        min-width: 120px;
        height: 120px;
        gap: 10px;
    }

    .sector-badge .icon {
        font-size: 32px;
    }

    .sector-badge .label {
        font-size: 12px;
    }

    /* CTA Responsive */
    .cta-title {
        font-size: 1.8rem;
    }

    .cta-btn {
        padding: 12px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .logo-img {
        width: auto;
        height: 60px;
        margin-left: 17px;
    }

    .main-content {
        padding: 110px 0;
    }

    /* Slider Responsive */
    #lbnSlider .lbn-carousel-item {
        min-height: 580px;
        padding: 20px 0;
    }

    #lbnSlider .lbn-title {
        font-size: 1.7rem;
    }

    #lbnSlider .lbn-text-loop {
        font-size: 1.8rem;
    }

    #lbnSlider .lbn-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    #lbnSlider .lbn-description {
        font-size: 0.95rem;
    }

    #lbnSlider .lbn-photo-grid {
        max-width: 250px;
    }

    #lbnSlider .lbn-photo-item {
        height: 100px;
    }

    #lbnSlider .lbn-photo-item.large {
        height: 120px;
    }

    /* About Section Responsive */
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .about-logo {
        max-width: 250px;
    }

    .logo-badge {
        width: 60px;
        height: 60px;
    }

    .logo-badge i {
        font-size: 30px;
    }

    /* CTA Responsive */
    .cta-section {
        padding: 50px 15px;
    }

    .cta-title {
        font-size: 1.6rem;
    }

    .cta-text {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Navbar Collapse Animations */
.navbar-collapse.collapsing {
    transition: height 0.35s ease;
    overflow: hidden;
}

.navbar-collapse.collapse:not(.show) {
    display: none;
}

.navbar-collapse.collapse.show {
    display: block;
    animation: slideDown 0.3s ease-out;
}