body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.site-name {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(45deg, #FF4500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Responsive Typography */
h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem); /* Desktop: 4.5rem, Tablet: ~3.5rem, Mobile: ~2.5rem */
}

h2 {
    font-size: clamp(1.8rem, 5vw, 3.5rem); /* Desktop: 3.5rem, Tablet: ~2.8rem, Mobile: ~2rem */
}

h3 {
    font-size: clamp(1.75rem, 4vw, 2.5rem); /* Desktop: 2.5rem, Tablet: ~2.2rem, Mobile: ~1.75rem */
}

.navbar-brand .site-name {
    font-size: clamp(1.25rem, 3vw, 1.8rem); /* Desktop: 1.8rem, Tablet: ~1.5rem, Mobile: ~1.25rem */
}

/* Global styles */
* {
    box-sizing: border-box;
}

section {
    padding: 80px 0;
}

.py-lg-6 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.btn-primary {
    background-color: #FF4500;
    border-color: #FF4500;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #FF8C00;
    border-color: #FF8C00;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-color: #fff;
    color: #fff;
    transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-outline-light:hover {
    background-color: #fff;
    color: #FF4500;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    transition: background-color 0.3s ease, padding 0.3s ease;
    z-index: 1030;
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding-top: 10px;
    padding-bottom: 10px;
}

.navbar-brand img {
    transition: filter 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
    filter: none;
}



.navbar.scrolled .navbar-brand .site-name {
    background: linear-gradient(45deg, #FF4500, #FF8C00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.navbar-nav .nav-link {
    color: #fff;
    font-weight: 600;
    transition: color 0.3s ease;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: #333;
}

.navbar-nav .nav-link:hover {
    color: #FF8C00;
}

.navbar-toggler {
    border: none;
    color: #000000;
    filter: invert(1);
}

.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, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar.scrolled .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%2851, 51, 51, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.offcanvas {
    background-color: #f8f9fa;
}

.offcanvas .nav-link {
    color: #333;
}

.offcanvas .nav-link:hover {
    color: #FF4500;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    background: url('photos/graphics/financial-cityscape_9.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.7) 0%, rgba(255, 140, 0, 0.7) 100%);
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
}

.hero-section h1 {
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #FFDDC1, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.hero-section p {
    font-size: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section h2 {
    color: #FF4500;
}

.about-section h3 {
    color: #FF8C00;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}

.about-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about-section ul li::before {
    content: '\2713'; /* Checkmark */
    color: #FF4500;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.about-section img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: 300px;
}

/* Services Section */
.services-section {
    background-color: #fff;
}

.services-section h2 {
    color: #FF4500;
}

.service-step {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-step .step-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #FF4500;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(255, 69, 0, 0.4);
}

.service-step h3 {
    color: #FF8C00;
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.service-arrow {
    font-size: 3rem;
    color: #FF8C00;
    margin: 0 20px;
    animation: pulseArrow 1.5s infinite ease-in-out;
}

@keyframes pulseArrow {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

@media (max-width: 991.98px) {
    .service-steps-container {
        flex-direction: column;
    }

    .service-arrow.d-lg-block {
        display: none !important;
    }

    .service-arrow.d-block.d-lg-none {
        display: block !important;
        margin: 20px 0;
        transform: rotate(90deg);
    }
}

/* FAQ Section */
.faq-section h2 {
    color: #FF4500;
}

.accordion-button {
    font-weight: 600;
    color: #333;
    background-color: #f0f0f0;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #FF4500;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125);
}

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

.accordion-button .bi {
    transition: transform 0.3s ease;
}

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

.accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-body {
    background-color: #fff;
    border-top: 1px solid #eee;
}

/* Team Section */
.team-section {
    background-color: #f8f9fa;
}

.team-section h2 {
    color: #FF4500;
}

.team-timeline-wrapper {
    position: relative;
    padding-bottom: 20px;
}

.team-timeline {
    position: relative;
    padding-top: 20px;
}

.team-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FF8C00;
}

.team-member-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto;
    width: 280px;
}

.team-member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.team-member-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border: 4px solid #FF4500;
    box-shadow: 0 0 0 5px rgba(255, 69, 0, 0.2);
}

.team-member-card h4 {
    color: #FF8C00;
    margin-top: 15px;
    margin-bottom: 5px;
}

.team-member-card p {
    margin-bottom: 5px;
}

/* Industries Section */
.industries-section h2 {
    color: #FF4500;
}

.industry-item {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.industry-item i {
    color: #FF4500;
    font-size: 3.5rem;
    transition: color 0.3s ease;
}

.industry-item h5 {
    color: #FF8C00;
    margin-top: 10px;
    font-size: 1.25rem;
}

.industry-item .quick-facts {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 140, 0, 0.95);
    color: #fff;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 15px;
    box-sizing: border-box;
    font-size: 0.9rem;
}

.industry-item:hover .quick-facts {
    transform: translateY(0);
}

/* Stats Section */
.stats-section {
    position: relative;
    background: url('photos/graphics/abstract-data.png') no-repeat center center/cover;
    color: #fff;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.stats-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(220, 20, 60, 0.8) 0%, rgba(255, 69, 0, 0.8) 100%);
    z-index: 1;
}

.stats-section .container {
    z-index: 2;
    position: relative;
}

.stats-section h2 {
    color: #fff;
}

.stat-item {
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.25);
}

.stat-item i {
    color: #fff;
    font-size: 4rem;
}

.stat-item .stat-number {
    font-weight: 700;
    color: #fff;
    margin-top: 10px;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.2rem;
    margin-bottom: 0;
}

/* Contact Section */
.contact-section h2 {
    color: #FF4500;
}

.contact-section form {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-section .form-label {
    font-weight: 600;
    color: #555;
}

.contact-section .form-control:focus {
    border-color: #FF8C00;
    box-shadow: 0 0 0 0.25rem rgba(255, 140, 0, 0.25);
}

/* Footer */
.footer-section {
    background-color: #333;
    color: #fff;
    position: relative;
    z-index: 10;
}

.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-brand .site-name {
    color: #fff;
    -webkit-text-fill-color: #fff;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #FF8C00;
    text-decoration: underline;
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.animate-on-scroll.slide-left {
    transform: translateX(-50px);
}

.animate-on-scroll.slide-left.in-view {
    transform: translateX(0);
}

.animate-on-scroll.slide-right {
    transform: translateX(50px);
}

.animate-on-scroll.slide-right.in-view {
    transform: translateX(0);
}

.animate-on-scroll.fade-in-up {
    transform: translateY(20px);
}

.animate-on-scroll.fade-in-up.in-view {
    transform: translateY(0);
}

/* Initial Hero Animations */
.animate-fade-down {
    opacity: 0;
    transform: translateY(-20px);
    animation: fadeDown 1s ease-out forwards;
}

.animate-fade-down.delay-1 {
    animation-delay: 0.5s;
}

.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.animate-fade-in.delay-2 {
    animation-delay: 1s;
}

@keyframes fadeDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Specific delays for services and team */
.animate-on-scroll.delay-0 { transition-delay: 0s; }
.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }
.animate-on-scroll.delay-7 { transition-delay: 0.7s; }

/* Cookie Consent Modal */
#cookieConsentModal .modal-content {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1050;
}

#cookieConsentModal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

#cookieConsentModal .modal-footer {
    border-top: none;
    padding-top: 0;
}

#cookieConsentModal .btn-primary, #cookieConsentModal .btn-success {
    background-color: #FF4500;
    border-color: #FF4500;
}

