body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --primary-orange: #ff7e00;
    --secondary-orange: #ffa500;
    --light-orange: #ffe0b2;
    --dark-grey: #343a40;
    --text-color: #333;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --gradient-start: #ff7e00;
    --gradient-end: #ffa500;
    --gradient-overlay-start: rgba(255, 126, 0, 0.6);
    --gradient-overlay-end: rgba(255, 165, 0, 0.6);
    --dark-overlay: rgba(0, 0, 0, 0.5);
}

/* Global Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: var(--dark-grey);
}

.section-title {
    font-size: 2.5rem;
    color: var(--dark-grey);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.text-orange-gradient {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.bg-orange-gradient {
    background: linear-gradient(to right, var(--gradient-start), var(--gradient-end));
    color: var(--white);
}

/* Responsive Typography */
.site-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.navbar-brand .site-name {
    color: var(--dark-grey);
}

.hero-section h1 {
    font-size: 3rem;
}

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

/* Desktop */
@media (min-width: 1024px) {
    .site-name {
        font-size: 1.8rem;
    }
    .hero-section h1 {
        font-size: 4rem;
    }
    .section-title {
        font-size: 2.5rem;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 1023px) {
    .site-name {
        font-size: 1.5rem;
    }
    .hero-section h1 {
        font-size: 3rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .site-name {
        font-size: 1.25rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .navbar-brand .navbar-logo {
        height: 30px;
    }
    .navbar-brand .site-name {
        font-size: 1.1rem;
    }
}

/* Navbar */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar-brand {
    color: var(--dark-grey) !important;
}

.navbar-logo {
    height: 40px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--dark-grey) !important;
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

.offcanvas-header {
    background-color: var(--dark-grey);
    color: var(--white);
}

.offcanvas-title {
    color: var(--white);
}

 

.offcanvas-body .nav-link {
    color: var(--dark-grey) !important;
}

.navbar-toggler {
    border-color: var(--primary-orange);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 126, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('img/content/financial-market-background_2.png') no-repeat center center/cover;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-overlay-start), var(--gradient-overlay-end));
    mix-blend-mode: multiply;
}

.hero-logo {
    max-width: 200px;
    filter: drop-shadow(0 0 10px var(--primary-orange));
}

.hero-section h1 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-section .btn-outline-light {
    border-color: var(--white);
    color: var(--white);
    background-color: transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-section .btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-orange);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Section */
.about-section {
    background-color: var(--white);
}

.about-features li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.about-features .icon-color {
    color: var(--primary-orange);
}

/* Services Section */
.services-section {
    background-color: var(--light-bg);
}

.service-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05) !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff6b6b, #ee609c);
    color: var(--white);
    font-size: 2.5rem;
}

/* Pricing Section */
.pricing-section {
    background-color: var(--white);
}

.pricing-toggle {
    width: 3.5em;
    height: 1.75em;
    margin: 0 10px;
    background-color: var(--light-orange);
    border-color: var(--primary-orange);
}

.pricing-toggle:checked {
    background-color: var(--primary-orange);
}

.pricing-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05) !important;
}

.pricing-card .price small {
    color: var(--dark-grey);
}

.features-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.features-list .icon-color {
    color: var(--primary-orange);
}

.features-list .text-secondary {
    color: #6c757d !important;
}

.btn-primary {
    background-color: var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--white);
    text-decoration: none;
}

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

.modal-content {
    border-radius: 0.5rem;
}

.modal-header {
    background-color: var(--primary-orange);
    color: var(--white);
    border-bottom: none;
}

.modal-title {
    color: var(--white);
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.form-control:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 0.25rem rgba(255, 126, 0, 0.25);
}

/* Portfolio Section */
.portfolio-section {
    background-color: var(--light-bg);
}

.portfolio-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05) !important;
}

.portfolio-card img {
    height: 200px;
    object-fit: cover;
}

.portfolio-card .badge {
    background-color: #6c757d !important;
    color: var(--white);
    font-size: 0.85rem;
    padding: 0.5em 0.7em;
}

.portfolio-card .badge i {
    margin-right: 5px;
}

/* Industries Section */
.industries-section {
    background-color: var(--white);
}

.industry-block {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05) !important;
}

.industry-block .icon-large {
    font-size: 3.5rem;
    color: var(--primary-orange);
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--light-bg);
}

.testimonial-card {
    max-width: 700px;
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.05) !important;
}

.testimonial-card .avatar {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border: 3px solid var(--primary-orange);
}

.testimonial-card .name {
    font-size: 1.2rem;
    color: var(--dark-grey);
}

.testimonial-card .title {
    font-size: 0.9rem;
    color: #6c757d;
}

.testimonial-card .quote {
    position: relative;
    font-style: italic;
    color: var(--text-color);
    padding: 10px 0;
}

