﻿/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('../../css2-1');
@import url('../../css2-1');
@import url('../../css2-2');


body {
    font-family: "Open Sans", sans-serif;
    background: linear-gradient(135deg, #FFB300 0%, #FDD835 100%);
    /* background: linear-gradient(135deg, #88e595 0%, #25fdd3 100%); */
}

a {
    color: #000000;
    text-decoration: none;
}

    a:hover {
        color: #5faee3;
        text-decoration: none;
    }

h1,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
}

h2,
h3 {
    font-family: "Playfair Display", serif;
}

/*--------------------------------------------------------------
# Back to top button - Unique Modern Cool Style
--------------------------------------------------------------*/
.back-to-top {
    position: fixed;
    visibility: hidden;
    right: 10px;
    bottom: 10px;
    z-index: 999;
    width: 44px;
    height: 44px;
    animation: pulse 2s infinite;
    border-radius: 50%;
    background: linear-gradient(135deg, #2c3e50, #3e5c7a);
    color: transparent;
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease-in-out;
    transform: scale(0.8);
    transform-origin: center;
    overflow: hidden;
}

/* Animation for Icons */
@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

.back-to-top i {
    font-size: 30px;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 1;
}

.back-to-top:hover {
    background: linear-gradient(135deg, #734a09, #2c3e50);
}

    .back-to-top:hover i {
        color: #ffffff;
        transform: translateY(-5px);
        transform: scale(1.1) rotate(-45deg);
    }

.back-to-top:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300%;
    height: 300%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.back-to-top:hover:before {
    opacity: 1;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}

.back-to-top i:before {
    content: "\2191";
    /* Unicode for "up arrow" */
    font-size: 30px;
    font-weight: bold;
    z-index: 2;
}


/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
    z-index: 997;
    transition: all 0.5s ease;
    padding: 16px 0;
    background: linear-gradient(135deg, #1e2a47, #253f72);
    width: 100%;
    margin: 0px;
}

    #header.header-scrolled {
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        padding: 12px 0;
        top: 0;
        margin-top: 0;
        border-radius: 0;
        width: 100%;
        border: 0;
    }

    #header .logo h1 {
        font-size: 30px;
        margin: 0;
        padding: 0;
        line-height: 1;
        font-weight: 700;
        letter-spacing: 1px;
        color: #ffffff;
    }

        #header .logo h1 a,
        #header .logo h1 a:hover {
            color: #d1ffd3;
            text-decoration: none;
        }

    #header .logo img {
        padding: 0;
        margin: 0;
        max-height: 50px;
    }

