/* Modern Vivid Blue & Sky Design with Enhanced Interactivity */

:root {
    --sky-light: #87CEEB;
    --sky-bright: #00BFFF;
    --ocean-blue: #1E90FF;
    --deep-blue: #0066CC;
    --azure: #007FFF;
    --cyan: #00CED1;
    --turquoise: #40E0D0;
    --electric-blue: #0080FF;
    --royal-blue: #4169E1;
    --vivid-sky: #00A6FF;
    --light-cyan: #E0F7FA;
    --bright-aqua: #00FFFF;
    --dark-text: #1A365D;
    --light-text: #2C5282;
    --card-shadow: 0 10px 30px rgba(0, 127, 255, 0.2);
    --hover-shadow: 0 15px 40px rgba(0, 127, 255, 0.3);
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Muli', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-text);
    background: linear-gradient(135deg, #E0F7FA 0%, #87CEEB 100%);
    overflow-x: hidden;
}

/* Smooth gradient background animation */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.site-wrap {
    background: linear-gradient(-45deg, var(--sky-light), var(--ocean-blue), var(--cyan), var(--vivid-sky));
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Header modernization */
.site-navbar {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.site-logo {
    display: inline-block;
    transition: all 0.3s ease;
}

.site-logo img {
    max-height: 60px;
    height: auto;
    width: auto;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s ease;
}

.site-logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 127, 255, 0.3));
}

/* Ensure logo is visible on mobile */
@media (max-width: 768px) {
    .site-logo img {
        max-height: 45px;
    }
}

.site-navbar.scrolled {
    padding: 10px 0 !important;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
}

.site-menu a {
    color: var(--dark-text) !important;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.site-menu a:hover {
    color: var(--ocean-blue) !important;
    transform: translateY(-2px);
}

.site-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-blue), var(--cyan));
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.site-menu a:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Hero section with abstract background */
.intro-section {
    background:
        linear-gradient(135deg, rgba(30, 144, 255, 0.92) 0%, rgba(0, 191, 255, 0.88) 100%),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800"><defs><linearGradient id="grad1" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%2300BFFF;stop-opacity:0.3"/><stop offset="100%" style="stop-color:%231E90FF;stop-opacity:0.3"/></linearGradient></defs><circle cx="150" cy="150" r="120" fill="url(%23grad1)"/><circle cx="950" cy="200" r="180" fill="url(%23grad1)"/><circle cx="600" cy="500" r="150" fill="url(%23grad1)"/><circle cx="250" cy="650" r="100" fill="url(%23grad1)"/><circle cx="1050" cy="600" r="140" fill="url(%23grad1)"/><path d="M0,300 Q300,200 600,300 T1200,300" stroke="%23ffffff" stroke-width="3" fill="none" opacity="0.2"/><path d="M0,500 Q400,400 800,500 T1200,500" stroke="%23ffffff" stroke-width="2" fill="none" opacity="0.15"/></svg>') center center;
    background-size: cover;
    background-blend-mode: overlay;
    padding: 80px 0 60px 0 !important;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.intro-section .container-fluid {
    width: 100%;
    position: relative;
    z-index: 2;
}

.intro-section .owl-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Animated abstract background overlay */
.intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 191, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(30, 144, 255, 0.1) 0%, transparent 60%);
    animation: moveAbstract 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes moveAbstract {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 1;
    }
}

/* Logo watermark */
.intro-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: url('../images/logo_beta.png') center center no-repeat;
    background-size: contain;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

/* Welcome Message Styling */
.welcome-message {
    padding: 30px 20px;
    margin-bottom: 40px;
    position: relative;
    z-index: 3;
    text-align: center;
}

.welcome-title {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    animation: fadeInDown 1s ease;
    text-transform: none;
}

.welcome-subtitle {
    text-align: center;
    font-size: 2rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
    letter-spacing: 0.5px;
    animation: fadeInUp 1.2s ease;
    display: block;
}

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

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

.slide-text {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.slide-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s ease;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.slide-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    animation: fadeInUp 1s ease;
    margin: 15px auto;
    color: rgba(255, 255, 255, 0.95);
}

.slide-text p:not(.mb-5):not([style*="text-decoration"]) {
    max-width: 750px;
}

