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

:root {
    --primary-red: #e63946;
    --dark-bg: #0f0f0f;
    --dark-alt: #1a1a1a;
    --light-text: #f8f9fa;
    --gray-text: #adb5bd;
    --transition: all 0.3s ease-in-out;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--light-text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

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

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }
}

/* Navbar */
.navbar {
    
    background-color: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.navbar-brand img {
    max-width: 150px;
}
.navbar-brand {
    display: flex;
    justify-content: center;
    gap: 10px;
    align-items: center;
    color: #fff;

}
.footer-logo {
     display: flex;
     text-decoration: none;
    gap: 10px;
    align-items: center;
    color: #fff;
    margin-bottom: 25px;
}
.navbar-brand:hover {
    color: #e63946;
}
.nav-link {
    color: var(--light-text) !important;
    font-weight: 500;
    margin: 0 15px;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-red) !important;
}

.navbar-toggler {
    color: var(--light-text);
    border: none;
    font-size: 1.5rem;
}

@media (max-width: 1100px) {
    .navbar-collapse {
        background: var(--dark-bg);
        padding: 20px;
        margin-top: 15px;
        border-radius: 10px;
    }
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
}

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

.btn-outline-light {
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('uploads/media/financial-hero_2.jpg') no-repeat center center/cover;
    padding-top: 100px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.hero-title {
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.hero-lead {
    font-size: 1.25rem;
    max-width: 800px;
    color: var(--gray-text);
}

.scroll-indicator {
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
}

@media (max-width: 991px) {
    .hero-title { font-size: 2.5rem; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; }
    .hero-lead { font-size: 1rem; }
    .hero-section { min-height: 80vh; }
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

.section-subtitle {
    color: var(--gray-text);
    font-size: 1.1rem;
}

@media (max-width: 767px) {
    .section-title { font-size: 1.5rem; }
}

/* Cards */
.target-card {
    background: var(--dark-alt);
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.target-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 20px;
    display: block;
}

.service-card {
    background: var(--dark-bg);
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

/* Principles */
.principles-list {
    list-style: none;
    padding: 0;
}

.principles-list li {
    display: flex;
    margin-bottom: 30px;
}

.p-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.p-text h4 {
    margin-bottom: 5px;
}

.p-text p {
    color: var(--gray-text);
    margin: 0;
}

/* Team */
.team-card {
    text-align: center;
    background: var(--dark-alt);
    border-radius: 15px;
    overflow: hidden;
    padding-bottom: 25px;
}

.team-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-info h4 {
    margin-bottom: 5px;
}

.team-info p {
    color: var(--primary-red);
    font-weight: 500;
}

/* Accordion */
.accordion-item {
    background-color: var(--dark-alt);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 10px;
    border-radius: 10px !important;
    overflow: hidden;
}

.accordion-button {
    background-color: var(--dark-alt);
    color: var(--light-text);
    font-weight: 600;
    padding: 20px;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-red);
    color: white;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    color: var(--gray-text);
}

/* Footer */
.footer {
    background-color: #080808;
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-title {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-red);
    padding-left: 5px;
}

.footer-legal {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-legal a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.9rem;
}

@media (max-width: 767px) {
    .footer-legal {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }
}

/* Modal */
.modal-content {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-body {
    max-height: 70vh;
    overflow-y: auto;
}

.alert-danger {
    background-color: rgba(230, 57, 70, 0.1);
    border-color: var(--primary-red);
    color: white;
}/* Container padding: top and sides */
.privacyNestZone {
    padding: 40px 20px 0 20px;
    line-height: 1.6;
    color: #ffffff;
}

/* Headings with moderate sizes */
.privacyNestZone h1 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.privacyNestZone h2 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 16px;
    font-weight: 600;
}

.privacyNestZone h3 {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 14px;
    font-weight: 600;
}

.privacyNestZone h4 {
    font-size: 16px;
    margin-top: 20px;
    margin-bottom: 12px;
    font-weight: 600;
}

.privacyNestZone h5 {
    font-size: 14px;
    margin-top: 15px;
    margin-bottom: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Paragraph styles */
.privacyNestZone p {
    font-size: 15px;
    margin-bottom: 15px;
}

/* List styles */
.privacyNestZone ul {
    margin-bottom: 20px;
    padding-left: 25px;
    list-style-type: disc;
}

.privacyNestZone li {
    font-size: 15px;
    margin-bottom: 8px;
}

/* Remove margin from the last element to avoid double spacing */
.privacyNestZone *:last-child {
    margin-bottom: 0;
}
section {
    overflow: hidden;
}
.hero-title {
    margin-top: 50px;
}
.swiper {
    padding-bottom: 35px;
}
.swiper-pagination {
   
    bottom: -5px;
}
.swiper-pagination-bullet {
 color: #fff;
 background-color: #fff;
}
 
@media (max-width:767px) {
    .hero-actions {
        display: flex;
        flex-direction: column;
        justify-content: center; 
        gap: 10px;
    }
    .hero-actions a {
        margin: 8px !important;
    }
}