/* CSS Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #FFFFFF;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: #0A1931;
    color: #FFFFFF;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-contact a {
    color: #000000;
    text-decoration: none;
    font-weight: 700; /* Bolder */
    font-size: 1.2em; /* Bigger */
    background-color: #D4AF37;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.header-contact a:hover {
    background-color: #b89a2e;
    color: #FFFFFF;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo {
    max-height: 60px; /* Adjust as needed */
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #D4AF37;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    text-align: left;
    color: #FDFDFD; /* Softer white */
}

.hero-text {
    max-width: 650px;
}

.hero-text h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5em;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 1px 1px 12px rgba(0,0,0,0.8);
}

.hero-text p {
    font-size: 1.3em;
    margin-bottom: 30px;
    text-shadow: 1px 1px 8px rgba(0,0,0,0.7);
}

.hero-ctas {
    display: flex;
    gap: 20px;
}

.cta-button {
    background-color: #D4AF37;
    color: #0A1931;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    background-color: #b89a2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.cta-button-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #D4AF37;
}

/* Trust Badges */
.trust-badges {
    background-color: #F5F5F5;
    padding: 40px 0;
}

.trust-badges .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.badge {
    text-align: center;
    font-weight: 600;
    color: #555;
}

.badge i {
    font-size: 2em;
    color: #D4AF37;
    margin-bottom: 10px;
}

/* Services Section */
.services-section {
    padding: 80px 0;
}

.services-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background-color: #FFFFFF;
    padding: 40px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.service-card img {
    width: 60px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #0A1931;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

/* Legal Insights Section */
.legal-insights-section {
    padding: 80px 0;
}

.legal-insights-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    margin-bottom: 60px;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.insight-card {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.insight-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #0A1931;
}

.insight-card .read-more {
    color: #D4AF37;
    text-decoration: none;
    font-weight: 700;
    margin-top: 20px;
    display: inline-block;
}

.insight-card .read-more:hover {
    text-decoration: underline;
}


/* Ventures Section */
.ventures-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.ventures-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    margin-bottom: 60px;
}

.ventures-slider {
    width: 100%;
    padding-bottom: 50px; /* For pagination */
}

.venture-card {
    text-align: center;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.07);
}

.venture-card img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 20px;
}

.venture-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #0A1931;
}

.accordion-item {
    border-top: 1px solid #eee;
    margin-top: 20px;
    padding-top: 20px;
}

.accordion-header {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    position: relative;
}

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5em;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px; /* Adjust as needed */
}

.accordion-item.active .accordion-header::after {
    content: '-';
}

.swiper-pagination {
    bottom: 0;
}


.about-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #0A1931;
}

/* Featured In */
.featured-in {
    padding: 40px 0;
    background-color: #FFFFFF;
}

.featured-in h4 {
    text-align: center;
    font-size: 1.2em;
    color: #999;
    margin-bottom: 20px;
}

.marquee {
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 1.5em;
    font-weight: 600;
    color: #aaa;
    margin: 0 40px;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* Focus Section */
.focus-section {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    color: #FFFFFF;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 25, 49, 0.8);
}

.focus-section .container {
    position: relative;
    z-index: 1;
}

.focus-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    margin-bottom: 20px;
}

.focus-section p {
    font-size: 1.3em;
    margin-bottom: 30px;
}

.focus-section ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
    font-weight: 700;
    font-size: 1.1em;
}

/* Why Choose Us */
.why-choose-us-section {
    padding: 80px 0;
}

.why-choose-us-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    margin-bottom: 60px;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.reason {
    padding: 30px;
    border-left: 4px solid #D4AF37;
}

.reason h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #0A1931;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.testimonials-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    margin-bottom: 60px;
}

.testimonial {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.testimonial blockquote {
    font-size: 1.2em;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial cite {
    font-weight: 700;
    color: #0A1931;
}

/* Process Section */
.process-section {
    padding: 80px 0;
}

.process-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    margin-bottom: 60px;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.step span {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: #D4AF37;
    color: #0A1931;
    font-weight: 700;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.step h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #0A1931;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #F5F5F5;
}

.faq-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8em;
    margin-bottom: 60px;
}

.faq-item {
    max-width: 800px;
    margin: 0 auto 20px;
    border-bottom: 1px solid #ddd;
}

.faq-question {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3em;
    padding: 20px 0;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5em;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust as needed */
}

.faq-item.active .faq-question::after {
    content: '-';
}


/* Footer */
footer {
    background-color: #0A1931;
    color: #FFFFFF;
    padding: 30px 0;
    text-align: center;
}

footer a {
    color: #D4AF37;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
    }

    nav ul {
        margin-top: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 5px 10px;
    }

    .hero-text h1 {
        font-size: 2.5em;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .focus-section ul {
        flex-direction: column;
    }

    .trust-badges .container {
        flex-wrap: wrap;
    }

    .badge {
        flex-basis: 50%;
        margin-bottom: 20px;
    }
}