:root {
    --primary-orange: #FF5F15;
    --secondary-orange: #FFA802;
    --gradient-primary: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    /* Updated to dark theme background */
    --gradient-secondary: linear-gradient(135deg, #FF4136 0%, #FF5F15 50%, #FFA802 100%);

    --gradient-light: linear-gradient(135deg, #0d163e 0%, #1a2456 100%);
    --bg-dark: #0d163e;
    --text-dark: #ffffff;
    --text-light: rgba(255, 255, 255, 0.85);
    --shadow-light: 0 10px 40px rgba(255, 95, 21, 0.1);
    --shadow-hover: 0 20px 60px rgba(255, 95, 21, 0.2);
    --shadow-primary: 0 20px 40px rgba(255, 95, 21, 0.2);
    --border-orange: rgba(255, 95, 21, 0.3);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif !important;
    line-height: 1.6 !important;
    background: var(--bg-dark);
    color: var(--text-light);
    scroll-behavior: smooth;
    overflow-x: hidden;
}



.container-fluid {
    max-width: 1850px;
}

/* Hero Carousel Container - UPDATED */
.hero-carousel-section {
    position: relative;
    height: 100vh;
    background: radial-gradient(ellipse at top, #1a1f3a 0%, #0a0e27 50%, #050811 100%);
    overflow: hidden;
    padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px);
    margin-top: 1rem;
}

/* Animated Background */
.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 95, 21, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 95, 21, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Floating Particles */
.particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--secondary-orange);
    border-radius: 50%;
    opacity: 0.4;
    animation: particleFloat 15s infinite;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0;
    }

    10% {
        opacity: 0.4;
    }

    90% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) translateX(100px);
        opacity: 0;
    }
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 1.5s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 3.5s;
}

.particle:nth-child(10) {
    left: 15%;
    animation-delay: 4.5s;
}

/* Glowing Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: orbPulse 8s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary-orange);
    top: -200px;
    right: -100px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary-orange);
    bottom: -150px;
    left: -100px;
    animation-delay: 2s;
}

@keyframes orbPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.25;
    }
}


/* Carousel Structure */
.hero-carousel {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}



.carousel-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}


/* Slide Content Layout */


/* Slide Visual - FIXED OVERFLOW */
.slide-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out;
    height: 100%;
    max-height: calc(100vh - 200px);
    overflow: hidden;
    /* Changed from overflow-y: auto */
    width: 100%;
    max-width: 700px;
    padding: 40px 20px;
    align-self: center;
}


.slide-visual::-webkit-scrollbar {
    width: 6px;
}

.slide-visual::-webkit-scrollbar-thumb {
    background: rgba(255, 95, 21, 0.4);
    border-radius: 10px;
}

.slide-visual::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}



/* Slide Text - Consistent Spacing */
.slide-text {
    animation: fadeInLeft 1s ease-out;
    width: 100%;
    max-width: 700px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}


@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 95, 21, 0.1);
    border: 2px solid rgba(255, 95, 21, 0.3);
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary-orange);
    width: fit-content;
}

.slide-badge i {
    font-size: 16px;
}

.slide-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 750;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: slideInLeft 1.2s ease-out 0.3s both;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}


.slide-features {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.slide-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.slide-features i {
    color: var(--secondary-orange);
    font-size: 18px;
}

.slide-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 20px 40px rgba(255, 95, 21, 0.3);
    width: fit-content;
}

.slide-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(255, 95, 21, 0.5);
}

/* Visual Content */
/* .slide-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeInRight 1s ease-out;
        } */

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   SLIDE 1: BILL PAYMENTS - NEW DESIGN
   ======================================== */
/* Bill Showcase */
.bill-showcase {
    position: relative;
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.bill-phone-frame {
    width: 350px;
    height: 560px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 95, 21, 0.08));
    border: 3px solid rgba(255, 95, 21, 0.4);
    border-radius: 45px;
    padding: 20px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5), 0 0 60px rgba(255, 95, 21, 0.2);
    position: relative;
    overflow: hidden;
}

.bill-phone-frame::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: rgba(10, 14, 39, 0.9);
    border-radius: 0 0 20px 20px;
    z-index: 10;
}

.bill-phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #1a1f3a 0%, #0d1428 100%);
    border-radius: 35px;
    padding: 30px 20px 20px;
    overflow-y: auto;
}

.bill-phone-screen::-webkit-scrollbar {
    width: 4px;
}

.bill-phone-screen::-webkit-scrollbar-thumb {
    background: rgba(255, 95, 21, 0.3);
    border-radius: 10px;
}

.bill-app-header {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 25px;
    border-bottom: 2px solid rgba(255, 95, 21, 0.2);
    margin-bottom: 15px;
}

.bill-header-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 95, 21, 0.4);
}

.bill-header-text {
    flex: 1;
}

.bill-header-title {
    font-size: 16px;
    font-weight: 800;
    color: white;
    margin-bottom: 3px;
}

