* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
}

body.no-scroll {
    overflow-y: hidden;
}

/* Landing Splash */
.landing-splash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: transform 0.8s ease-in-out;
}

.wave-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
    animation: waveGlow 4s ease-in-out infinite;
}

@keyframes waveGlow {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.3; }
    50% { transform: scale(1.1) rotate(180deg); opacity: 0.6; }
}

.landing-content {
    text-align: center;
    z-index: 2;
}

.main-title {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(45deg, #00ffff, #8a2be2, #00ffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5)); }
    to { filter: drop-shadow(0 0 40px rgba(138, 43, 226, 0.8)); }
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #b0b0b0;
}

.cta-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #00ffff, #8a2be2);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 50px rgba(0, 255, 255, 0.6);
}

/* Horizontal Container */
.horizontal-container {
    display: flex;
    width: 600vw;
    height: 100vh;
    transform: translateX(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.slide-content {
    max-width: 1200px;
    padding: 0 2rem;
    text-align: center;
}

.slide-title {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #00ffff, #ffffff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Credit Cards Section */
.credit-cards {
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 100%);
}

.card-showcase {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    perspective: 1000px;
}

.floating-card {
    width: 300px;
    height: 180px;
    border-radius: 20px;
    position: relative;
    animation: float 3s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.card-1 {
    background: linear-gradient(135deg, #00ffff, #0080ff);
    box-shadow: 0 20px 40px rgba(0, 255, 255, 0.3);
    animation-delay: 0s;
}

.card-2 {
    background: linear-gradient(135deg, #8a2be2, #ff1493);
    box-shadow: 0 20px 40px rgba(138, 43, 226, 0.3);
    animation-delay: 1s;
}

.card-3 {
    background: linear-gradient(135deg, #00ff7f, #32cd32);
    box-shadow: 0 20px 40px rgba(0, 255, 127, 0.3);
    animation-delay: 2s;
}

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

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
}

.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.feature {
    padding: 10px 20px;
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 25px;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Loans Section */
.loans {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.emi-calculator {
    text-align: center;
}

.calc-display {
    margin-bottom: 2rem;
}

.amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.emi {
    font-size: 1.2rem;
    color: #b0b0b0;
}

.calc-slider {
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #00ffff, #8a2be2);
    border-radius: 3px;
    position: relative;
    cursor: pointer;
}

.calc-slider::after {
    content: '';
    position: absolute;
    top: -5px;
    left: 60%;
    width: 16px;
    height: 16px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.loan-text {
    font-size: 1.3rem;
    color: #b0b0b0;
}

/* Banking Section */
.banking {
    background: linear-gradient(135deg, #16213e 0%, #0f3460 100%);
}

.dashboard-mockup {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.balance {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffff;
}

.account-type {
    color: #8a2be2;
    font-weight: 500;
}

.chart-container {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.transactions {
    space-y: 1rem;
}

.transaction {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.positive { color: #00ff7f; }
.negative { color: #ff6b6b; }

.banking-text {
    font-size: 1.3rem;
    color: #b0b0b0;
}

/* Data Hub Section */
.data-hub {
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #00ffff;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #b0b0b0;
    font-weight: 500;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.testimonial-carousel {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    padding: 2rem;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

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

.client-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ffff, #8a2be2);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.floating-card:hover .card-image {
    opacity: 1;
}

.testimonial p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

.client-name {
    color: #00ffff;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #16213e 0%, #0a0a0a 100%);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.harbor-illustration {
    position: relative;
    height: 300px;
}

.ship {
    position: absolute;
    width: 60px;
    height: 40px;
    background: linear-gradient(45deg, #00ffff, #0080ff);
    border-radius: 10px;
    animation: sail 4s ease-in-out infinite;
}

.ship-1 {
    top: 50px;
    left: 20%;
    animation-delay: 0s;
}

.ship-2 {
    top: 150px;
    left: 60%;
    animation-delay: 2s;
}

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

.lighthouse {
    position: absolute;
    top: 20px;
    right: 20%;
    width: 20px;
    height: 100px;
    background: linear-gradient(180deg, #8a2be2, #ffffff);
    border-radius: 10px;
    animation: lighthouse 2s ease-in-out infinite;
}

@keyframes lighthouse {
    0%, 100% { box-shadow: 0 0 20px rgba(138, 43, 226, 0.5); }
    50% { box-shadow: 0 0 50px rgba(138, 43, 226, 1); }
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00ffff, #8a2be2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.apply-button {
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    background: linear-gradient(45deg, #8a2be2, #00ffff);
    border: none;
    border-radius: 50px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(138, 43, 226, 0.3);
}

.apply-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 50px rgba(138, 43, 226, 0.6);
}

/* Navigation Dots */
.nav-dots {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.dot:hover {
    background: #8a2be2;
    box-shadow: 0 0 15px rgba(138, 43, 226, 0.5);
}

/* Footer */
.dock-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    z-index: 100;
    pointer-events: auto;
}

.dock-separator {
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    margin-bottom: 1rem;
}

.dock-menu {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 1rem;
}

.dock-item {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.dock-item:hover {
    color: #00ffff;
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00ffff, #8a2be2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

/* Page Styles */
.page {
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    padding: 2rem;
    color: #ffffff;
    overflow-y: auto;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
}

.page-title {
    font-size: 3rem;
    font-weight: 600;
    background: linear-gradient(45deg, #00ffff, #8a2be2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #00ffff, #8a2be2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.back-btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #00ffff, #8a2be2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    margin-bottom: 2rem;
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(0, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title { font-size: 2.5rem; }
    .slide-title { font-size: 2rem; }
    .card-showcase { flex-direction: column; align-items: center; }
    .floating-card { width: 250px; height: 150px; }
    .features { flex-direction: column; gap: 1rem; }
    .stats-grid { grid-template-columns: 1fr; gap: 2rem; }
    .split-layout { grid-template-columns: 1fr; gap: 2rem; }
    .dock-menu { gap: 1.5rem; }
    .nav-dots { right: 1rem; }
    .page-title { font-size: 2rem; }
    .page-content { padding: 2rem; }
    .contact-info { grid-template-columns: 1fr; }
}

/* Hidden class for landing splash */
.landing-splash.hidden {
    transform: translateY(-100vh);
}

.horizontal-container.visible {
    display: flex;
}