<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Global Styles */
:root {
    --primary-color: #E65C00;
    --secondary-color: #FF7D1A;
    --primary-dark: #B84800;
    --accent-color: #FFD700;
    --light-color: #f8f9fa;
    --dark-color: #331A00;
    --gray-color: #6c757d;
    --subtle-gray: #edf2f7;
    --transition: all 0.3s ease;
    --box-shadow: 0 10px 30px rgba(230, 92, 0, 0.08);
    --border-radius: 8px;
    --recommendation-color: #E65C00;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2D3748;
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.8;
    font-weight: 400;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

p {
    margin-bottom: 1.5rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

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

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn {
    border-radius: 4px;
    padding: 12px 28px;
    font-weight: 600;
    transition: var(--transition);
    letter-spacing: 0.3px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.2);
}

.btn-outline-light {
    border: 2px solid #fff;
    font-weight: 600;
}

.btn-outline-light:hover {
    background-color: #fff;
    color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
}

.heading-line {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
    border-radius: 2px;
}

.heading-line.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.display-5 {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.8;
}

.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: var(--subtle-gray) !important;
}

/* Top Bar */
.top-bar {
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar i {
    font-size: 0.8rem;
}

.top-bar .social-icons .list-inline-item {
    margin-right: 10px;
}

.top-bar .social-icons a {
    width: 28px;
    height: 28px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.top-bar .social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Navbar */
.navbar {
    padding: 15px 0;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    padding: 10px 15px !important;
    font-size: 0.95rem;
    transition: var(--transition);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus {
    color: #fff;
}

.navbar-dark .navbar-nav .dropdown-toggle::after {
    vertical-align: middle;
    margin-left: 5px;
}

.dropdown-menu {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
    min-width: 200px;
}

.dropdown-item {
    padding: 8px 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark-color);
    transition: var(--transition);
}

.dropdown-item:hover, 
.dropdown-item:focus {
    background-color: rgba(0, 51, 102, 0.05);
    color: var(--primary-color);
}

.btn-message {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.btn-message:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-message img {
    height: 22px;
    width: auto;
}

/* Hero Section with Slider */
.hero-section {
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow: visible;
}

/* Ensure content doesn't get cut off */
.hero-section .row {
    align-items: stretch;
}

.hero-section .col-lg-5 {
    display: flex !important;
    align-items: center;
}

.hero-section .card {
    width: 100%;
    max-width: none;
}

.hero-section .swiper-slide {
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
}

.hero-section .swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5));
}

.hero-section h1 {
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-section .lead {
    font-size: 1.5rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin-bottom: 2rem;
}

.hero-section .card {
    backdrop-filter: blur(5px);
    border: none;
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    animation: float 6s ease-in-out infinite;
}

.hero-section .card-title {
    color: var(--primary-color);
    font-weight: 700;
}

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

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color);
    width: 30px;
    border-radius: 6px;
}

/* Form elements */
.form-control, .form-select {
    padding: 14px 18px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
    box-shadow: none;
    height: auto;
    background-color: white;
}

.form-control:focus, .form-select:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 51, 102, 0.15);
    border-color: rgba(0, 51, 102, 0.3);
}

.form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--dark-color);
}

.form-floating label {
    padding: 1rem 1.25rem;
}

.form-floating &gt; .form-control, 
.form-floating &gt; .form-select {
    height: calc(3.5rem + 2px);
    padding: 1.25rem 1rem;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Bank Rates Slider */
.bank-rates-section {
    padding: 30px 0;
    background-color: #f8f9fa;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.bank-rates-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
}

.rate-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 110px;
    transition: var(--transition);
    border: 1px solid #eef0f5;
    margin: 10px 5px;
}

.rate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 51, 102, 0.1);
}

.rate-bank {
    display: flex;
    align-items: center;
}

.rate-bank img {
    height: 50px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-right: 20px;
}

.rate-bank div {
    font-weight: 600;
    color: var(--dark-color);
    font-size: 1.05rem;
}

.rate-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-left: auto;
    background-color: rgba(0, 51, 102, 0.05);
    padding: 8px 20px;
    border-radius: 30px;
    text-align: center;
    transition: var(--transition);
}