/*--------------------------------------------------------------
# Header End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
    padding: 0;
}

    .navbar ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }

    .navbar li {
        position: relative;
    }

    .navbar a,
    .navbar a:focus {
        display: inline-block;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 500;
        color: #f8f9fa;
        white-space: nowrap;
        transition: 0.3s;
        font-family: 'Poppins', sans-serif;
    }

        .navbar a:hover,
        .navbar .active,
        .navbar li:hover > a {
            color: #FFEE58;
            text-decoration: none;
        }

        .navbar a:hover {
            transform: translateY(-2px);
        }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        padding: 10px 30px;
        margin-left: 30px;
        border-radius: 50px;
        color: white;
        background: #25d36600;
        transition: all 0.3s ease;
        border: 2px solid white;
    }

        .navbar .getstarted:hover,
        .navbar .getstarted:focus:hover {
            background: #ffffff;
            border: 2px solid #ffffff;
            color: #033f6c;
        }

    .navbar .dropdown ul {
        display: block;
        position: absolute;
        left: 30px;
        top: calc(100% + 30px);
        margin: 0;
        padding: 10px 0;
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
        transition: 0.3s;
        border-radius: 4px;
    }

        .navbar .dropdown ul li {
            min-width: 200px;
        }

        .navbar .dropdown ul a {
            padding: 10px 20px;
            font-size: 14px;
        }

            .navbar .dropdown ul a:hover,
            .navbar .dropdown ul .active:hover,
            .navbar .dropdown ul li:hover > a {
                color: #000000;
            }

    .navbar .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

/* Mobile Navigation */
.mobile-nav-toggle {
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

    .mobile-nav-toggle.bi-x {
        color: #fff;
    }

@media (max-width: 1124px) {
    .navbar a,
    .navbar a:focus {
        padding: 12px 7px;
        font-size: 16px;
    }

    .navbar .getstarted,
    .navbar .getstarted:focus {
        padding: 6px 15px;
        margin-left: 15px;
    }
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }

    #header {
        box-shadow: 0px 2px 12px rgba(106, 91, 91, 0.0);
        background-color: #1e2a47;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    z-index: 999;
}

    .navbar-mobile .mobile-nav-toggle {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .navbar-mobile ul {
        display: block;
        position: absolute;
        top: 55px;
        right: 15px;
        bottom: 15px;
        left: 15px;
        padding: 10px 0;
        border-radius: 8px;
        background: #1e2a47;
        /* Red gradient background */

        overflow-y: auto;
        transition: 0.3s;
    }

    .navbar-mobile a,
    .navbar-mobile a:focus {
        padding: 30px 20px;
        text-align: center;
        font-size: 28px;
        color: #ffffff;
        border-bottom: 1px solid rgb(255 255 255 / 91%);
    }

    .navbar-mobile ul.list-border li {
        padding: 8px 0px;
        margin: 18px 18px;
    }

    .navbar-mobile a:hover,
    .navbar-mobile .active,
    .navbar-mobile li:hover > a {
        color: #FFEB3B;
    }

    .navbar-mobile .getstarted,
    .navbar-mobile .getstarted:focus {
        margin: 40px 10px;
        background: #000000;
        color: white;
    }

    .navbar-mobile .dropdown ul {
        position: static;
        display: none;
        margin: 10px 20px;
        padding: 10px 0;
        z-index: 99;
        opacity: 1;
        visibility: visible;
        background: #fff;
        box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    }

        .navbar-mobile .dropdown ul li {
            min-width: 200px;
        }

        .navbar-mobile .dropdown ul a {
            padding: 10px 20px;
        }

            .navbar-mobile .dropdown ul a i {
                font-size: 12px;
            }

            .navbar-mobile .dropdown ul a:hover,
            .navbar-mobile .dropdown ul .active:hover,
            .navbar-mobile .dropdown ul li:hover > a {
                color: #000000;
            }

    .navbar-mobile .dropdown > .dropdown-active {
        display: block;
    }

/*--------------------------------------------------------------
# Navigation Section End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Hero Section start
--------------------------------------------------------------*/
#hero {
    padding: 120px 0;
    background: #1e2a47;
    /* Dark Blue Background for a sleek, professional look */
    color: #fff;
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.4;
    color: #f7f7f7;
    /* Lighter color for the title */
    margin-bottom: 15px;
}

    .hero-title .highlight {
        color: #f39c12;
        /* A warm golden color for emphasis */
        font-style: italic;
    }

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #e3e3e3;
    margin-bottom: 30px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 14px;
}

    .hero-buttons .btn {
        font-size: 16px;
        font-weight: 600;
        padding: 12px 30px;
        border-radius: 5px;
        transition: all 0.3s ease-in-out;
        margin: 5px;
    }

    .hero-buttons .btn-primary {
        background: #f39c12;
        color: #fff;
        border: none;
    }

        .hero-buttons .btn-primary:hover {
            background: #e67e22;
            color: #fff;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

    .hero-buttons .btn-outline-light {
        background: transparent;
        color: #fff;
        border: 2px solid #fff;
    }

        .hero-buttons .btn-outline-light:hover {
            background: #fff;
            color: #1e2a47;
            border: 2px solid #1e2a47;
        }

/* Image Section */
.hero-image {
    position: relative;
    max-width: 100%;
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    text-align: center;
    border-radius: 15px;
}

    .image-wrapper img {
        width: 70%;
        height: auto;
        transition: transform 0.3s ease;
    }


/* Responsive Adjustments */
@media (max-width: 1024px) {


    .hero-title {
        font-size: 30px;
    }

    .hero-description {
        font-size: 19px;
    }

    .hero-buttons .btn {
        font-size: 16px;
    }

    .hero-buttons {
        justify-content: center;
    }
}


@media (max-width: 991px) {
    #hero {
        text-align: center;
        padding: 60px 15px;
    }

        #hero .row {
            flex-direction: column-reverse;
        }

    .hero-image {
        margin-top: 40px;
    }

    .hero-title {
        font-size: 27px;
    }

    .hero-description {
        font-size: 18px;
    }

    .hero-buttons .btn {
        font-size: 15px;
    }
}