.testimonial-card .quote::before {
    content: '“';
    font-size: 4rem;
    color: var(--secondary-orange);
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.2;
    z-index: 0;
}

.carousel-control-prev, .carousel-control-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--dark-grey);
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    background-color: var(--primary-orange);
    color: var(--white);
}

.carousel-control-prev-icon i, .carousel-control-next-icon i {
    font-size: 1.5rem;
    color: var(--dark-grey);
}

.carousel-control-prev:hover .carousel-control-prev-icon i,
.carousel-control-next:hover .carousel-control-next-icon i {
    color: var(--white);
}

/* Contact Section */
.contact-section {
    background-color: var(--white);
}

.contact-section form {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Footer Section */
.footer-section {
    background-color: var(--dark-grey);
    color: var(--white);
}

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

.footer-section .site-name {
    color: var(--white);
}

.footer-section a {
    color: var(--light-orange);
}

.footer-section a:hover {
    color: var(--primary-orange);
}

.contact-info li {
    margin-bottom: 8px;
}

.contact-info i {
    color: var(--primary-orange);
}

.footer-email-break {
    word-break: break-all;
}

.footer-links li,
.legal-links li {
    margin-bottom: 5px;
}

.newsletter-form .form-control {
    border-radius: 0.25rem 0 0 0.25rem;
    border-color: var(--primary-orange);
}

.newsletter-form .btn-primary {
    border-radius: 0 0.25rem 0.25rem 0;
}

/* Utility classes */
.icon-color {
    color: var(--primary-orange);
}

/* General button styles to remove underline */
.btn {
    text-decoration: none !important;
}

/* Mobile navigation adjustments */
@media (max-width: 1199.98px) {
    .navbar-nav {
        flex-direction: column;
    }
    .navbar-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100%;
        background-color: var(--white);
        transition: right 0.3s ease-in-out;
        z-index: 1050;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    .navbar-collapse.show {
        right: 0;
    }
    .offcanvas-body .nav-link {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid #eee;
    }
    .offcanvas-body .nav-link:last-child {
        border-bottom: none;
    }
}

@media (min-width: 1200px) {
    .navbar-nav {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .navbar-nav .nav-item {
        flex-shrink: 0;
    }
    .navbar-toggler {
        display: none;
    }
}

/* Ensure buttons don't cut text */
.btn {
    display: inline-block;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}
/* Styles for the main content container */
.legalFoldBox {
    padding: 24px 20px; /* Top/bottom padding 24px, left/right padding 20px */
    max-width: 800px; /* Maximum width for better readability on large screens */
    margin: 0 auto; /* Center the content box horizontally */
}

/* Heading 1 styles */
.legalFoldBox h1 {
    word-break: break-all;
    font-size: 28px; /* Moderate font size for H1 */
    line-height: 1.2; /* Tighter line height for headings */
    margin-top: 2em; /* Space above the heading */
    margin-bottom: 0.8em; /* Space below the heading */
    font-weight: 700; /* Bold font weight */
}

/* Heading 2 styles */
.legalFoldBox h2 {
       word-break: break-all;
    font-size: 24px; /* Moderate font size for H2 */
    line-height: 1.3;
    margin-top: 1.8em;
    margin-bottom: 0.7em;
    font-weight: 700;
}

/* Heading 3 styles */
.legalFoldBox h3 {
       word-break: break-all;
    font-size: 20px; /* Moderate font size for H3 */
    line-height: 1.4;
    margin-top: 1.6em;
    margin-bottom: 0.6em;
    font-weight: 700;
}

/* Heading 4 styles */
.legalFoldBox h4 {
       word-break: break-all;
    font-size: 18px; /* Moderate font size for H4 */
    line-height: 1.5;
    margin-top: 1.4em;
    margin-bottom: 0.5em;
    font-weight: 700;
}

/* Heading 5 styles */
.legalFoldBox h5 {
    font-size: 16px; /* Moderate font size for H5, similar to body text */
    line-height: 1.6;
    margin-top: 1.2em;
    margin-bottom: 0.4em;
    font-weight: 700;
}

/* Paragraph styles */
.legalFoldBox p {
    font-size: 16px; /* Standard body text size */
    line-height: 1.6; /* Good line height for readability */
    margin-top: 0; /* Reset default top margin */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.legalFoldBox ul {
    list-style-type: disc; /* Default bullet points */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 1.5em; /* Indent for bullet points */
}

/* List item styles */
.legalFoldBox li {
    margin-bottom: 0.5em; /* Space between list items */
    line-height: 1.6; /* Consistent line height with paragraphs */
}
.form-switch .form-check-input {
    margin-left: 0 !important;
    width: 50px !important;
}
@media (max-width: 767px) {
   .hero-logo {
    max-width: 80px;
   }
}
section {
    overflow: hidden;
}
#testimonials .bi-chevron-right::before {
    content: "";
}
#testimonials .bi-chevron-left::before{
    content: "";
}