.rate-item:hover .rate-value {
    background-color: rgba(0, 51, 102, 0.1);
}

.rate-value .term {
    font-size: 0.8rem;
    color: var(--gray-color);
    display: block;
    text-align: center;
    font-weight: 500;
    margin-top: 3px;
}

.loading-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Custom Swiper Navigation */
.ratesSwiper .swiper-button-next,
.ratesSwiper .swiper-button-prev {
    color: var(--primary-color);
    background-color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
    transition: var(--transition);
}

.ratesSwiper .swiper-button-next:hover,
.ratesSwiper .swiper-button-prev:hover {
    opacity: 1;
    background-color: var(--primary-color);
    color: white;
}

.ratesSwiper .swiper-button-next:after,
.ratesSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Services Section */
.icon-box {
    height: 90px;
    width: 90px;
    margin: 0 auto;
    background-color: rgba(0, 51, 102, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    margin-bottom: 1.5rem;
}

.service-card {
    transition: var(--transition);
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 100%;
    border: 1px solid #eef0f5 !important;
}

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

.service-card:hover .icon-box {
    background-color: var(--primary-color);
    transform: rotateY(360deg);
    transition: transform 0.8s, background-color 0.3s;
}

.service-card:hover .icon-box i {
    color: white !important;
}

.service-card .card-body {
    padding: 30px;
}

.service-card .btn-link {
    text-decoration: none;
    padding: 0;
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
}

.service-card .btn-link i {
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.service-card:hover .btn-link i {
    transform: translateX(5px);
}

/* Bank Offers Cards */
.bank-offer-card {
    border: 1px solid #eef0f5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    height: 100%;
    overflow: hidden;
    background-color: white;
}

.bank-offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow) !important;
}

.bank-logo {
    max-height: 60px;
    object-fit: contain;
    margin-bottom: 20px;
}

.rate-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: var(--dark-color);
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 1.1rem;
    z-index: 1;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.rates-table {
    width: 100%;
    margin-bottom: 25px;
    border-collapse: separate;
    border-spacing: 0;
}

.rates-table th, .rates-table td {
    padding: 10px 12px;
    text-align: center;
    border: 1px solid #eef0f5;
}

.rates-table th {
    background-color: rgba(0, 51, 102, 0.05);
    font-weight: 600;
    color: var(--dark-color);
}

.rates-table th:first-child {
    border-top-left-radius: 8px;
}

.rates-table th:last-child {
    border-top-right-radius: 8px;
}

.rates-table td.best-rate {
    font-weight: bold;
    color: var(--primary-color);
    background-color: rgba(0, 51, 102, 0.05);
}

/* Term Selector */
.term-selector {
    display: flex;
    flex-wrap: wrap;
}

.term-btn {
    min-width: 110px;
    transition: all 0.3s ease;
    margin-right: 10px;
    margin-bottom: 10px;
    padding: 12px 20px;
    border-width: 2px;
    font-weight: 500;
}

.term-btn.active {
    background-color: white;
    color: var(--primary-color);
    border-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    font-weight: bold;
}

/* Accordion */
.accordion-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-bottom: 15px;
    border: 1px solid #eef0f5;
}

.accordion-button {
    background-color: #fff;
    padding: 20px 25px;
    font-weight: 600;
    border-radius: var(--border-radius) !important;
    color: var(--dark-color);
}

.accordion-button:not(.collapsed) {
    background-color: #fff;
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: #eef0f5;
}

.accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003366'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button .fa-plus-circle {
    transition: transform 0.3s ease;
    color: var(--primary-color);
}

.accordion-button:not(.collapsed) .fa-plus-circle {
    transform: rotate(45deg);
}

.accordion-body {
    padding: 20px 25px;
}

/* Feature List */
.feature-list li {
    padding-left: 10px;
    position: relative;
    padding-bottom: 12px;
    font-size: 1.05rem;
}