.bill-header-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.bill-categories {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bill-category-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.bill-category-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 95, 21, 0.4);
    transform: translateX(5px);
}

.bill-cat-icon {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.bill-cat-icon.electricity {
    background: linear-gradient(135deg, #FFD700, #FFA500);
}

.bill-cat-icon.water {
    background: linear-gradient(135deg, #00D9FF, #0080FF);
}

.bill-cat-icon.gas {
    background: linear-gradient(135deg, #FF4500, #FF6347);
}

.bill-cat-icon.broadband {
    background: linear-gradient(135deg, #9333EA, #C026D3);
}

.bill-cat-info {
    flex: 1;
}

.bill-cat-name {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 3px;
}

.bill-cat-amount {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary-orange);
    margin-bottom: 2px;
}

.bill-cat-status {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

.bill-pay-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bill-pay-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 95, 21, 0.4);
}

.bill-pay-btn.paid {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    cursor: default;
}

.bill-pay-btn.urgent {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    animation: pulse 2s infinite;
}

.bill-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 20px;
}

.bill-quick-btn {
    background: rgba(255, 95, 21, 0.1);
    border: 1px solid rgba(255, 95, 21, 0.2);
    border-radius: 12px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bill-quick-btn:hover {
    background: rgba(255, 95, 21, 0.15);
    border-color: rgba(255, 95, 21, 0.3);
}

.bill-quick-btn i {
    font-size: 18px;
    color: var(--secondary-orange);
}

.bill-quick-btn span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.bill-floating-cards {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.bill-float-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 15px;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 3s ease-in-out infinite;
}

.bill-float-card.card-1 {
    animation-delay: 0s;
}

.bill-float-card.card-2 {
    animation-delay: 1s;
}

.bill-float-card.card-3 {
    animation-delay: 2s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.bill-float-card i {
    font-size: 18px;
    color: var(--secondary-orange);
}

.bill-float-card span {
    font-size: 13px;
    font-weight: 700;
    color: white;
}


/* ========================================
   SLIDE 2: EDUCATION - NEW DESIGN
   ======================================== */
.edu-dashboard {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.edu-main-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 95, 21, 0.05));
    backdrop-filter: blur(30px);
    border: 3px solid rgba(255, 95, 21, 0.3);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.edu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.edu-profile {
    display: flex;
    align-items: center;
    gap: 15px;
}

.edu-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    box-shadow: 0 10px 25px rgba(255, 95, 21, 0.4);
}

.edu-profile-info {
    display: flex;
    flex-direction: column;
}

.edu-student-name {
    font-size: 16px;
    font-weight: 800;
    color: white;
    margin-bottom: 3px;
}

.edu-student-id {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.edu-notification-badge {
    position: relative;
    width: 45px;
    height: 45px;
    background: rgba(255, 95, 21, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.edu-notification-badge i {
    font-size: 20px;
    color: var(--secondary-orange);
}

.edu-badge-count {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: #EF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: white;
}

.edu-balance-section {
    margin-bottom: 15px;
}

.edu-balance-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 15px;
    text-align: center;
}

.edu-balance-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
    font-weight: 600;
}

.edu-balance-amount {
    font-size: 25px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.edu-balance-deadline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.edu-payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
    max-height: 190px;
    /* visible height for 2 fees */
    overflow-y: auto;
    padding-right: 5px;
    /* space for scrollbar */
}

/* Optional: make scrollbar look neat */
.edu-payment-options::-webkit-scrollbar {
    width: 4px;
}

.edu-payment-options::-webkit-scrollbar-thumb {
    background: rgba(255, 95, 21, 0.3);
    border-radius: 10px;
}

.edu-pay-option {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 16px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.edu-pay-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 95, 21, 0.4);
    transform: translateX(5px);
}

.edu-option-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    flex-shrink: 0;
}

.edu-option-icon.tuition {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
}

.edu-option-icon.transport {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
}

.edu-option-icon.hostel {
    background: linear-gradient(135deg, #EC4899, #DB2777);
}

.edu-option-icon.college {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    /* gold tone for college */
}


.edu-option-details {
    flex: 1;
}

.edu-option-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.edu-option-amount {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary-orange);
}

.edu-option-arrow {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
}

.edu-action-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.edu-btn-primary,
.edu-btn-secondary {
    padding: 14px 20px;
    border-radius: 15px;
    border: none;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.edu-btn-primary {
    background: var(--gradient-primary);
    color: white;
}

.edu-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 95, 21, 0.4);
}

.edu-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 95, 21, 0.3);
}

.edu-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.edu-stats-cards {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.edu-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 20px;
    padding: 20px 25px;
    text-align: center;
    min-width: 140px;
}

.edu-stat-card i {
    font-size: 28px;
    color: var(--secondary-orange);
    margin-bottom: 10px;
}