/* Convert buttons to text links */
.slide-text .btn-outline-light {
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff !important;
    text-decoration: underline;
    text-underline-offset: 4px;
    display: inline;
    border-radius: 0;
    transition: all 0.3s ease;
}

.slide-text .btn-outline-light::before {
    display: none;
}

.slide-text .btn-outline-light:hover {
    transform: none;
    box-shadow: none !important;
    color: var(--light-cyan) !important;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Button redesign */
.btn-primary, .btn-outline-light {
    background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
    border: none;
    padding: 10px 25px !important;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 191, 255, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before, .btn-outline-light::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before, .btn-outline-light:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary:hover, .btn-outline-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 191, 255, 0.7);
}

/* Section styling */
.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--deep-blue), var(--sky-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--electric-blue), var(--turquoise));
    border-radius: 2px;
}

/* Cards with modern design */
.process {
    background: rgba(255, 255, 255, 0.9) !important;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    height: 100%;
}

.process:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--hover-shadow);
    border-color: var(--ocean-blue);
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.3), rgba(0, 191, 255, 0.3)) !important;
}

.process .flaticon-investor,
.process .flaticon-bank,
.process .flaticon-reward,
.process .flaticon-group,
.process .flaticon-share,
.process .flaticon-analysing {
    background: linear-gradient(135deg, var(--ocean-blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.process:hover .flaticon-investor,
.process:hover .flaticon-bank,
.process:hover .flaticon-reward,
.process:hover .flaticon-group,
.process:hover .flaticon-share,
.process:hover .flaticon-analysing {
    transform: rotateY(360deg);
}

.process h3 {
    color: var(--dark-text);
    font-size: 1.4rem;
    margin: 20px 0;
    font-weight: 600;
}

.process p, .process ul, .process li {
    color: var(--dark-text);
}

/* Service cards for legal section */
.service {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.custom-icon-wrap {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--cyan), var(--turquoise));
    border-radius: 50%;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.service:hover .custom-icon-wrap {
    transform: rotate(360deg);
}

/* Image styling */
.img-fluid {
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.img-fluid:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Background sections */
.bg-light {
    background: linear-gradient(135deg, #ffffff 0%, var(--light-cyan) 100%) !important;
}

.bg-primary, .pricing-counter {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--sky-bright) 100%) !important;
}

/* Text colors for intense backgrounds */
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary h5,
.pricing-counter h1, .pricing-counter h2, .pricing-counter h3, .pricing-counter h4, .pricing-counter h5,
.intro-section h1, .intro-section h2, .intro-section h3, .intro-section h4, .intro-section h5 {
    color: #ffffff !important;
}

.bg-primary p, .bg-primary .section-desc, .bg-primary li,
.pricing-counter p, .pricing-counter .section-desc, .pricing-counter li,
.intro-section p, .intro-section .section-desc, .intro-section li {
    color: #ffffff !important;
}

.bg-primary .section-title, .pricing-counter .section-title {
    background: linear-gradient(135deg, #ffffff, var(--light-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ensure process cards inside intense backgrounds have proper contrast */
.bg-primary .process, .pricing-counter .process {
    background: rgba(255, 255, 255, 0.95) !important;
}

.bg-primary .process h3, .pricing-counter .process h3,
.bg-primary .process p, .pricing-counter .process p,
.bg-primary .process ul, .pricing-counter .process ul,
.bg-primary .process li, .pricing-counter .process li {
    color: var(--dark-text) !important;
}

/* Contact form */
.form-control {
    border: 2px solid var(--sky-light);
    border-radius: 15px;
    padding: 15px 20px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.form-control:focus {
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 127, 255, 0.25);
    transform: translateY(-2px);
    background: #fff;
}

/* Footer */
.footer-section {
    background: linear-gradient(135deg, var(--dark-text) 0%, #34495e 100%) !important;
    color: #fff;
    padding: 60px 0 30px;
}

.footer-section h3 {
    color: var(--cyan);
}

.footer-section a {
    color: var(--sky-light);
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: var(--bright-aqua);
    transform: translateX(5px);
    display: inline-block;
}

/* Modal styling */
.modal-content {
    border-radius: 20px;
    border: none;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(224, 247, 250, 0.95));
    backdrop-filter: blur(10px);
}

.modal-header {
    border-bottom: 2px solid var(--sky-bright);
    background: linear-gradient(135deg, var(--ocean-blue), var(--cyan));
}

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

.table {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    overflow: hidden;
}

.table thead {
    background: linear-gradient(135deg, var(--ocean-blue), var(--cyan));
    color: #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.image-absolute-box {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

/* Owl carousel custom styling */
.owl-carousel {
    position: relative;
}

.owl-carousel .owl-stage-outer {
    overflow: hidden;
    border-radius: 30px;
}

.owl-carousel .owl-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.owl-carousel .owl-item.active {
    opacity: 1;
}

.owl-carousel .owl-nav button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)) !important;
    backdrop-filter: blur(10px);
    color: #fff !important;
    border-radius: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    font-size: 18px;
    opacity: 0.7;
}

.owl-carousel .owl-nav button.owl-prev {
    left: 30px;
}

.owl-carousel .owl-nav button.owl-next {
    right: 30px;
}

.owl-carousel .owl-nav button:hover {
    transform: translateY(-50%) scale(1.15);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.25)) !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.owl-carousel .owl-nav button:active {
    transform: translateY(-50%) scale(0.95);
}

/* Increase spacing on larger screens */
@media (min-width: 1200px) {
    .owl-carousel .owl-nav button.owl-prev {
        left: 50px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 50px;
    }
}

/* Owl carousel dots */
.owl-carousel .owl-dots {
    text-align: center;
    padding-top: 12px;
    margin-top: 5px;
}

.owl-carousel .owl-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin: 0 4px;
    background: rgba(255, 255, 255, 0.4) !important;
    border-radius: 50%;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.owl-carousel .owl-dot:hover {
    background: rgba(255, 255, 255, 0.6) !important;
    transform: scale(1.2);
}

.owl-carousel .owl-dot.active {
    background: #ffffff !important;
    width: 25px;
    border-radius: 6px;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Smooth transitions */
.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Responsive carousel */
@media (max-width: 768px) {
    .intro-section {
        padding: 60px 0 40px 0 !important;
        min-height: 500px;
    }

    .welcome-message {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .welcome-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .welcome-subtitle {
        font-size: 1.1rem;
    }

    .intro-section::after {
        width: 300px;
        height: 300px;
        opacity: 0.05;
    }

    .slide-text {
        padding: 20px 15px;
    }

    .slide-text h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .slide-text p {
        font-size: 0.95rem;
        margin: 3px auto;
        line-height: 1.3;
    }

    .slide-text .btn-outline-light {
        font-size: 0.75rem;
    }

    .owl-carousel .owl-nav button {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .owl-carousel .owl-nav button.owl-prev {
        left: 10px;
    }

    .owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }

    .owl-carousel .owl-dots {
        padding-top: 10px;
        margin-top: 0;
    }
}

/* Loading spinner */
.loader {
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-bright));
}

/* Responsive enhancements */
@media (max-width: 768px) {
    .slide-text h1 {
        font-size: 2rem;
    }

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

    .process {
        margin-bottom: 30px;
    }

    .site-menu a::after {
        display: none;
    }
}

/* Scroll to top button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.5);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 191, 255, 0.7);
}

/* Interactive hover effects for links */
a {
    position: relative;
    transition: all 0.3s ease;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-cyan);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--ocean-blue), var(--cyan));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--electric-blue), var(--turquoise));
}