#cookieConsentModal .btn-primary:hover, #cookieConsentModal .btn-success:hover {
    background-color: #FF8C00;
    border-color: #FF8C00;
}

#cookieConsentModal .btn-outline-secondary {
    color: #FF4500;
    border-color: #FF4500;
}

#cookieConsentModal .btn-outline-secondary:hover {
    background-color: #FF4500;
    color: #fff;
}

#cookieConsentModal .form-check-input:checked {
    background-color: #FF4500;
    border-color: #FF4500;
}

#cookieConsentModal .form-check-input:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 69, 0, 0.25);
}

#cookieConsentModal a {
    color: #FF4500;
}

#cookieConsentModal a:hover {
    color: #FF8C00;
}

/* Mobile adaptations */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1.1rem;
    }
    .btn-lg {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    .about-section img {
        height: 250px;
    }
    .team-member-card {
        width: 100%;
        margin: 10px 0;
    }
    .offcanvas-end {
        width: 75%;
    }
    .footer-links a {
        display: block;
        margin: 5px 0;
    }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
    .hero-section h1 {
        font-size: 3.5rem;
    }
    .hero-section p {
        font-size: 1.3rem;
    }
    .navbar-expand-lg .offcanvas {
        visibility: hidden;
    }
    .navbar-expand-lg .navbar-toggler {
        display: block;
    }
    .navbar-expand-lg .navbar-collapse {
        display: none !important;
    }
}