@media (max-width: 768px) {


    .hero-title {
        font-size: 23px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons .btn {
        margin-top: 15px;
        font-size: 16px;
        padding: 12px 18px;
    }

    .hero-buttons {
        display: flex;
        gap: 8px;
    }
}


@media (max-width: 468px) {


    .hero-description {
        font-size: 15px;
    }

    .hero-buttons .btn {
        font-size: 15px;
        padding: 12px 17px;
    }
}

/*--------------------------------------------------------------
# Hero Section End
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Features Section for Financial Consulting
--------------------------------------------------------------*/
.features-section {
    padding: 80px 20px;
    background: #fff;
    color: #fff;
    position: relative;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

    .features-section .section-title h1 {
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        color: #1e2a47;
        text-align: center;
        font-weight: 900;
        margin-bottom: 15px;
    }

    .features-section .section-title .subtitle {
        font-family: 'Roboto', sans-serif;
        font-size: 20px;
        color: #b7740a;
        text-align: center;
        margin-bottom: 40px;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

.feature-item {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    padding: 20px;
}

.feature-card {
    background: #1e2a4700;
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 61%);
    width: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    border-left: 10px solid #253d6f;
    border-bottom: 10px solid #253d6f;
    flex-direction: column;
    justify-content: center;
    /* Center content vertically */
    align-items: center;
    /* Center content horizontally */
}

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25);
    }

    .feature-card .icon-box {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #253d6f;
        padding: 20px;
        border-radius: 50%;
        width: 80px;
        height: 80px;
    }

    .feature-card .icon {
        font-size: 36px;
        color: #1e2a47;
    }

    .feature-card h3 {
        font-family: 'Poppins', sans-serif;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 10px;
        color: #000000;
    }

    .feature-card p {
        font-family: 'Open Sans', sans-serif;
        font-size: 16px;
        color: #000000;
        line-height: 1.5;
        margin-bottom: 0;
    }

/* Responsive adjustments */
@media (max-width: 1034px) {


    .feature-card .icon-box {
        width: 64px;
        height: 64px;
    }

    .feature-card .icon {
        font-size: 30px;
        color: #1e2a47;
    }
}

@media (max-width: 991px) {
    .features-section {
        padding: 60px 20px;
    }

    .feature-item {
        margin-bottom: 0px;
        padding: 20px;
    }

    .features-section .section-title h1 {
        font-size: 36px;
    }

    .features-section .section-title .subtitle {
        font-size: 18px;
    }

    .feature-card {
        padding: 25px;
    }

        .feature-card h3 {
            font-size: 18px;
        }
}