/* Entrance login button */
.cta .nav-link span {
    background: linear-gradient(135deg, var(--electric-blue), var(--cyan)) !important;
    border: none !important;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 3px 10px rgba(0, 191, 255, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    white-space: nowrap;
}

.cta .nav-link span .icon-person {
    margin-right: 6px;
    font-size: 1em;
    vertical-align: middle;
}

.cta .nav-link:hover span {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 191, 255, 0.6);
}

/* Responsive adjustments for login button */
@media (max-width: 1200px) {
    .cta .nav-link span {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}

@media (max-width: 992px) {
    .cta .nav-link span {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .cta .nav-link span .icon-person {
        margin-right: 4px;
        font-size: 0.9em;
    }
}

@media (max-width: 768px) {
    .cta .nav-link span {
        padding: 5px 10px;
        font-size: 0.75rem;
    }
}

/* List styling */
.ul-check li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.ul-check li:hover {
    transform: translateX(5px);
    color: var(--ocean-blue);
}

.ul-check li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: linear-gradient(135deg, var(--cyan), var(--turquoise));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}

/* Modern scroll animations - replaces deprecated AOS */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Section-1 (Register section) with vivid blue background and white text */
.section-1 {
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-bright)) !important;
}

.section-1 h1, .section-1 h2, .section-1 h3, .section-1 h4, .section-1 h5,
.section-1 .section-title {
    color: #ffffff !important;
}