.edu-stat-number {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.edu-stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ========================================
   SLIDE 4: INSURANCE - NEW DESIGN
   ======================================== */

/* Insurance Display */
.insurance-display {
    width: 100%;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}



.insurance-main-box::-webkit-scrollbar {
    width: 4px;
}

.insurance-main-box::-webkit-scrollbar-thumb {
    background: rgba(255, 95, 21, 0.3);
    border-radius: 10px;
}

/* Insurance Main Box - FIXED SCROLLING */
.insurance-main-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 95, 21, 0.05));
    backdrop-filter: blur(30px);
    border: 3px solid rgba(255, 95, 21, 0.3);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    /* Added to prevent horizontal scroll */
    width: 100%;
    max-width: 450px;
}



.insurance-header-section {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(255, 95, 21, 0.2);
}

.insurance-logo-circle {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    box-shadow: 0 15px 35px rgba(255, 95, 21, 0.5);
    animation: pulse 3s infinite;
}

.insurance-header-text h3 {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.insurance-header-text p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Insurance Policy Cards - FIXED GRID */
.insurance-policy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    width: 100%;
    /* Ensure full width usage */
}

/* Insurance Policy Item - FIXED WIDTH */
.insurance-policy-item {
    width: 100%;
    min-width: 0;
    /* Prevent overflow */
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.insurance-policy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.insurance-policy-item:hover::before {
    opacity: 1;
}

.insurance-policy-item.active {
    background: rgba(255, 95, 21, 0.08);
    border-color: rgba(255, 95, 21, 0.4);
}

.insurance-policy-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 95, 21, 0.4);
    transform: translateX(8px);
}

.policy-type-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: white;
    width: fit-content;
}

.policy-type-badge.health {
    background: linear-gradient(135deg, #F43F5E, #BE123C);
    /* pink-red */
}

.policy-type-badge.vehicle {
    background: linear-gradient(135deg, #06B6D4, #0891B2);
    /* teal-blue */
}

.policy-type-badge.life {
    background: linear-gradient(135deg, #8B5CF6, #7C3AED);
    /* purple */
}

.policy-type-badge.travel {
    background: linear-gradient(135deg, #F59E0B, #D97706);
    /* golden-yellow */
}


.policy-type-badge i {
    font-size: 14px;
}

.policy-details {
    flex: 1;
}

.policy-name {
    font-size: 16px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.policy-number {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
    font-family: 'Courier New', monospace;
}

.policy-amount {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-orange);
    margin-bottom: 8px;
}

.policy-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 15px;
    width: fit-content;
}

.policy-status.active-status {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.policy-status.due-status {
    background: rgba(251, 191, 36, 0.15);
    color: #FBBF24;
    border: 1px solid rgba(251, 191, 36, 0.3);
    animation: pulse 2s infinite;
}

.policy-status.paid-status {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.policy-renew-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.policy-renew-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(255, 95, 21, 0.4);
}

.policy-renew-btn.urgent {
    background: linear-gradient(135deg, #EF4444, #DC2626);
    animation: pulse 2s infinite;
}

.policy-renew-btn.paid-btn {
    background: rgba(34, 197, 94, 0.2);
    color: #22C55E;
    cursor: default;
}

.policy-renew-btn.paid-btn:hover {
    transform: none;
    box-shadow: none;
}

.insurance-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.benefit-item {
    background: rgba(255, 95, 21, 0.1);
    border: 1px solid rgba(255, 95, 21, 0.2);
    border-radius: 12px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 95, 21, 0.15);
    border-color: rgba(255, 95, 21, 0.3);
    transform: translateY(-3px);
}

.benefit-item i {
    font-size: 20px;
    color: var(--secondary-orange);
}

.benefit-item span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.insurance-trust-badges {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 20px;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 160px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    flex-shrink: 0;
}

.trust-text {
    display: flex;
    flex-direction: column;
}

.trust-text strong {
    font-size: 22px;
    font-weight: 800;
    color: white;
    margin-bottom: 3px;
}

.trust-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ========================================
   RESPONSIVE DESIGN FOR NEW VISUALS
   ======================================== */
/* Hero Carousel Container - UPDATED */
.hero-carousel-section {
    position: relative;
    height: 100vh;
    background: radial-gradient(ellipse at top, #1a1f3a 0%, #0a0e27 50%, #050811 100%);
    overflow: hidden;
    padding: clamp(80px, 15vw, 100px) 0 clamp(60px, 12vw, 70px);
    margin-top: 1rem;
}

/* Slide Content Layout - FIXED */
.slide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
    margin: 0 auto;
    width: 100%;
    max-width: 1850px;
    height: 100%;
    max-height: calc(100vh - 180px);
    padding: 0 40px;
}

/* Slide Text - Consistent Spacing */
.slide-text {
    animation: fadeInLeft 1s ease-out;
    width: 100%;
    max-width: 700px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
}

/* Slide Visual - FIXED OVERFLOW */
.slide-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out;
    height: 100%;
    max-height: calc(100vh - 200px);
    overflow: hidden;
    /* Changed from overflow-y: auto */
    width: 100%;
    max-width: 700px;
    padding: 40px 20px;
    align-self: center;
}

/* Insurance Main Box - FIXED SCROLLING */
.insurance-main-box {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 95, 21, 0.05));
    backdrop-filter: blur(30px);
    border: 3px solid rgba(255, 95, 21, 0.3);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    /* Added to prevent horizontal scroll */
    width: 100%;
    max-width: 450px;
}

/* Insurance Policy Cards - FIXED GRID */
.insurance-policy-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 25px;
    width: 100%;
    /* Ensure full width usage */
}