@media (min-width: 1024px) {
    .navbar-expand-lg .offcanvas {
        visibility: visible;
        position: static;
        background-color: transparent;
        border: none;
        width: auto;
        transform: none;
    }
    .navbar-expand-lg .offcanvas-body {
        display: flex;
        flex-grow: 1;
        padding: 0;
    }
    .navbar-expand-lg .offcanvas-header {
        display: none;
    }
    .navbar-expand-lg .navbar-toggler {
        display: none;
    }
    .navbar-expand-lg .navbar-nav {
        flex-direction: row;
    }
    .navbar-expand-lg .navbar-nav .nav-item {
        margin-left: 15px;
    }
}
/* Parent container for rights field unit */
.rightsFieldUnit {
    margin-top: 70px; /* Spacing from the element above */
    padding-left: 1.5rem; /* Padding on the left side */
    padding-right: 1.5rem; /* Padding on the right side */
    /* You might want to add max-width here for better readability on very wide screens, e.g., max-width: 700px; */
}

/* Heading 1 styles */
.rightsFieldUnit h1 {
    font-size: 2.2rem; /* Moderate font size for main heading */
    font-weight: 700; /* Bold text */
    margin-top: 2rem; /* Spacing before the heading */
    margin-bottom: 1rem; /* Spacing after the heading */
    line-height: 1.2; /* Tighter line height for headings */
}

/* Heading 2 styles */
.rightsFieldUnit h2 {
    font-size: 1.8rem; /* Slightly smaller than h1 */
    font-weight: 700;
    margin-top: 1.8rem;
    margin-bottom: 0.9rem;
    line-height: 1.25;
}

/* Heading 3 styles */
.rightsFieldUnit h3 {
    font-size: 1.5rem; /* Further reduced size */
    font-weight: 600; /* Slightly less bold */
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

/* Heading 4 styles */
.rightsFieldUnit h4 {
    font-size: 1.25rem; /* Getting closer to body text size */
    font-weight: 600;
    margin-top: 1.2rem;
    margin-bottom: 0.7rem;
    line-height: 1.35;
}

/* Heading 5 styles */
.rightsFieldUnit h5 {
    font-size: 1.1rem; /* Smallest heading, slightly larger than body */
    font-weight: 500; /* Less bold, more distinct from body */
    margin-top: 1rem;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

/* Paragraph styles */
.rightsFieldUnit p {
    font-size: 1rem; /* Base font size for body text */
    line-height: 1.6; /* Optimal line height for readability */
    margin-bottom: 1rem; /* Spacing between paragraphs */
}

/* Unordered list styles */
.rightsFieldUnit ul {
    margin-top: 1rem; /* Spacing before the list */
    margin-bottom: 1rem; /* Spacing after the list */
    padding-left: 1.5rem; /* Indentation for list markers */
    list-style-type: disc; /* Default bullet style */
}

/* List item styles */
.rightsFieldUnit li {
    font-size: 1rem; /* Consistent with paragraph text */
    line-height: 1.6; /* Consistent line height */
    margin-bottom: 0.5rem; /* Spacing between list items */
}


.wr{
    display: flex;
    flex-direction: column;
    min-height: 100vh;

    main{
        flex: 1;
    }
}

section{
    overflow: hidden;
}