


        .neo-travel-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===================================
           ANIMATED BACKGROUND
           =================================== */
        .neo-travel-bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            z-index: -1;
            overflow: hidden;
            pointer-events: none;
        }

        .neo-travel-plane-route {
            position: absolute;
            top: 20%;
            left: -10%;
            width: 120%;
            height: 2px;
            background: linear-gradient(90deg, 
                transparent 0%, 
                var(--primary-color) 20%, 
                var(--primary-color) 80%, 
                transparent 100%);
            opacity: 0.3;
            animation: neoPlaneMove 20s linear infinite;
        }

        .neo-travel-plane-route::before {
            content: '✈';
            position: absolute;
            right: 0;
            top: -10px;
            font-size: 20px;
            color: var(--primary-color);
            animation: neoPlaneBounce 2s ease-in-out infinite;
        }

        @keyframes neoPlaneMove {
            from { transform: translateX(-100%); }
            to { transform: translateX(0); }
        }

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

        .neo-travel-cloud {
            position: absolute;
            width: 100px;
            height: 40px;
            background: linear-gradient(135deg, rgba(167, 139, 250, 0.3) 0%, rgba(192, 132, 252, 0.2) 100%);
            border-radius: 50px;
            animation: neoCloudFloat 30s linear infinite;
        }

        .neo-travel-cloud::before,
        .neo-travel-cloud::after {
            content: '';
            position: absolute;
            background: inherit;
            border-radius: 50%;
        }

        .neo-travel-cloud::before {
            width: 50px;
            height: 50px;
            top: -25px;
            left: 10px;
        }

        .neo-travel-cloud::after {
            width: 60px;
            height: 40px;
            top: -15px;
            right: 10px;
        }

        .neo-travel-cloud-1 {
            top: 15%;
            left: -150px;
            animation-duration: 25s;
        }

        .neo-travel-cloud-2 {
            top: 60%;
            left: -150px;
            animation-duration: 35s;
            animation-delay: 10s;
        }

        .neo-travel-cloud-3 {
            top: 40%;
            left: -150px;
            animation-duration: 40s;
            animation-delay: 20s;
        }

        @keyframes neoCloudFloat {
            from { transform: translateX(-150px); }
            to { transform: translateX(calc(100vw + 150px)); }
        }

        /* ===================================
           HERO SECTION
           =================================== */
        .neo-travel-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 120px 0 80px;
            position: relative;
            background: linear-gradient(135deg, #f5f3ff 0%, #faf5ff 100%);
        }

        .neo-hero-container {
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .neo-hero-content {
            animation: neoFadeInUp 1s ease-out;
        }

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

        .neo-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--white);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary-color);
            box-shadow: var(--shadow-sm);
            margin-bottom: 24px;
            animation: neoBounce 2s ease-in-out infinite;
        }

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

        .neo-hero-title {
            font-family: var(--font-display);
            font-size: 64px;
            font-weight: 800;
            line-height: 1.1;
            color: var(--primary-dark);
            margin-bottom: 20px;
        }

        .neo-hero-title .neo-highlight {
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        .neo-hero-title .neo-highlight::after {
            content: '';
            position: absolute;
            bottom: 10px;
            left: 0;
            width: 100%;
            height: 12px;
            background: var(--primary-color);
            opacity: 0.2;
            z-index: -1;
            animation: neoUnderlineGrow 1s ease-out 0.5s both;
        }

        @keyframes neoUnderlineGrow {
            from { width: 0; }
            to { width: 100%; }
        }

        .neo-hero-subtitle {
            font-size: 20px;
            color: var(--dark-gray);
            font-weight: 600;
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .neo-hero-description {
            font-size: 16px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 32px;
            max-width: 600px;
        }

        .neo-cta-buttons {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .neo-btn-primary,
        .neo-btn-secondary {
            padding: 16px 32px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            font-family: var(--font-body);
        }

        .neo-btn-primary {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            color: var(--white);
            box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
        }

        .neo-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(124, 58, 237, 0.5);
        }

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

        .neo-btn-secondary:hover {
            background: var(--primary-color);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* ===================================
           HERO VISUAL
           =================================== */
        .neo-hero-visual {
            position: relative;
            animation: neoFadeInRight 1s ease-out 0.3s both;
        }

        @keyframes neoFadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .neo-phone-mockup {
            position: relative;
            width: 100%;
            max-width: 400px;
            margin: 0 auto;
        }

        .neo-phone-frame {
            width: 300px;
            height: 600px;
            background: var(--white);
            border-radius: 40px;
            box-shadow: 0 20px 60px rgba(124, 58, 237, 0.3);
            padding: 20px;
            position: relative;
            margin: 0 auto;
            border: 12px solid var(--black);
            animation: neoPhoneFloat 3s ease-in-out infinite;
        }

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

        .neo-phone-screen {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
            border-radius: 28px;
            padding: 30px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .neo-app-header {
            display: flex;
            align-items: center;
            gap: 10px;
            background: var(--white);
            padding: 8px 20px;
            border-radius: 20px;
        }

        .neo-app-logo {
            width: 30px;
            height: 30px;
        }

        .neo-app-name {
            font-family: var(--font-display);
            font-weight: 700;
            font-size: 18px;
            color: var(--primary-dark);
        }

        .neo-booking-card {
            background: var(--white);
            padding: 40px 30px;
            border-radius: 24px;
            text-align: center;
            width: 100%;
            box-shadow: var(--shadow-lg);
        }

        .neo-booking-icon {
            font-size: 60px;
            color: var(--train-color);
            margin-bottom: 16px;
        }

        .neo-booking-card h3 {
            font-family: var(--font-display);
            font-size: 24px;
            color: var(--black);
            margin-bottom: 4px;
        }

        .neo-booking-card p {
            color: var(--gray);
            font-size: 14px;
        }

        .neo-service-icons {
            display: flex;
            gap: 16px;
            justify-content: center;
        }

        .neo-service-icon-item {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            transition: all 0.3s ease;
        }

        .neo-service-icon-item.neo-active {
            background: var(--white);
            color: var(--primary-color);
            transform: scale(1.1);
        }

        .neo-booking-btn {
            background: var(--primary-color);
            color: var(--white);
            border: none;
            padding: 14px 40px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .neo-booking-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
        }

        .neo-luggage {
            position: absolute;
            bottom: -40px;
            left: -60px;
            font-size: 120px;
            color: var(--primary-color);
            opacity: 0.9;
            animation: neoLuggageRoll 4s ease-in-out infinite;
        }

        @keyframes neoLuggageRoll {
            0%, 100% { transform: translateX(0) rotate(0deg); }
            50% { transform: translateX(20px) rotate(10deg); }
        }

        /* ===================================
           SERVICES OVERVIEW
           =================================== */
        .neo-services-overview {
            padding: 80px 0 40px;
            background: var(--white);
        }

        .neo-section-header {
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }

        .neo-subtitle-badge {
            display: inline-block;
            padding: 6px 16px;
            background: #f5f3ff;
            color: var(--primary-color);
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .neo-section-header h2 {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .neo-section-header h2 .neo-highlight {
            color: var(--primary-color);
        }

        .neo-section-header p {
            font-size: 18px;
            color: var(--gray);
            line-height: 1.8;
        }

        /* ===================================
           SERVICES GRID (IRCTC, Flight, Bus)
           =================================== */
        .neo-services-grid-section {
            padding: 60px 0;
            background: var(--white);
        }

        .neo-services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .neo-service-card {
            background: var(--white);
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: all 0.4s ease;
            border: 2px solid transparent;
        }

        .neo-service-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-xl);
        }

        .neo-service-card.neo-irctc:hover { border-color: var(--train-color); }
        .neo-service-card.neo-flight:hover { border-color: var(--flight-color); }
        .neo-service-card.neo-bus:hover { border-color: var(--bus-color); }

        .neo-card-visual {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .neo-visual-bg {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 120px;
            opacity: 0.1;
            transition: all 0.4s ease;
        }

        .neo-service-card.neo-irctc .neo-visual-bg {
            background: linear-gradient(135deg, var(--train-color) 0%, #C0392B 100%);
            color: var(--train-color);
        }

        .neo-service-card.neo-flight .neo-visual-bg {
            background: linear-gradient(135deg, var(--flight-color) 0%, #0096C7 100%);
            color: var(--flight-color);
        }

        .neo-service-card.neo-bus .neo-visual-bg {
            background: linear-gradient(135deg, var(--bus-color) 0%, #5F27CD 100%);
            color: var(--bus-color);
        }

        .neo-service-card:hover .neo-visual-bg {
            opacity: 1;
            transform: scale(1.1) rotate(5deg);
        }

        .neo-phone-preview {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 180px;
            height: 180px;
            background: var(--white);
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            transition: all 0.4s ease;
        }

        .neo-service-card:hover .neo-phone-preview {
            transform: translate(-50%, -50%) scale(1.05);
        }

        .neo-preview-screen {
            width: 100%;
            height: 100%;
            padding: 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .neo-preview-icon {
            width: 70px;
            height: 70px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 36px;
            color: var(--white);
        }

        .neo-service-card.neo-irctc .neo-preview-icon {
            background: linear-gradient(135deg, var(--train-color) 0%, #C0392B 100%);
        }

        .neo-service-card.neo-flight .neo-preview-icon {
            background: linear-gradient(135deg, var(--flight-color) 0%, #0096C7 100%);
        }

        .neo-service-card.neo-bus .neo-preview-icon {
            background: linear-gradient(135deg, var(--bus-color) 0%, #5F27CD 100%);
        }

        .neo-preview-text h4 {
            font-family: var(--font-display);
            font-size: 18px;
            color: var(--black);
            text-align: center;
        }

        .neo-preview-text p {
            font-size: 12px;
            color: var(--gray);
            text-align: center;
        }

        .neo-card-content {
            padding: 32px;
        }

        .neo-card-content h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .neo-card-content h3 i {
            font-size: 28px;
        }

        .neo-service-card.neo-irctc h3 i { color: var(--train-color); }
        .neo-service-card.neo-flight h3 i { color: var(--flight-color); }
        .neo-service-card.neo-bus h3 i { color: var(--bus-color); }

        .neo-card-description {
            font-size: 15px;
            color: var(--gray);
            line-height: 1.7;
            margin-bottom: 24px;
        }

        .neo-features-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
            margin-bottom: 24px;
        }

        .neo-feature-item {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--dark-gray);
        }

        .neo-feature-item i {
            font-size: 16px;
        }

        .neo-service-card.neo-irctc .neo-feature-item i { color: var(--train-color); }
        .neo-service-card.neo-flight .neo-feature-item i { color: var(--flight-color); }
        .neo-service-card.neo-bus .neo-feature-item i { color: var(--bus-color); }

        .neo-service-cta {
            width: 100%;
            padding: 14px 24px;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            color: var(--white);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .neo-service-card.neo-irctc .neo-service-cta {
            background: linear-gradient(135deg, var(--train-color) 0%, #C0392B 100%);
        }

        .neo-service-card.neo-flight .neo-service-cta {
            background: linear-gradient(135deg, var(--flight-color) 0%, #0096C7 100%);
        }

        .neo-service-card.neo-bus .neo-service-cta {
            background: linear-gradient(135deg, var(--bus-color) 0%, #5F27CD 100%);
        }

        .neo-service-cta:hover {
            transform: scale(1.02);
            box-shadow: var(--shadow-md);
        }

        .neo-service-cta i {
            transition: transform 0.3s ease;
        }

        .neo-service-cta:hover i {
            transform: translateX(5px);
        }

        /* ===================================
           HOTEL BOOKING - SPECIAL SECTION
           =================================== */
        .neo-hotel-special-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
            position: relative;
            overflow: hidden;
        }

        .neo-hotel-special-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(6, 214, 160, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .neo-hotel-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .neo-hotel-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .neo-hotel-content {
            animation: neoFadeInLeft 1s ease-out;
        }

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

        .neo-hotel-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            background: var(--white);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--hotel-color);
            box-shadow: var(--shadow-sm);
            margin-bottom: 24px;
        }

        .neo-hotel-content h2 {
            font-family: var(--font-display);
            font-size: 48px;
            font-weight: 800;
            color: var(--primary-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .neo-hotel-content h2 .neo-highlight {
            color: var(--hotel-color);
        }

        .neo-hotel-description {
            font-size: 18px;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        .neo-hotel-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 32px;
        }

        .neo-hotel-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 16px;
            background: var(--white);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

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

        .neo-hotel-feature-item i {
            font-size: 24px;
            color: var(--hotel-color);
            margin-top: 2px;
        }

        .neo-hotel-feature-text h4 {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 4px;
        }

        .neo-hotel-feature-text p {
            font-size: 14px;
            color: var(--gray);
        }

        .neo-hotel-cta-btn {
            padding: 18px 40px;
            background: linear-gradient(135deg, var(--hotel-color) 0%, #05A081 100%);
            color: var(--white);
            border: none;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(6, 214, 160, 0.4);
        }

        .neo-hotel-cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(6, 214, 160, 0.5);
        }

        .neo-hotel-visual {
            animation: neoFadeInRight 1s ease-out 0.3s both;
        }

        .neo-hotel-card-showcase {
            background: var(--white);
            border-radius: 32px;
            padding: 40px;
            box-shadow: 0 20px 60px rgba(6, 214, 160, 0.2);
            position: relative;
        }

        .neo-hotel-card-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
            padding-bottom: 20px;
            border-bottom: 2px solid var(--light-gray);
        }

        .neo-hotel-card-title {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .neo-hotel-card-title i {
            font-size: 32px;
            color: var(--hotel-color);
        }

        .neo-hotel-card-title h3 {
            font-family: var(--font-display);
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-dark);
        }

        .neo-hotel-rating {
            display: flex;
            align-items: center;
            gap: 4px;
            padding: 8px 16px;
            background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
            border-radius: 20px;
        }

        .neo-hotel-rating i {
            color: #f59e0b;
            font-size: 14px;
        }

        .neo-hotel-rating span {
            font-weight: 700;
            color: #92400e;
            font-size: 14px;
        }

        .neo-hotel-options {
            display: grid;
            gap: 16px;
        }

        .neo-hotel-option {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 20px;
            background: #f0fdf4;
            border-radius: 16px;
            border: 2px solid transparent;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .neo-hotel-option:hover {
            border-color: var(--hotel-color);
            transform: translateX(5px);
        }

        .neo-hotel-option-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--hotel-color) 0%, #05A081 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 24px;
        }

        .neo-hotel-option-info h4 {
            font-family: var(--font-display);
            font-size: 16px;
            font-weight: 700;
            color: var(--primary-dark);
            margin-bottom: 4px;
        }

        .neo-hotel-option-info p {
            font-size: 14px;
            color: var(--gray);
        }

        .neo-hotel-decorative-icon {
            position: absolute;
            bottom: -30px;
            right: -30px;
            font-size: 150px;
            color: var(--hotel-color);
            opacity: 0.1;
            transform: rotate(-15deg);
        }

        /* ===================================
           RESPONSIVE DESIGN
           =================================== */
        @media (max-width: 1024px) {
            .neo-hero-container,
            .neo-hotel-grid {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .neo-hero-title {
                font-size: 52px;
            }

            .neo-services-grid {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            }
        }

        @media (max-width: 768px) {
            .neo-hero-title,
            .neo-hotel-content h2 {
                font-size: 42px;
            }

            .neo-section-header h2 {
                font-size: 36px;
            }

            .neo-services-grid {
                grid-template-columns: 1fr;
            }

            .neo-features-list,
            .neo-hotel-features {
                grid-template-columns: 1fr;
            }

            .neo-phone-frame {
                width: 260px;
                height: 520px;
            }

            .neo-luggage {
                font-size: 80px;
                bottom: -20px;
                left: -30px;
            }
        }

        @media (max-width: 480px) {
            .neo-hero-title,
            .neo-hotel-content h2 {
                font-size: 32px;
            }

            .neo-hero-subtitle {
                font-size: 16px;
            }

            .neo-section-header h2 {
                font-size: 28px;
            }

            .neo-cta-buttons {
                flex-direction: column;
            }

            .neo-btn-primary,
            .neo-btn-secondary {
                width: 100%;
                justify-content: center;
            }

            .neo-hotel-card-showcase {
                padding: 24px;
            }
        }





        
/* =================================== 
   SCROLL ANIMATIONS
   =================================== */
.fade-in,
.slide-left,
.slide-right,
.slide-up,
.zoom-in {
  opacity: 0;
  transition: all 0.8s ease;
}

.fade-in {
  transform: translateY(30px);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  transform: translateX(50px);
}

.slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  transform: translateX(-50px);
}

.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

.slide-up {
  transform: translateY(50px);
}

.slide-up.show {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  transform: scale(0.9);
}

.zoom-in.show {
  opacity: 1;
  transform: scale(1);
}

/* =================================== 
   HERO SECTION
   =================================== */
.banking-hero-section {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #f5f3ff 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.banking-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--bg-dark);
  position: relative;
  display: inline-block;
}

.hero-title .highlight {
  color: var(--orange);
  position: relative;
}

.title-underline {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 200px;
  height: 20px;
}

.hero-description {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-subdescription {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 30px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-lg);
}

.download-btn:hover {
  background: #e67d35;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-xl);
}

/* =================================== 
   BANKING SERVICES SECTION
   =================================== */
.banking-services-section {
  padding: 100px 0;
  background: white;
}

.banking-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-primary);
}

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

.banking-services-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.banking-service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.banking-service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
}

.banking-service-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: var(--bg-secondary);
  padding: 20px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banking-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.banking-service-card:hover .banking-service-image img {
  transform: scale(1.05);
}

.banking-service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  padding: 20px;
}

.banking-service-content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.3;
}

.banking-service-content p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
}

/* Image Animation Classes for Banking Services */
.banking-service-image-animate {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.banking-service-image-animate.banking-animate-in {
  opacity: 1;
  transform: scale(1);
}

/* Alternate animation for left-side images */
.banking-service-card:nth-child(even) .banking-service-image-animate {
  transform: scale(0.8) translateX(-30px);
}

.banking-service-card:nth-child(even) .banking-service-image-animate.banking-animate-in {
  transform: scale(1) translateX(0);
}

/* Alternate animation for right-side images */
.banking-service-card:nth-child(odd) .banking-service-image-animate {
  transform: scale(0.8) translateX(30px);
}

.banking-service-card:nth-child(odd) .banking-service-image-animate.banking-animate-in {
  transform: scale(1) translateX(0);
}

/* =================================== 
   FEATURES SECTION
   =================================== */
.banking-features-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f5f3ff 100%);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: var(--text-primary);
}

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

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-top: -40px;
  margin-bottom: 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-item {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

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

.feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--orange) 0%, #ff6b35 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

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

.feature-item h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 700;
}

.feature-item p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Stagger animation delays */
.feature-item:nth-child(1) { transition-delay: 0.1s; }
.feature-item:nth-child(2) { transition-delay: 0.2s; }
.feature-item:nth-child(3) { transition-delay: 0.3s; }
.feature-item:nth-child(4) { transition-delay: 0.4s; }
.feature-item:nth-child(5) { transition-delay: 0.5s; }
.feature-item:nth-child(6) { transition-delay: 0.6s; }

/* =================================== 
   WHY CHOOSE SECTION
   =================================== */
.why-choose-section {
  padding: 100px 0;
  background: white;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-card {
  background: white;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: var(--primary-color);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.why-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.why-icon.orange {
  background: var(--orange);
}

.why-icon.purple {
  background: var(--primary-color);
}

.why-icon i {
  font-size: 2.5rem;
  color: white;
}

.why-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 700;
}

.why-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Stagger delays */
.why-card:nth-child(1) { transition-delay: 0.1s; }
.why-card:nth-child(2) { transition-delay: 0.2s; }
.why-card:nth-child(3) { transition-delay: 0.3s; }
.why-card:nth-child(4) { transition-delay: 0.4s; }
.why-card:nth-child(5) { transition-delay: 0.5s; }
.why-card:nth-child(6) { transition-delay: 0.6s; }

/* =================================== 
   SERVICE-BLOG SECTION
   =================================== */
.service-blog-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.service-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.service-blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.service-blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-blog-card:hover .service-blog-image img {
  transform: scale(1.1);
}

.service-blog-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--orange);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.service-blog-content {
  padding: 30px;
}

.service-blog-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.service-blog-meta i {
  margin-right: 5px;
}

.service-blog-content h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-primary);
  font-weight: 700;
}

.service-blog-content p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.read-more:hover {
  gap: 12px;
  color: var(--primary-dark);
}

/* service-blog stagger */
.service-blog-card:nth-child(1) { transition-delay: 0.1s; }
.service-blog-card:nth-child(2) { transition-delay: 0.2s; }
.service-blog-card:nth-child(3) { transition-delay: 0.3s; }

/* =================================== 
   CTA SECTION
   =================================== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 16px;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

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

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.btn-primary:hover {
  background: #e67d35;
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

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

.btn-secondary:hover {
  background: var(--bg-secondary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

/* =================================== 
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .banking-service-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .banking-service-image {
    height: 300px;
  }

  /* Reset image order for mobile */
  .banking-service-card:nth-child(even) .banking-service-image {
    order: 1;
  }

  .banking-service-card:nth-child(even) .banking-service-content {
    order: 2;
  }

  .features-grid,
  .why-choose-grid,
  .service-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .section-title,
  .banking-section-title {
    font-size: 2rem;
  }

  .banking-service-card {
    padding: 30px 20px;
  }

  .banking-service-image {
    height: 250px;
  }

  .banking-service-content {
    padding: 10px;
  }

  .banking-service-content h3 {
    font-size: 1.5rem;
  }

  .banking-service-content p {
    font-size: 1rem;
  }

  .features-grid,
  .why-choose-grid,
  .service-blog-grid {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

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

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

  .download-btn {
    width: 100%;
    justify-content: center;
  }

  .banking-services-section {
    padding: 60px 0;
  }

  .banking-service-image {
    height: 200px;
    padding: 15px;
  }

  .banking-service-content {
    min-height: auto;
    padding: 5px;
  }

  .banking-service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }

  .feature-item,
  .why-card,
  .service-blog-card {
    padding: 30px 20px;
  }
}






/* =================================== 
   SCROLL ANIMATIONS
   =================================== */
.fade-in,
.slide-left,
.slide-right,
.slide-up,
.zoom-in {
  opacity: 0;
  transition: all 0.8s ease;
}

.fade-in {
  transform: translateY(30px);
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.slide-left {
  transform: translateX(50px);
}

.slide-left.show {
  opacity: 1;
  transform: translateX(0);
}

.slide-right {
  transform: translateX(-50px);
}

.slide-right.show {
  opacity: 1;
  transform: translateX(0);
}

.slide-up {
  transform: translateY(50px);
}

.slide-up.show {
  opacity: 1;
  transform: translateY(0);
}

.zoom-in {
  transform: scale(0.9);
}

.zoom-in.show {
  opacity: 1;
  transform: scale(1);
}

/* =================================== 
   OTHER SERVICES HERO SECTION
   =================================== */
.other-hero-section {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.other-hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.other-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.other-hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2d3748;
  position: relative;
  display: inline-block;
}

.other-hero-title .highlight {
  color: #ff8c42;
  position: relative;
}

.other-title-underline {
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 200px;
  height: 20px;
}

.other-hero-description {
  font-size: 1.3rem;
  color: #2d3748;
  margin-bottom: 16px;
  font-weight: 600;
}

.other-hero-subdescription {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 30px;
}

.other-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ff8c42;
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
  text-decoration: none;
}

.other-download-btn:hover {
  background: #e67d35;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 140, 66, 0.4);
}

.other-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* =================================== 
   OTHER SERVICES SECTION
   =================================== */
.other-services-section {
  padding: 100px 0;
  background: white;
}

.other-section-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 60px;
  color: #2d3748;
}