/* Insurance Policy Item - FIXED WIDTH */
.insurance-policy-item {
    width: 100%;
    min-width: 0;
    /* Prevent overflow */
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 95, 21, 0.2);
    border-radius: 18px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Consistent spacing for all slides */
.carousel-slide {
    min-width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}



@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        padding: 0 20px;
    }

    .slide-visual {
        max-height: none;
        overflow: visible;
    }

    .slide-text {
        text-align: center;
        order: 2;
        padding: 20px;
    }

    .slide-visual {
        order: 1;
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .bill-phone-frame {
        width: 320px;
        height: 600px;
    }

    .bill-app-header {
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .bill-header-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .bill-category-card {
        padding: 12px;
    }

    .bill-cat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .bill-floating-cards {
        flex-wrap: wrap;
        gap: 10px;
    }

    .bill-float-card {
        padding: 10px 15px;
    }

    .edu-main-card {
        padding: 25px;
    }

    .edu-avatar {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .edu-balance-amount {
        font-size: 32px;
    }

    .edu-action-btns {
        grid-template-columns: 1fr;
    }

    .insurance-main-box {
        padding: 25px;
    }

    .insurance-logo-circle {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .insurance-policy-item {
        padding: 15px;
    }

    .insurance-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .insurance-trust-badges {
        flex-direction: column;
    }

    .trust-badge {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .bill-phone-frame {
        width: 290px;
        height: 550px;
        padding: 15px;
    }

    .bill-phone-screen {
        padding: 35px 15px 15px;
    }

    .bill-header-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .bill-header-title {
        font-size: 16px;
    }

    .bill-cat-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .bill-cat-name {
        font-size: 13px;
    }

    .bill-cat-amount {
        font-size: 14px;
    }

    .bill-pay-btn {
        padding: 7px 14px;
        font-size: 11px;
    }

    .bill-quick-actions {
        gap: 8px;
    }

    .bill-quick-btn {
        padding: 10px 6px;
    }

    .bill-quick-btn i {
        font-size: 16px;
    }

    .bill-quick-btn span {
        font-size: 9px;
    }

    .bill-float-card {
        padding: 8px 12px;
        font-size: 11px;
    }

    .bill-float-card i {
        font-size: 14px;
    }

    .edu-main-card {
        padding: 20px;
    }

    .edu-avatar {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .edu-student-name {
        font-size: 14px;
    }

    .edu-notification-badge {
        width: 40px;
        height: 40px;
    }

    .edu-notification-badge i {
        font-size: 18px;
    }

    .edu-balance-card {
        padding: 20px;
    }

    .edu-balance-amount {
        font-size: 28px;
    }

    .edu-pay-option {
        padding: 12px;
        gap: 12px;
    }

    .edu-option-icon {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .edu-option-name {
        font-size: 14px;
    }

    .edu-option-amount {
        font-size: 15px;
    }

    .edu-btn-primary,
    .edu-btn-secondary {
        padding: 12px 16px;
        font-size: 13px;
    }

    .edu-stats-cards {
        flex-direction: column;
        gap: 12px;
    }

    .edu-stat-card {
        padding: 18px 20px;
    }

    .insurance-main-box {
        padding: 20px;
    }

    .insurance-header-section {
        gap: 15px;
        margin-bottom: 25px;
    }

    .insurance-logo-circle {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .insurance-header-text h3 {
        font-size: 18px;
    }

    .insurance-policy-item {
        padding: 14px;
        gap: 10px;
    }

    .policy-type-badge {
        padding: 6px 12px;
        font-size: 11px;
    }

    .policy-name {
        font-size: 14px;
    }

    .policy-number {
        font-size: 10px;
    }

    .policy-amount {
        font-size: 18px;
    }

    .policy-status {
        font-size: 11px;
        padding: 5px 10px;
    }

    .policy-renew-btn {
        padding: 8px 20px;
        font-size: 12px;
    }

    .insurance-benefits {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .benefit-item {
        padding: 10px 6px;
    }

    .benefit-item i {
        font-size: 18px;
    }

    .benefit-item span {
        font-size: 10px;
    }

    .trust-badge {
        padding: 15px 20px;
        gap: 12px;
    }

    .trust-icon {
        width: 45px;
        height: 45px;
        font-size: 22px;
    }

    .trust-text strong {
        font-size: 20px;
    }

    .trust-text span {
        font-size: 11px;
    }
}

/* Slide 3: Travel - Ticket Design */
/* Travel Ticket */
.travel-ticket {
    width: 100%;
    max-width: 450px;
}

.ticket-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 25px;
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
}

.ticket-container::before,
.ticket-container::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--bg-dark);
    border-radius: 50%;
    border: 2px solid rgba(255, 95, 21, 0.3);
}

.ticket-container::before {
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
}

.ticket-container::after {
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
}

.ticket-header {
    text-align: center;
    padding-bottom: 25px;
    border-bottom: 2px dashed rgba(255, 95, 21, 0.3);
    margin-bottom: 25px;
}

.ticket-icons-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.ticket-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: white;
}



/* Individual icon gradients */
.plane-icon {
    background: linear-gradient(135deg, #ff7a00, #ff3c00);
}

.bus-icon {
    background: linear-gradient(135deg, #009efd, #2af598);
}

.train-icon {
    background: linear-gradient(135deg, #845ec2, #d65db1);
}

.hotel-icon {
    background: linear-gradient(135deg, #f7971e, #ffd200);
}

.ticket-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--secondary-orange);
}

.ticket-routes {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticket-route {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: rgba(255, 95, 21, 0.08);
    border-radius: 15px;
    border: 1px solid rgba(255, 95, 21, 0.2);
}

.route-place {
    text-align: center;
}

.route-code {
    font-size: 28px;
    font-weight: 800;
    color: white;
    display: block;
}

.route-name {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.route-arrow {
    color: var(--secondary-orange);
    font-size: 24px;
}

.ticket-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.ticket-info-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
    text-align: center;
}

.ticket-info-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.ticket-info-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary-orange);
}

/* Slide 5: Payment Methods - Grid */
/* Payment Methods - Premium Card Design */
.payment-showcase {
    width: 100%;
    max-width: 550px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 20px;
}

.payment-card-premium {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 20px;
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    min-height: 150px;
}

.payment-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 95, 21, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.payment-card-premium:hover::before {
    left: 100%;
}

.payment-card-premium:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(255, 95, 21, 0.6);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 95, 21, 0.08));
    box-shadow: 0 20px 50px rgba(255, 95, 21, 0.3);
}

.payment-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
    overflow: hidden;
}

.payment-card-premium:hover .payment-icon-wrapper {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 15px 40px rgba(255, 95, 21, 0.4);
}

.payment-icon-wrapper::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(45deg, #FF5F15, #FFA802, #FF5F15);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-card-premium:hover .payment-icon-wrapper::after {
    opacity: 1;
    animation: borderGlow 1.5s infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* Brand Specific Styling */
.payment-logo {
    width: 70px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
    transition: filter 0.3s ease;
}

.payment-card-premium:hover .payment-logo {
    filter: drop-shadow(0 4px 12px rgba(255, 95, 21, 0.3));
}

/* Font Awesome icons for those without logos */
.payment-icon-fa {
    font-size: 45px;
    background: linear-gradient(135deg, #FF5F15, #FFA802);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-card-premium:hover .payment-icon-fa {
    animation: iconPulse 0.6s ease;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.payment-name-premium {
    font-size: 16px;
    font-weight: 700;
    color: white;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.payment-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 95, 21, 0.9);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.payment-card-premium:hover .payment-badge {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .payment-showcase {
        max-width: 400px;
        gap: 20px;
    }

    .payment-card-premium {
        min-height: 160px;
        padding: 25px 15px;
    }

    .payment-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .payment-logo {
        width: 60px;
    }

    .payment-icon-fa {
        font-size: 38px;
    }

    .payment-name-premium {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .payment-showcase {
        max-width: 320px;
        gap: 15px;
    }

    .payment-card-premium {
        min-height: 140px;
        padding: 20px 12px;
    }

    .payment-icon-wrapper {
        width: 65px;
        height: 65px;
    }

    .payment-logo {
        width: 50px;
    }

    .payment-icon-fa {
        font-size: 32px;
    }

    .payment-name-premium {
        font-size: 13px;
    }
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 95, 21, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 40px;
    border-radius: 6px;
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 95, 21, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 95, 21, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 20;
}

.carousel-nav:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-orange);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: 30px;
}

.carousel-next {
    right: 30px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .slide-content {
        grid-template-columns: 1fr;
        gap: 30px;
        max-height: calc(100vh - 160px);
        overflow-y: auto;
    }

    .slide-content::-webkit-scrollbar {
        width: 6px;
    }

    .slide-content::-webkit-scrollbar-thumb {
        background: rgba(255, 95, 21, 0.4);
        border-radius: 10px;
    }

    .slide-visual {
        max-height: none;
        overflow-y: visible;
    }

    .slide-text {
        text-align: center;
        order: 2;
    }

    .slide-visual {
        order: 1;
    }

    .slide-text {
        text-align: center;
        order: 2;
    }

    .slide-features {
        justify-content: center;
    }

    .slide-features li {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-carousel-section {
        padding: 60px 0 80px 0;
        margin-top: 3rem;
    }

    .slide-content {
        max-height: calc(100vh - 140px);
    }

    .bill-phone-frame {
        width: 320px;
        height: 550px;
    }


    .edu-dashboard,
    .insurance-display,
    .travel-ticket,
    .payment-grid {
        max-width: 350px;
    }

    .insurance-main-box {
        max-height: 500px;
    }

    .carousel-slide {
        padding: 0 3%;
    }

    .bill-grid,
    .payment-grid {
        max-width: 350px;
        gap: 15px;
    }

    .bill-card,
    .payment-method {
        padding: 20px 12px;
    }

    .edu-phone {
        width: 280px;
        height: 540px;
    }

    .insurance-policy-cards {
        grid-template-columns: 1fr;
    }

    .insurance-shield {
        width: 300px;
        height: 400px;
    }

    .travel-ticket {
        width: 350px;
        height: 480px;
    }

    .carousel-nav {
        display: none;
    }

    .carousel-controls {
        bottom: -50px;
    }
}

@media (max-width: 480px) {

    .hero-carousel-section {
        padding: 50px 0 70px 0;
    }

    .slide-content {
        max-height: calc(100vh - 120px);
        gap: 20px;
    }

    .bill-phone-frame {
        width: 290px;
        height: 500px;
    }

    .edu-dashboard,
    .insurance-display,
    .travel-ticket {
        max-width: 300px;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
        gap: 15px;
    }

    .insurance-main-box {
        max-height: 450px;
        padding: 25px;
    }

    .slide-badge {
        font-size: 12px;
        padding: 10px 18px;
    }

    .bill-grid {
        grid-template-columns: 1fr;
        max-width: 280px;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 300px;
    }

    .edu-phone {
        width: 250px;
        height: 500px;
    }

    .insurance-shield {
        width: 260px;
        height: 350px;
    }

    .shield-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }

    .travel-ticket {
        width: 300px;
        height: 450px;
    }

    .route-code {
        font-size: 22px;
    }
}



/* hero section end   */









/* about n1 nexora section start  */


/* About Section */
.about-nexora {
    padding: 80px 0;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0a0e27 100%);
    position: relative;
    overflow: hidden;
}

.about-nexora::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 95, 21, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Cards Container */
.about-cards {
    position: relative;
    z-index: 2;
}

.about-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 95, 21, 0.2);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 520px;
}