@media (max-width: 575px) {
    .features-section .section-title h1 {
        font-size: 30px;
    }

    .features-section .section-title .subtitle {
        font-size: 16px;
    }

    .feature-card p {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Features Section End
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Financial Consulting Process Section
--------------------------------------------------------------*/
.financial-schedule {
    padding: 80px 20px;
    background: #1e2a47;
    color: #ffffff;
    position: relative;
}

    .financial-schedule .section-header h2 {
        font-family: 'Playfair Display', serif;
        font-size: 42px;
        color: #ffffff;
        text-align: center;
        font-weight: 900;
        margin-bottom: 15px;
    }

    .financial-schedule .section-header p {
        font-family: 'Roboto', sans-serif;
        font-size: 18px;
        color: #ffffff;
        text-align: center;
        margin-bottom: 40px;
    }

.schedule-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Timeline items styling */
.timeline-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 20px;
}

    .timeline-item:nth-child(even) {
        flex-direction: row-reverse;
    }

/* Icons styling */
.timeline-icon {
    background: #f39c12;
    color: white;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 20px;
    z-index: 1;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

    .timeline-icon i {
        color: #fff;
    }

.timeline-item:hover .timeline-icon {
    background-color: #17a079;
}

/* Content cards styling */
.timeline-content {
    flex: 1;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 2px solid #1eaf8b;
    transition: border-color 0.3s ease;
    margin-top: 10px;
}

    .timeline-content::before,
    .timeline-content::after {
        content: '';
        position: absolute;
        width: 15px;
        height: 15px;
        background-color: #1eaf8b;
        transition: background-color 0.3s ease;
    }

    .timeline-content::before {
        top: 0;
        left: 0;
        border-top-left-radius: 50%;
    }

    .timeline-content::after {
        bottom: 0;
        right: 0;
        border-bottom-right-radius: 50%;
    }

.timeline-item:hover .timeline-content {
    border-color: #17a079;
}

    .timeline-item:hover .timeline-content::before,
    .timeline-item:hover .timeline-content::after {
        background-color: #17a079;
    }

/* Responsive Design */
@media (max-width: 991px) {
    .schedule-timeline {
        flex-direction: column;
        width: 100%;
    }

    .timeline-item {
        flex-direction: column;
        align-items: center;
        /* Center align */
        padding: 0;
        width: 100%;
        margin-bottom: 40px;
    }

    /* Icon should be at the top in mobile */
    .timeline-icon {
        margin-bottom: 20px;
        margin-left: 0;
        margin-right: 0;
    }

    .timeline-content {
        width: 100%;
        margin: 0 20px;
        text-align: center;
        padding: 20px;
    }

        .timeline-content h4 {
            font-size: 18px;
        }

        .timeline-content p {
            font-size: 14px;
        }

    .schedule-timeline::before {
        top: 10px;
    }

    /* Even timeline items */
    .timeline-item:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .financial-schedule .section-header h2 {
        font-size: 30px;
    }

    .financial-schedule .section-header p {
        font-size: 16px;
    }

    .timeline-content p {
        font-size: 14px;
    }

    .timeline-item {
        margin-bottom: 30px;
    }

        .timeline-item .timeline-icon {
            margin-top: 20px;
        }
}

/*--------------------------------------------------------------
# About Printing Section
--------------------------------------------------------------*/
/* About Section */
.about-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, #1e2a47 0%, #16a085 100%);
    color: #fff;
    overflow: hidden;
}

.about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.about-left {
    padding-right: 30px;
}

.about-heading {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.about-intro {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

    .about-list li {
        font-size: 18px;
        line-height: 1.7;
        margin-bottom: 15px;
        position: relative;
        padding-left: 40px;
    }

        .about-list li i {
            position: absolute;
            left: 0;
            top: 0;
            color: #ffffff;
            font-size: 20px;
            transition: transform 0.3s ease;
        }

.about-right {
    text-align: center;
    position: relative;
    z-index: 2;
}

.about-image-container {
    max-width: 100%;
    animation: fadeInRight 1s ease-out;
}

.about-image {
    width: 100%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

    .about-image:hover {
        transform: scale(1.05);
    }

.abstract-background {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    animation: animateBackground 10s infinite alternate;
}

    .abstract-background:after {
        content: '';
        position: absolute;
        top: 10%;
        left: 10%;
        width: 120%;
        height: 120%;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
    }

/* Animations */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes animateBackground {
    0% {
        width: 200px;
        height: 200px;
        opacity: 0.1;
    }

    100% {
        width: 300px;
        height: 300px;
        opacity: 0.3;
    }
}

/* Responsive Design for Smaller Screens */
@media (max-width: 991px) {

    .about-section {
        padding: 80px 10px;
    }

    .about-row {
        flex-direction: column;
        align-items: left;
        text-align: left;
    }

    .about-left {
        padding-right: 0;
    }

    .about-image-container {
        width: 100%;
    }

    .abstract-background {
        display: none;
    }
}

@media (max-width: 576px) {
    .about-heading {
        font-size: 30px;
    }

    .about-subtitle {
        font-size: 20px;
    }

    .about-intro {
        font-size: 16px;
    }

    .about-list li {
        font-size: 16px;
    }
}


/*--------------------------------------------------------------
# About  Section End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Call to Action Section (Financial Template)
--------------------------------------------------------------*/
.cta {
    background: linear-gradient(135deg, #1e2a47, #f39c12);
    /* Dark blue to golden gradient */
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

    .cta .cta-content h3 {
        font-size: 32px;
        font-weight: 700;
        color: #fff;
        margin-bottom: 20px;
        font-family: 'Montserrat', sans-serif;
    }

    .cta .cta-description {
        font-size: 18px;
        color: #f1f1f1;
        margin-bottom: 30px;
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }

.cta-btn .btn-contact {
    background-color: #f39c12;
    color: white;
    font-size: 18px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
}

    .cta-btn .btn-contact:hover {
        background-color: #e67e22;
        animation: bounce 0.4s ease-out;
        transform: rotate(-5deg);
        padding: 15px 50px;
    }

/* Responsive Design */
@media (max-width: 767px) {
    .cta .cta-content h3 {
        font-size: 28px;
    }

    .cta .cta-description {
        font-size: 16px;
    }

    .cta .col-lg-12 {
        text-align: center;
    }
}


/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/

.financial-services-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e2a47 0%, #16a085 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

    .financial-services-section .section-title h1 {
        font-family: 'Montserrat', sans-serif;
        font-size: 48px;
        color: #ffffff;
        font-weight: 800;
        margin-bottom: 15px;
        line-height: 1.3;
    }

    .financial-services-section .section-title .subtitle {
        font-family: 'Roboto', sans-serif;
        font-size: 22px;
        color: #ffffff;
        font-weight: 600;
        margin-bottom: 60px;
    }

.service-item {
    background: #ffffff00;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgb(0 0 0);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border-left: 6px solid #ffffff80;
    border-bottom: 6px solid #ffffff80;
}

.financial-services-section .col-lg-4 {
    margin-top: 20px;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.service-item .icon {
    font-size: 40px;
    color: #ffffff;
    margin-bottom: 20px;
    height: 70px;
    width: 70px;
    background-color: #ffffff69;
    text-align: center;
    border-radius: 50%;
}

.service-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
}

.service-item p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    color: #ffffff;
    line-height: 1.6;
}

@media (max-width: 991px) {


    .finconsult-services-section {
        padding: 60px 20px;
    }


    .financial-services-section .section-title h1 {
        font-size: 30px;
    }

    .finconsult-services-section .service-item {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .finconsult-services-section .service-item {
        padding: 15px;
    }

    .service-item h3 {
        font-size: 20px;
    }

    .service-item p {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
 Testimonials Section 
--------------------------------------------------------------*/


.testimonials {
    background: linear-gradient(35deg, #2c3e50, #2c3e50);
    padding: 80px 0;
}

    /* Section Title */
    .testimonials .text-center h4 {
        font-size: 22px;
        color: #ffffff;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .testimonials .text-center h2 {
        font-size: 36px;
        font-weight: bold;
        color: #ffffff;
        letter-spacing: 1px;
    }

/* Testimonial Cards */
.testimonial-card {
    background: linear-gradient(35deg, #0b1325, #2c3e5036);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 25px;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    color: #fff;
}

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    }

    /* Testimonial Image Styling */
    .testimonial-card .testimonial-image {
        position: relative;
        margin-bottom: 20px;
    }

        .testimonial-card .testimonial-image img {
            border: 5px solid #f6c600;
            width: 100px;
            height: 100px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

            .testimonial-card .testimonial-image img:hover {
                transform: scale(1.1);
            }

/* Testimonial Text */
.testimonial-text {
    font-size: 16px;
    color: #ffffff;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Client Information */
.client-info {
    margin-top: 20px;
}

.client-name {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
}

.client-position {
    font-size: 14px;
    color: #ffffff;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials .text-center h2 {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .client-name {
        font-size: 16px;
    }

    .client-position {
        font-size: 12px;
    }

    .testimonial-text {
        font-size: 14px;
    }
}

/*--------------------------------------------------------------
# Testimonials Section End
--------------------------------------------------------------*

  
    
    
/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
    padding: 80px 20px;
    background-color: #f4f7fc;
}

    .pricing .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

        .pricing .section-header h4 {
            font-size: 24px;
            color: #4a6fa5;
            margin-bottom: 5px;
        }

        .pricing .section-header h2 {
            font-size: 40px;
            color: #2a3d6e;
            font-weight: 700;
        }

.pricing-options {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-card {
    background-color: #ffffff;
    padding: 25px;
    border-radius: 15px;
    width: 22%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .pricing-card:hover {
        transform: translateY(-5px);
    }

.card-header {
    margin-bottom: 20px;
}

    .card-header .icon {
        font-size: 40px;
        color: #067e67;
        margin-bottom: 15px;
    }

    .card-header h4 {
        font-size: 24px;
        color: #2a3d6e;
        font-weight: 600;
    }

.price {
    font-size: 36px;
    font-weight: bold;
    color: #1abc9c;
    margin-top: 10px;
}

.currency {
    font-size: 24px;
}

.amount {
    font-size: 48px;
}

.duration {
    font-size: 16px;
    color: #6c757d;
}

.card-details {
    text-align: left;
    margin-top: 20px;
}

    .card-details p {
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
    }

    .card-details ul {
        list-style: none;
        padding: 0;
        margin-bottom: 10px;
    }

        .card-details ul li {
            font-size: 16px;
            color: #444;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }

            .card-details ul li::before {
                content: "✔";
                color: #067e67;
                margin-right: 10px;
            }

.pricing-card.unique-card {
    background-color: #f8f9fa;
    border: 2px solid #067e67;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

    .pricing-card.unique-card .card-header .icon {
        color: #e67e22;
    }

    .pricing-card.unique-card .price {
        color: #e67e22;
    }

/* Responsive Design */


@media (max-width: 1434px) {

    .pricing-card {
        width: 44%;
        margin-bottom: 30px;
    }

    .pricing-options {
        display: flex;
        justify-content: space-around;
        gap: 0px;
        flex-wrap: wrap;
    }
}


@media (max-width: 758px) {
    .pricing-options {
        flex-direction: column;
        align-items: center;
    }

    .pricing-card {
        width: 100%;
        margin-bottom: 30px;
    }

    .card-header h4 {
        font-size: 20px;
    }

    .price {
        font-size: 30px;
    }
}

@media (max-width: 575px) {
    .pricing .section-header h2 {
        font-size: 28px;
    }

    .pricing-card {
        width: 100%;
    }

    .price {
        font-size: 28px;
    }

    .card-details ul li {
        font-size: 14px;
    }
}


/*--------------------------------------------------------------
# Pricing Section End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# Contact Section start
--------------------------------------------------------------*/
/* Contact Us Section Styles */
.contact-section {
    padding: 100px 0;
    background-color: #2c3e50;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.contact-info {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: center;
}

    .contact-info h3 {
        font-size: 28px;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .contact-info p {
        font-size: 16px;
        color: #ddd;
        margin-bottom: 25px;
    }

    .contact-info .cta-button {
        margin-top: 20px;
    }

        .contact-info .cta-button .btn-whatsapp {
            background: #27ae60;
            color: #fff;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease-in-out;
            position: relative;
            overflow: hidden;
        }

            .contact-info .cta-button .btn-whatsapp:hover {
                background-color: #1e8449;
                animation: bounce 0.4s ease-out;
                box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
            }

/* Bounce Animation */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(0);
    }

    70% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0);
    }
}

.contact-info .cta-button .btn-whatsapp:hover {
    transform: rotate(-5deg);
}

.contact-info .cta-button .btn-whatsapp i {
    margin-right: 10px;
}

.contact-form-container {
    background-color: #00000021;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgb(255 255 255 / 20%);
    transition: all 0.3s ease;
}

    .contact-form-container h2 {
        font-size: 32px;
        color: #ffffff;
        font-weight: 700;
        margin-bottom: 40px;
        text-align: center;
    }

.form-description {
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    margin-bottom: 30px;
}

.contact-form .form-row {
    display: flex;
    width: 100%;
    justify-content: space-around;
    gap: 20px;
}

    .contact-form .form-row .form-group {
        width: calc(50% - 10px);
        /* Adjust width to account for the gap */
    }

.contact-form .form-group {
    margin-bottom: 25px;
    position: relative;
}

.contact-form .form-control {
    padding: 20px;
    font-size: 16px;
    width: 100%;
    border: 2px solid #ccc;
    border-radius: 50px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #fafafa0d;
    color: white;
}

    .contact-form .form-control:focus {
        outline: none;
        border-color: #1abc9c;
        box-shadow: 0 0 10px rgba(26, 188, 156, 0.2);
    }

.contact-form textarea.form-control {
    height: 150px;
    resize: vertical;
}

.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
    color: #aaa;
    font-style: italic;
}

.contact-form .btn-submit {
    background: #27ae60;
    color: #fff;
    font-size: 18px;
    padding: 15px 30px;
    width: 100%;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: 600;
    text-align: center;
}

    /* Hover Effect: Bounce */
    .contact-form .btn-submit:hover {
        background-color: #1e8449;
        animation: bounce 0.4s ease-out;
        box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
    }

.button-area span {
    font-size: 17px;
    display: none;
    margin: 20px 0 0;
    text-align: center;
}

/* Bounce Animation */
@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-5px);
    }

    50% {
        transform: translateY(0);
    }

    70% {
        transform: translateY(-3px);
    }

    100% {
        transform: translateY(0);
    }
}


/* Responsive Design */
@media (max-width: 968px) {
    .contact-section {
        padding: 50px 12px;
    }

    .contact-form-container {
        box-shadow: 0 20px 40px rgb(82 81 81 / 99%);
    }

    .contact-info {
        padding: 25px;
    }

        .contact-info h3 {
            font-size: 26px;
        }

        .contact-info p {
            font-size: 14px;
        }

    .cta-button .btn-whatsapp {
        padding: 12px 25px;
        font-size: 14px;
    }

    .contact-form-container {
        margin-top: 20px;
        padding: 30px;
    }

        .contact-form-container h2 {
            font-size: 28px;
        }

    .form-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .form-control {
        font-size: 15px;
    }

    .btn-submit {
        padding: 12px 25px;
        font-size: 16px;
    }
}

@media (max-width: 600px) {


    .contact-info {
        padding: 20px;
    }

    .contact-form-container {
        padding: 20px;
    }

    .contact-info h3 {
        font-size: 24px;
    }

    .contact-info p {
        font-size: 14px;
    }

    .contact-form .form-control {
        font-size: 14px;
    }

    .contact-form .btn-submit {
        font-size: 14px;
        padding: 12px 25px;
    }
}


/*--------------------------------------------------------------
# Contact Section End
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# faq Section start
--------------------------------------------------------------*/
.faq-section {
    background-color: #f7f7f7;
    padding: 60px 0;
    color: #333;
}

    .faq-section .section-header {
        width: 50%;
    }

        .faq-section .section-header h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .faq-section .section-header p {
            font-size: 1.5rem;
            color: #555;
            font-weight: 600;
            margin-bottom: 40px;
        }

        .faq-section .section-header .line {
            width: 60px;
            height: 3px;
            background-color: #0066cc;
            margin: 20px auto;
        }

/* FAQ List Styles */
.faq-list {
    margin: 0 auto;
    margin-top: 70px;
}

.faq-item {
    border-radius: 8px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

    .faq-item:hover {
        transform: translateY(-5px);
    }

.faq-question {
    display: flex;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    border-bottom: 2px solid #dad6d6;
    transition: background-color 0.3s ease;
}

    .faq-question:hover {
        background-color: #f0f0f0;
    }

    .faq-question h4 {
        font-size: 1.6rem;
        color: #333;
        margin-left: 15px;
        flex: 1;
    }

    .faq-question .faq-icon {
        font-size: 1.8rem;
        color: #0066cc;
    }

    .faq-question .toggle-icon {
        font-size: 2.4rem;
        color: #2c3e50;
        transition: transform 0.3s ease;
    }

    .faq-question.active .toggle-icon {
        transform: rotate(45deg);
    }

/* FAQ Answer Styles */
.faq-answer {
    padding: 15px 20px;
    background-color: #f9f9f9;
    display: none;
}

    .faq-answer p {
        font-size: 1.4rem;
        color: #555;
        margin-bottom: 0;
    }

/* Responsive Layout */
@media (max-width: 1124px) {

    .faq-section .section-header {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {


    .faq-section .section-header h3 {
        font-size: 2rem;
        text-align: center;
    }

    .faq-list {
        margin-top: 0px;
    }

    .faq-section .section-header p {
        font-size: 1rem;
        text-align: center;
    }

    .faq-question h4 {
        font-size: 1.1rem;
        padding-right: 10px;
        text-align: left;
    }

    .faq-answer p {
        font-size: 1rem;
    }
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

.financial-footer {
    background: linear-gradient(35deg, #2c3e50, #2c3e50);
    color: #fff;
    padding: 50px 20px;
    position: relative;
    overflow: hidden;
}

    .financial-footer h4 {
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 15px;
    }

    .financial-footer p {
        font-size: 16px;
        line-height: 1.7;
        color: #f1f1f1;
        margin: 0;
    }

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 16px;
    font-style: italic;
    line-height: 1.5;
    margin-top: 10px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #fff;
    color: #004e92;
    font-size: 20px;
    border-radius: 50%;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    .social-icon:hover {
        background: #004e92;
        color: #fff;
        transform: scale(1.1);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

.footer-contact p {
    font-size: 16px;
    text-align: end;
}

.footer-bottom {
    background: linear-gradient(45deg, #2b3e50, #3c566c);
    color: #f1f1f1;
    text-align: center;
    padding: 20px 0;
    position: relative;
    font-size: 16px;
    margin-top: 50px;
}

    .footer-bottom .marquee {
        overflow: hidden;
        white-space: nowrap;
    }

        .footer-bottom .marquee p {
            display: inline-block;
            animation: scroll 20s linear infinite;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Responsiveness */

@media (max-width: 968px) {
    .financial-footer {
        padding: 50px 0px;
        text-align: center;
    }


        .financial-footer p,
        h4 {
            text-align: center;
            margin: 20px 0px;
        }

        .financial-footer p {
            margin: 15px 0px;
        }

        .financial-footer .marquee p {
            margin: 0px;
        }

    .social-links {
        justify-content: center;
        margin: 20px;
    }

    .footer-logo {
        margin: 15px;
    }
}

@media (max-width: 768px) {
    .financial-footer {
        text-align: center;
    }

    .footer-social {
        margin-bottom: 20px;
    }

    .footer-contact p,
    .footer-brand p,
    .footer-brand h4 {
        text-align: center;
    }

    .financial-footer .marquee p {
        margin: 0px;
    }

    .social-links {
        justify-content: center;
        margin: 20px;
    }

    .footer-logo {
        margin: 15px auto;
    }
}

/*--------------------------------------------------------------
# PAGES
--------------------------------------------------------------*/

.page-header {
    padding: 130px 0;
    background: linear-gradient(135deg, #0c3c68, #1e507c);
    color: #ffffff;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgb(0 0 0);
    margin-bottom: 20px;
    overflow: hidden;
}

    .page-header:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 0;
    }

    .page-header h1 {
        font-family: 'Playfair Display', serif;
        font-size: 33px;
        font-weight: 800;
        margin-bottom: 15px;
        color: #f3f4f6;
        letter-spacing: 2px;
        text-transform: uppercase;
        position: relative;
        z-index: 1;
        animation: fadeInUp 1s ease-in-out;
    }

    .page-header .tagline {
        font-family: 'Roboto', sans-serif;
        font-size: 22px;
        font-weight: 400;
        opacity: 0.85;
        margin: auto;
        margin-bottom: 20px;
        width: 80%;
        max-width: 750px;
        line-height: 1.6;
        color: #e0f7fa;
        position: relative;
        z-index: 1;
        animation: fadeInUp 1.7s ease-in-out;
    }

        .page-header .tagline span {
            font-weight: 700;
            color: #f3f4f6;
        }

    .page-header .icon {
        font-size: 48px;
        margin-top: 20px;
        color: #ffffff;
        opacity: 0.7;
        animation: bounce 2s ease-in-out infinite;
    }

        .page-header .icon:hover {
            color: #f3f4f6;
        }

.page-breadcrumb {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    position: relative;
    z-index: 1;
}

    .page-breadcrumb a {
        color: #f0f0f0;
        text-decoration: none;
        transition: color 0.3s;
        margin: 5px;
    }

        .page-breadcrumb a:hover {
            color: #FFEB3B;
        }

    .page-breadcrumb span {
        color: #f0f0f0;
        margin: 5px;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        padding: 80px 0;
    }

        .page-header h1 {
            margin-top: 70px;
            font-size: 22px;
        }

        .page-header .tagline {
            font-size: 19px;
            width: 90%;
        }

    .page-breadcrumb {
        font-size: 16px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}