.other-section-title .highlight {
  color: #ff8c42;
}

.other-services-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.other-service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

.other-service-card:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.other-service-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #fff5f0 0%, #ffe8d9 100%);
  padding: 20px;
  height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.other-service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
  opacity: 1 !important;
  visibility: visible !important;
  transform: scale(1) !important;
}

.other-service-card:hover .other-service-image img {
  transform: scale(1.05) !important;
}

.other-service-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  padding: 20px;
}

.other-service-content h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: #2d3748;
  font-weight: 700;
  line-height: 1.3;
}

.other-service-content p {
  font-size: 1.05rem;
  color: #4a5568;
  line-height: 1.8;
  margin: 0;
}

/* Icon Badge for Service Cards */
.other-service-icon-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background: #ff8c42;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(255, 140, 66, 0.3);
  z-index: 1;
}

.other-service-icon-badge i {
  font-size: 1.8rem;
  color: white;
}

/* Animation Classes - Enhanced to ensure visibility */
.fade-in,
.slide-left,
.slide-right,
.slide-up,
.zoom-in {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1 !important;
  transform: none !important;
}

.slide-left.show {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.slide-right.show {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.slide-up.show {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.zoom-in.show {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Image Animation Classes for Other Services */
.other-service-image-animate {
  opacity: 1 !important;
  transform: scale(1) !important;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.other-service-image-animate.other-animate-in {
  opacity: 1 !important;
  transform: scale(1) !important;
}

/* Remove conflicting animations on load */
.other-service-card:nth-child(even) .other-service-image-animate,
.other-service-card:nth-child(odd) .other-service-image-animate {
  transform: scale(1) !important;
  opacity: 1 !important;
}

.other-service-card:nth-child(even) .other-service-image-animate.other-animate-in,
.other-service-card:nth-child(odd) .other-service-image-animate.other-animate-in {
  transform: scale(1) !important;
  opacity: 1 !important;
}

/* =================================== 
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 992px) {
  .other-hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .other-hero-title {
    font-size: 2.5rem;
  }

  .other-service-card {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .other-service-image {
    height: 300px;
  }

  /* Reset image order for mobile */
  .other-service-card:nth-child(even) .other-service-image {
    order: 1;
  }

  .other-service-card:nth-child(even) .other-service-content {
    order: 2;
  }
}

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

  .other-section-title {
    font-size: 2rem;
  }

  .other-service-card {
    padding: 30px 20px;
  }

  .other-service-image {
    height: 250px;
  }

  .other-service-content {
    padding: 10px;
  }

  .other-service-content h3 {
    font-size: 1.5rem;
  }

  .other-service-content p {
    font-size: 1rem;
  }

  .other-service-icon-badge {
    width: 50px;
    height: 50px;
    top: 15px;
    right: 15px;
  }

  .other-service-icon-badge i {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .other-hero-section {
    padding: 80px 0;
  }

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

  .other-download-btn {
    width: 100%;
    justify-content: center;
  }

  .other-services-section {
    padding: 60px 0;
  }

  .other-service-image {
    height: 200px;
    padding: 15px;
  }

  .other-service-content {
    min-height: auto;
    padding: 5px;
  }

  .other-service-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
  }
}