.about-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 95, 21, 0.1), transparent);
    transition: left 0.6s;
}

.about-card:hover::before {
    left: 100%;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 95, 21, 0.5);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 60px rgba(255, 95, 21, 0.2);
}

/* Card Header */
.card-header-custom {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(255, 95, 21, 0.4);
    position: relative;
}

.card-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: linear-gradient(135deg, #FF5F15, #FFA802);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s;
}

.about-card:hover .card-icon::after {
    opacity: 0.5;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFA802;
    margin: 0;
}

/* Card Content */
.card-description {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.card-points {
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 1;
}

.card-points li {
    padding: 15px 20px;
    padding-left: 50px;
    background: rgba(255, 95, 21, 0.08);
    border-radius: 12px;
    margin-bottom: 12px;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.card-points li:hover {
    background: rgba(255, 95, 21, 0.15);
    border-left-color: #FFA802;
    transform: translateX(8px);
}

.card-points li::before {
    content: '';
    position: absolute;
    left: 18px;
    top: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #FF5F15, #FFA802);
    border-radius: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-points li::after {
    content: '✓';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 11px;
    font-weight: bold;
}

/* Decorative Number */
.card-number {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 6rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(255, 95, 21, 0.1) 0%, rgba(255, 168, 2, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    z-index: 0;
    opacity: 0.4;
}

/* Floating Particles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FF5F15;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.6;
}

.particle:nth-child(1) {
    top: 10%;
    left: 20%;
    animation: float1 6s infinite;
}

.particle:nth-child(2) {
    top: 30%;
    right: 15%;
    animation: float2 7s infinite;
}

.particle:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation: float1 8s infinite;
}

.particle:nth-child(4) {
    bottom: 40%;
    right: 25%;
    animation: float2 6.5s infinite;
}

.particle:nth-child(5) {
    top: 50%;
    left: 50%;
    animation: float1 7.5s infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-30px) translateX(20px);
        opacity: 0.3;
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-25px) translateX(-20px);
        opacity: 0.3;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .about-card {
        padding: 30px 20px;
    }

    .card-header-custom {
        flex-direction: column;
        text-align: center;
    }

    .card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-number {
        font-size: 4rem;
        right: 20px;
    }

    .card-points li {
        padding-left: 45px;
    }
}

/* about n1 nexora section end  */




















/* Payment Solutions Section */
.payment-solutions {
    padding: 100px 0;
    /* Updated payment solutions background to dark */
    background: var(--bg-dark);
    overflow: hidden;
}

.payment-solutions .section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    /* Updated payment solutions title color to white */
    color: #ffffff;
    opacity: 0;
    transform: translateX(50px);
}

.payment-solutions .section-title p {
    font-size: 1rem;
    /* Updated payment solutions subtitle color to light */
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    opacity: 0;
    transform: translateX(30px);
}

.btn-learn {
    display: inline-block;
    padding: 10px 22px;
    border: 1px solid var(--primary-orange);
    border-radius: 8px;
    /* Updated button text color to white */
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(30px);
    margin-top: 4rem;
}

.btn-learn:hover {
    background: var(--gradient-primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Logos Grid */
.payment-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    justify-items: center;
    margin-top: 3rem;
}

.logo-item {
    width: 90px;
    height: 90px;
    /* Updated logo item background to dark with transparency */
    background: rgb(255, 255, 255);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(255, 95, 21, 0.15);
    transition: all 0.3s ease;
    opacity: 0;
    filter: blur(10px);
    border: 1px solid rgba(255, 95, 21, 0.2);
}

.logo-item img {
    max-width: 80%;
    height: auto;
}

.logo-item:hover {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 12px 25px rgba(255, 95, 21, 0.25);
}






.n1-video-wrapper {
    height: 70%;
    width: 100%;

}

.n1-video {
    width: 100%;
    /* height: 50%; */
    height: fit-content;
    object-fit: contain;
    object-position: top;
    border-radius: 15px;
    transition: transform 0.3s ease;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); */
}

/* Floating animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/*
        .logo-item.floating {
            animation: float 3s ease-in-out infinite;
        } */

/* Pulse effect */
.btn-learn.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .payment-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .payment-logos {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-item {
        width: 75px;
        height: 75px;
    }
}






.about-nexora-new {
    padding: 100px 0;
    /* Updated about section background to dark */
    background: linear-gradient(135deg, #0d163e, #1a2456);
    position: relative;
    overflow: hidden;
}

.about-nexora-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 95, 21, 0.1), transparent);
    z-index: 0;
}

.about-content-new {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Enhanced Video Container */
.about-video-wrapper {
    position: relative;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-video-container {
    position: relative;
    width: 95%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.about-video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* .about-video:hover {
            transform: scale(1.02);
        } */


/* Content Styling */
.section-tag-new {
    margin-bottom: 20px;
}

.badge.bg-gradient-orange {
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title-new {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    /* Updated section title color to white */
    color: #ffffff;
}

.gradient-text-orange {
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-highlights-new {
    margin-bottom: 40px;
}

.highlight-item-new {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 15px;
    padding: 15px;
    /* Updated highlight item background to dark with transparency */
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-item-new:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(255, 95, 21, 0.2);
}

.highlight-icon-new {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 95, 21, 0.3);
    flex-shrink: 0;
}

.highlight-content-new h6 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 8px;
    /* Updated highlight heading color to white */
    color: #ffffff;
}

.highlight-content-new p {
    /* Updated highlight text color to light */
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    margin: 0;
}

.btn-primary-orange {
    background: linear-gradient(135deg, #FF5F15 0%, #FFA802 100%);
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 95, 21, 0.3);
}

.btn-primary-orange:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(255, 95, 21, 0.4);
    background: linear-gradient(135deg, #ff8c00, #ff5f15);
    color: white;
}

/* Responsive Design */
@media (max-width: 991px) {
    .about-video-wrapper {
        min-height: 450px;
        margin-bottom: 40px;
    }

    .section-title-new {
        font-size: 2.2rem;
    }

    .about-content-new {
        padding-top: 20px;
    }
}

@media (max-width: 767px) {
    .about-nexora-new {
        padding: 60px 0;
    }

    .about-video-wrapper {
        min-height: 350px;
    }

    .section-title-new {
        font-size: 1.8rem;
    }

    .highlight-item-new {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .highlight-icon-new {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .about-video-wrapper {
        min-height: 280px;
        border-radius: 15px;
    }

    .about-video-container {
        width: 90%;
        height: 85%;
    }

    .section-title-new {
        font-size: 1.6rem;
    }

    .btn-primary-orange {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .badge.bg-gradient-orange {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}






.services-section {
    padding: 80px 0;
    /* Updated services section background to dark */
    background: linear-gradient(135deg, #0d163e 0%, #1a2456 100%);
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.2rem;
    /* Updated section subtitle color to light */
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.marquee-container {
    margin-bottom: 10px;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(13, 22, 62, 1), rgba(13, 22, 62, 0));
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(13, 22, 62, 1), rgba(13, 22, 62, 0));
}

.marquee-content {
    display: flex;
    animation: marqueeLeft 25s linear infinite;
    gap: 20px;
}

.marquee-content.reverse {
    animation: marqueeRight 30s linear infinite;
}

.marquee-content.slow {
    animation: marqueeLeft 35s linear infinite;
}

.service-card {
    min-width: 300px;
    /* Updated service card background to dark with transparency */
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 95, 21, 0.2);
    border-radius: 20px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: var(--service-gradient);
    transition: left 0.3s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 95, 21, 0.2);
    border-color: var(--service-color);
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    background: var(--service-gradient);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    /* Updated service card heading color to white */
    color: #ffffff;
    margin-bottom: 5px;
    line-height: 1.3;
}

.service-info p {
    font-size: 0.85rem;
    /* Updated service card text color to light */
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    margin: 0;
}

/* Service-specific color themes */
.electricity {
    --service-color: #FFD700;
    --service-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
}

.mobile {
    --service-color: #00CED1;
    --service-gradient: linear-gradient(135deg, #00CED1 0%, #4682B4 100%);
}

.dth {
    --service-color: #8A2BE2;
    --service-gradient: linear-gradient(135deg, #8A2BE2 0%, #4B0082 100%);
}

.gas {
    --service-color: #FF6347;
    --service-gradient: linear-gradient(135deg, #FF6347 0%, #FF4500 100%);
}

.water {
    --service-color: #1E90FF;
    --service-gradient: linear-gradient(135deg, #1E90FF 0%, #0000CD 100%);
}

.broadband {
    --service-color: #32CD32;
    --service-gradient: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
}

.insurance {
    --service-color: #DC143C;
    --service-gradient: linear-gradient(135deg, #DC143C 0%, #B22222 100%);
}

.loan {
    --service-color: #FF8C00;
    --service-gradient: linear-gradient(135deg, #FF8C00 0%, #FF7F50 100%);
}

.education {
    --service-color: #9370DB;
    --service-gradient: linear-gradient(135deg, #9370DB 0%, #8B008B 100%);
}

.municipal {
    --service-color: #20B2AA;
    --service-gradient: linear-gradient(135deg, #20B2AA 0%, #008B8B 100%);
}

.cable {
    --service-color: #FF69B4;
    --service-gradient: linear-gradient(135deg, #FF69B4 0%, #FF1493 100%);
}

.fastag {
    --service-color: #00FF7F;
    --service-gradient: linear-gradient(135deg, #00FF7F 0%, #00FA9A 100%);
}

.hospital {
    --service-color: #FF0000;
    --service-gradient: linear-gradient(135deg, #FF0000 0%, #DC143C 100%);
}

.subscription {
    --service-color: #FF4500;
    --service-gradient: linear-gradient(135deg, #FF4500 0%, #FF6347 100%);
}

.rent {
    --service-color: #8B4513;
    --service-gradient: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
}

.credit-card {
    --service-color: #4169E1;
    --service-gradient: linear-gradient(135deg, #4169E1 0%, #0000FF 100%);
}

.booking {
    --service-color: #FF1493;
    --service-gradient: linear-gradient(135deg, #FF1493 0%, #DC143C 100%);
}

.donation {
    --service-color: #FFB6C1;
    --service-gradient: linear-gradient(135deg, #FFB6C1 0%, #FF69B4 100%);
}

.housing {
    --service-color: #DEB887;
    --service-gradient: linear-gradient(135deg, #DEB887 0%, #D2B48C 100%);
}

.investment {
    --service-color: #DAA520;
    --service-gradient: linear-gradient(135deg, #DAA520 0%, #FFD700 100%);
}

.recurring {
    --service-color: #9932CC;
    --service-gradient: linear-gradient(135deg, #9932CC 0%, #8A2BE2 100%);
}

.government {
    --service-color: #2F4F4F;
    --service-gradient: linear-gradient(135deg, #2F4F4F 0%, #696969 100%);
}

.entertainment {
    --service-color: #FF6347;
    --service-gradient: linear-gradient(135deg, #FF6347 0%, #FF4500 100%);
}

.transport {
    --service-color: #32CD32;
    --service-gradient: linear-gradient(135deg, #32CD32 0%, #228B22 100%);
}

.security {
    --service-color: #8B0000;
    --service-gradient: linear-gradient(135deg, #8B0000 0%, #DC143C 100%);
}

.maintenance {
    --service-color: #708090;
    --service-gradient: linear-gradient(135deg, #708090 0%, #2F4F4F 100%);
}

.travel {
    --service-color: #FF8C00;
    --service-gradient: linear-gradient(135deg, #FF8C00 0%, #FFD700 100%);
}

.health {
    --service-color: #00CED1;
    --service-gradient: linear-gradient(135deg, #00CED1 0%, #20B2AA 100%);
}

.postal {
    --service-color: #B22222;
    --service-gradient: linear-gradient(135deg, #B22222 0%, #FF0000 100%);
}

.lifestyle {
    --service-color: #DA70D6;
    --service-gradient: linear-gradient(135deg, #DA70D6 0%, #FF69B4 100%);
}

@keyframes marqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marqueeRight {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0);
    }
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    /* Updated CTA section background to dark with transparency */
    background: linear-gradient(135deg,
            rgb(13, 22, 62) 0%,
            rgba(255, 95, 21, 0.151) 100%);
    border-radius: 20px;
}

.cta-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 95, 21, 0.3);
    color: white;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: 2rem;
    }

    .service-card {
        min-width: 250px;
        padding: 20px 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .marquee-content {
        animation-duration: 20s;
    }
}