.feature-list li i {
    margin-right: 10px;
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* Contact Section */
.contact-info {
    border-radius: var(--border-radius);
    height: 100%;
    padding: 40px 30px;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: var(--dark-color);
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(0, 51, 102, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
}

/* Extended contact form */
.card.shadow-lg {
    border: none;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.form-section {
    margin-bottom: 1.5rem;
}

.form-section-title {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eef0f5;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.footer-brand {
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 15px;
    border-radius: var(--border-radius);
}

.footer-logo {
    filter: brightness(0) invert(1);
    height: 40px;
    width: auto;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: white !important;
    transform: translateY(-3px);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    position: relative;
    padding-left: 15px;
    font-size: 0.95rem;
}

.footer-links a::before {
    content: 'â€º';
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--accent-color);
    font-size: 18px;
    opacity: 0;
    transform: translateX(-5px);
    transition: var(--transition);
}

.footer-links a:hover {
    color: white !important;
    text-decoration: none;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 0.95rem;
}

.footer-contact li i {
    margin-top: 5px;
    color: var(--accent-color);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
}

/* Notification */
.notification-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
}

.notification {
    background-color: white;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 20px;
    margin-bottom: 15px;
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    max-width: 350px;
    display: flex;
    align-items: center;
}

.notification.success {
    border-left: 4px solid #28a745;
}

.notification.error {
    border-left: 4px solid #dc3545;
}

.notification.show {
    transform: translateX(0);
    opacity: 1;
}

.notification i {
    margin-right: 12px;
    font-size: 20px;
}

.notification.success i {
    color: #28a745;
}

.notification.error i {
    color: #dc3545;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Responsive Styling */
/* Large Laptops and smaller desktops */
@media (max-width: 1399px) {
    .hero-section {
        min-height: auto;
        height: auto;
    }
    
    .hero-section .min-vh-100 {
        min-height: auto !important;
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .hero-section .swiper-slide {
        height: auto;
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-section .card {
        max-height: none;
        overflow: visible;
    }
    
    .hero-section .card-body {
        padding: 2rem 1.5rem !important;
    }
}

@media (max-width: 1199px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .hero-section .min-vh-100 {
        padding-top: 100px;
        padding-bottom: 70px;
    }
    
    .hero-section .card-body {
        padding: 1.75rem 1.25rem !important;
    }
}

/* Tablets and small laptops */
@media (max-width: 991px) {
    .hero-section .min-vh-100 {
        padding-top: 80px;
        padding-bottom: 60px;
        min-height: auto !important;
    }
    
    .hero-section .swiper-slide {
        height: auto;
        min-height: auto;
        padding: 30px 0;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.2rem;
    }
    
    .hero-section .card {
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .hero-section .card-body {
        padding: 1.5rem !important;
    }
}

@media (max-width: 767px) {
    .navbar .nav-link::after {
        display: none;
    }
    
    .hero-section {
        height: auto;
        min-height: 100vh;
    }
    
    .hero-section .min-vh-100 {
        min-height: auto !important;
        padding-top: 80px;
        padding-bottom: 60px;
    }
    
    .hero-section .col-md-6,
    .hero-section .col-md-5 {
        text-align: center;
    }
    
    .hero-section .btn {
        margin-bottom: 15px;
        width: 100%;
        max-width: 280px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-section .card {
        margin-top: 40px;
        margin-bottom: 20px;
        background-color: rgba(255, 255, 255, 0.95);
    }
    
    .hero-section .card-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-section .card-body {
        padding: 1.5rem !important;
    }
    
    .hero-section .form-control,
    .hero-section .form-select {
        padding: 12px 16px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .hero-section .btn-primary {
        padding: 12px 20px;
        font-size: 1rem;
        font-weight: 600;
    }
    
    .heading-line {
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Make sure the form is visible on mobile */
    .hero-section .col-lg-5 {
        display: block !important;
    }
}

/* Extra Small Devices (very small phones) */
@media (max-width: 480px) {
    .hero-section .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .hero-section h1 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-section .lead {
        font-size: 1rem;
    }
    
    .hero-section .card-body {
        padding: 1.25rem !important;
    }
    
    .hero-section .card-title {
        font-size: 1.25rem;
        text-align: center;
    }
    
    .hero-section .btn {
        max-width: 100%;
        padding: 14px 20px;
    }
    
    .hero-section .form-control,
    .hero-section .form-select {
        padding: 14px 16px;
        margin-bottom: 8px;
    }
    
    .hero-section .form-label {
        margin-bottom: 6px;
        font-size: 0.9rem;
    }
    
    .hero-section .form-check-label {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Animations for content */
[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* LazyLoad */
.lazy {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.lazy.loaded {
    opacity: 1;
}

/* Bank Slider */
.bank-slider-container {
    position: relative;
    padding: 10px 0 40px;
}

.bankSwiper {
    padding: 20px 40px;
}

.bankSwiper .swiper-button-next,
.bankSwiper .swiper-button-prev {
    color: white;
    background-color: var(--primary-color);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.bankSwiper .swiper-button-next:hover,
.bankSwiper .swiper-button-prev:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.bankSwiper .swiper-button-next:after,
.bankSwiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

/* Enhanced Bank Card */
.bank-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 10px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.bank-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 51, 102, 0.1);
    border-color: rgba(0, 51, 102, 0.1);
}

.bank-card-badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 6px 12px;
    background-color: var(--recommendation-color);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 0 var(--border-radius) 0 var(--border-radius);
    z-index: 1;
}

.bank-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.bank-logo-placeholder {
    width: 100px;
    height: 50px;
    background-color: var(--subtle-gray);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-color);
    transition: all 0.3s ease;
}

.bank-card-rate {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.bank-card-term {
    font-size: 0.9rem;
    color: var(--gray-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.bank-card-country {
    font-size: 0.9rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.bank-card-button {
    margin-top: auto;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.bank-card-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.1);
}

/* Enhanced section styling */
.section-bg-gradient {
    background: linear-gradient(135deg, #f9fafc 0%, #edf2f7 100%);
}

.section-divider {
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    width: 100%;
    margin: 0;
    padding: 0;
}

.section-overlap {
    margin-top: -50px;
    position: relative;
    z-index: 2;
}

/* Custom shadow elements */
.shadow-custom {
    box-shadow: var(--box-shadow);
}

.shadow-lg {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
}

/* Image styling */
.img-hover-zoom {
    overflow: hidden;
    border-radius: var(--border-radius);
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

.rounded-custom {
    border-radius: var(--border-radius);
}

/* Enhanced forms */
.form-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    border: none;
}

.form-card .card-header {
    padding: 25px 30px;
    background: var(--primary-color);
    color: white;
    border-bottom: none;
}

.form-card .card-header h3 {
    margin-bottom: 0;
    color: white;
}

.form-card .card-body {
    padding: 30px;
} 

/* Detailed form styling */
.custom-form .form-group {
    margin-bottom: 1.5rem;
}

.custom-form label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--dark-color);
}

.custom-form .form-control,
.custom-form .form-select {
    padding: 12px 15px;
    height: auto;
    border-radius: var(--border-radius);
    border: 1px solid #e0e0e0;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.custom-form .form-control:focus,
.custom-form .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 51, 102, 0.15);
}

.custom-form .input-group-text {
    background-color: #f9fafc;
    border-color: #e0e0e0;
    color: var(--gray-color);
}

.custom-form .form-text {
    color: var(--gray-color);
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

/* Bank logo placeholder */
.bank-logo-placeholder {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.rate-item:hover .bank-logo-placeholder {
    background-color: var(--secondary-color);
    transform: scale(1.05);
}

/* Header Styling - Corporate Design */
.bg-primary-dark {
    background-color: var(--primary-dark);
}

/* Bank logo container */
.bank-logo-container {
    width: 120px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #fff;
    border-radius: 5px;
    padding: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.bank-logo-container img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
}

.bank-logo-container:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Rate Value with bold styling */
.rate-value.mb-md-0.fw-bold {
    font-weight: 700 !important;
    margin-bottom: 0 !important;
}

/* Bank info card in modal */
.bank-info-card {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.selected-bank-details {
    padding: 10px;
}

.bank-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.detail-label {
    font-size: 0.8rem;
    color: var(--gray-color);
    margin-bottom: 5px;
    font-weight: 500;
}

.detail-value {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
}

/* Modal customization */
.modal-header.bg-primary {
    border-bottom: none;
}

.modal-dialog {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: none;
    padding: 1rem 2rem 2rem;
}

/* Update h3 on blue background to be white */
.bg-primary h3 {
    color: #fff;
}

/* CTA Sections */
.bg-gradient-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,&lt;svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"&gt;&lt;defs&gt;&lt;pattern id="grain" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"&gt;&lt;circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/&gt;&lt;circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/&gt;&lt;circle cx="50" cy="10" r="1" fill="white" opacity="0.1"/&gt;&lt;circle cx="10" cy="60" r="1" fill="white" opacity="0.1"/&gt;&lt;circle cx="90" cy="40" r="1" fill="white" opacity="0.1"/&gt;&lt;/pattern&gt;&lt;/defs&gt;&lt;rect width="100" height="100" fill="url(%23grain)"/&gt;&lt;/svg&gt;');
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-content h3 {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content .btn {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.cta-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Enhanced Icon Box */
.icon-box {
    position: relative;
    margin-bottom: 2rem;
}

.icon-box i {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

/* CTA Cards */
.cta-card {
    transition: all 0.3s ease;
    border: none;
    background: white;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-card .icon-box {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.cta-card .icon-box i {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
    filter: none !important;
}

/* Button Enhancements */
.btn-warning {
    background: linear-gradient(45deg, #FFD700, #FFA500);
    border: none;
    color: #333;
    font-weight: 600;
}

.btn-warning:hover {
    background: linear-gradient(45deg, #FFA500, #FF8C00);
    color: #fff;
    transform: translateY(-2px);
}

/* Final CTA Section */
.bg-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

/* Gap utility for responsive design */
.gap-3 {
    gap: 1rem;
}

/* Responsive CTA Buttons */
@media (max-width: 767px) {
    .cta-content .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .row.g-3 .col-auto {
        width: 100%;
    }
    
    .row.g-3 .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .d-flex.flex-column.flex-sm-row {
        flex-direction: column !important;
    }
    
    .d-flex.flex-column.flex-sm-row .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* Cookie Consent System */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    z-index: 9999;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: none;
}

.cookie-consent-banner.show {
    transform: translateY(0);
}

.cookie-content {
    padding: 20px 0;
}

.cookie-text h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 8px;
}

.cookie-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-buttons .btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 8px 20px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.cookie-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Cookie Settings Modal */
#cookieSettingsModal .modal-content {
    border-radius: 12px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

#cookieSettingsModal .modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
}

#cookieSettingsModal .modal-title {
    font-weight: 600;
}

#cookieSettingsModal .btn-close {
    filter: invert(1);
}

.cookie-category {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.cookie-category:hover {
    background-color: #f1f3f4;
    transform: translateX(5px);
}

.cookie-category h6 {
    font-weight: 600;
    color: var(--dark-color);
}

.cookie-category .text-success {
    color: #28a745 !important;
}

.cookie-category .text-info {
    color: #17a2b8 !important;
}

.cookie-category .text-warning {
    color: #ffc107 !important;
}

/* Custom form switches */
.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-check-input:focus {
    border-color: rgba(230, 92, 0, 0.25);
    box-shadow: 0 0 0 0.25rem rgba(230, 92, 0, 0.25);
}

/* Cookie floating button (optional) */
.cookie-settings-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 1000;
    display: none;
}

.cookie-settings-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cookie-settings-btn.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive cookie banner */
@media (max-width: 767px) {
    .cookie-content {
        padding: 15px 0;
    }
    
    .cookie-text h5 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .cookie-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .cookie-buttons {
        margin-top: 15px;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        margin-bottom: 8px;
        padding: 10px 15px;
    }
    
    .cookie-category {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .cookie-category h6 {
        font-size: 1rem;
    }
    
    .cookie-category p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .cookie-consent-banner {
        padding: 0 10px;
    }
    
    .cookie-text h5 {
        font-size: 1rem;
    }
    
    .cookie-text p {
        font-size: 0.85rem;
    }
    
    #cookieSettingsModal .modal-dialog {
        margin: 10px;
    }
    
    .cookie-category {
        padding: 12px;
    }
}

/* Animation for cookie consent */
@keyframes slideUpFromBottom {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-banner.show {
    animation: slideUpFromBottom 0.3s ease-out;
}

/* Cookie notification integration */
.notification.cookie-notification {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
}

.notification.cookie-notification i {
    color: white;
}</pre></body></html>