.section-1 p, .section-1 li {
    color: #ffffff !important;
}

.section-1 .ul-check li {
    color: #ffffff !important;
}

.section-1 .ul-check li::before {
    background: linear-gradient(135deg, #ffffff, var(--light-cyan));
}

.section-1 .section-title {
    background: linear-gradient(135deg, #ffffff, var(--light-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* White box for register form in section-1 */
.section-1 .image-absolute-box .box {
    background: rgba(255, 255, 255, 0.95);
}

.section-1 .image-absolute-box .box h3 {
    color: var(--ocean-blue) !important;
}

.section-1 .image-absolute-box .box p {
    color: var(--dark-text) !important;
}

/* Modern registration form button */
.btn-register-form {
    display: inline-block;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyan)) !important;
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.4);
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-register-form .icon-edit {
    margin-right: 8px;
    font-size: 1.1em;
    vertical-align: middle;
}

.btn-register-form:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 191, 255, 0.6);
    text-decoration: none;
    color: #ffffff !important;
}

.btn-register-form:active {
    transform: translateY(-1px);
}

/* Additional contrast fixes for specific sections */
.testimonial-wrap {
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-bright)) !important;
    color: #ffffff;
    padding: 80px 0;
}

.testimonial-wrap h1,
.testimonial-wrap h2,
.testimonial-wrap h3,
.testimonial-wrap h4,
.testimonial-wrap h5,
.testimonial-wrap .section-title {
    color: #ffffff !important;
}

.testimonial-wrap p {
    color: #ffffff !important;
}

.testimonial-wrap .section-title {
    background: linear-gradient(135deg, #ffffff, var(--light-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Financial section with blue background and light text */
#financial-section {
    background: linear-gradient(135deg, var(--ocean-blue), var(--sky-bright)) !important;
    padding: 80px 0;
}

#financial-section h1,
#financial-section h2,
#financial-section h3,
#financial-section h4,
#financial-section h5,
#financial-section .section-title {
    color: #ffffff !important;
}

#financial-section p {
    color: #ffffff !important;
}

#financial-section .section-title {
    background: linear-gradient(135deg, #ffffff, var(--light-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#financial-section a {
    color: #ffffff;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    display: inline-block;
    margin: 5px 0;
}

#financial-section a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateX(5px);
    text-decoration: none;
}

/* Contact info box with abstract pattern */
.contact-info-box {
    background: linear-gradient(135deg, var(--light-cyan), #ffffff);
    border-radius: 25px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 127, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.contact-info-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 127, 255, 0.25);
}

/* Abstract geometric pattern background */
.abstract-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image:
        radial-gradient(circle at 20% 50%, var(--ocean-blue) 2px, transparent 2px),
        radial-gradient(circle at 60% 80%, var(--cyan) 3px, transparent 3px),
        radial-gradient(circle at 80% 20%, var(--turquoise) 2px, transparent 2px),
        radial-gradient(circle at 40% 30%, var(--sky-bright) 2.5px, transparent 2.5px);
    background-size: 100px 100px, 150px 150px, 120px 120px, 180px 180px;
    background-position: 0 0, 40px 60px, 130px 270px, 70px 100px;
    pointer-events: none;
}

.contact-info-box h3 {
    color: var(--ocean-blue);
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.contact-info-box h3:first-of-type {
    margin-top: 0;
}

.contact-info-box h3 span {
    margin-right: 12px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info-box p {
    color: var(--dark-text);
    font-size: 1.1rem;
    margin-bottom: 15px;
    padding-left: 42px;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info-box {
        padding: 30px 20px;
    }

    .contact-info-box h3 {
        font-size: 1.1rem;
    }

    .contact-info-box p {
        font-size: 1rem;
    }
}
