/* Base Reset */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #111;
}


/* Sticky Header */

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    padding: 20px 5%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-img {
    height: 80px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-menu a {
    text-decoration: none;
    color: #111;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-menu a:hover {
    color: #6f3ff5;
}


/* Dropdown Styles */

.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    display: none;
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    min-width: 120px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
    z-index: 999;
    padding: 10px 0;
}

.nav-menu .dropdown-menu li {
    list-style: none;
}

.nav-menu .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: #111;
    text-decoration: none;
    font-size: 0.95rem;
    transition: background 0.3s ease;
}

.nav-menu .dropdown-menu a:hover {
    background-color: #f2f2f2;
}

.nav-menu .dropdown:hover .dropdown-menu {
    display: block;
}

.cta-btn {
    background-color: #111;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #6f3ff5;
}

.cta-btn.small {
    font-size: 0.9rem;
    padding: 8px 16px;
}


/* Hero Section */

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 60px 5%;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1 1 500px;
    max-width: 600px;
}

.hero-left h1 {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
}

.hero-left h1 span {
    color: #111;
}

.hero-left p {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 25px;
}

.cta-contact-inline {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.phone {
    font-size: 1rem;
    color: #111;
}

.phone i {
    color: #6f3ff5;
    margin-right: 8px;
}

.hero-right {
    flex: 1 1 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.hero-img-wrapper {
    background-color: #e6ddff;
    border-radius: 50% 50% 0 50%;
    padding: 20px;
    max-width: 350px;
    width: 100%;
}

.hero-img-wrapper img {
    width: 100%;
    border-radius: 10px;
}


/* Partner Logos */

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    padding: 30px 5%;
    background-color: #fff;
}

.trusted-logos img {
    height: 32px;
    opacity: 0.7;
    transition: 0.3s;
}

.trusted-logos img:hover {
    opacity: 1;
    filter: none;
}


/* Services */

.services {
    background-color: #111;
    color: #fff;
    padding: 60px 5%;
    text-align: center;
}

.services h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: #a7eaff;
    color: #111;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: left;
    transition: 0.3s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

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

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    font-size: 0.98rem;
    color: #333;
    margin-bottom: 20px;
}

.service-card a {
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

.service-card a i {
    margin-left: 6px;
}


/* Responsive */

@media screen and (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    .cta-contact-inline {
        justify-content: center;
    }
    .services h2 {
        font-size: 2rem;
    }
}


/* Section 3 - Offshore Partner */

.offshore-partner {
    width: 100%;
    background-color: #fff;
}

.offshore-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.offshore-left {
    flex: 1 1 50%;
    min-height: 480px;
}

.offshore-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offshore-right {
    flex: 1 1 50%;
    background-color: #c6b4f5;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #111;
}

.offshore-right h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.4;
}

.offshore-subtext {
    font-size: 1rem;
    color: #333;
    margin-bottom: 30px;
}

.offshore-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 25px;
}

.offshore-feature i {
    font-size: 1.3rem;
    color: #6f3ff5;
    margin-top: 5px;
    min-width: 24px;
}

.offshore-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.offshore-feature p {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
}


/* Match header CTA */

.offshore-right .cta-btn {
    margin-top: 20px;
    background-color: #111;
    color: #fff;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 0 #6f3ff5;
    transition: background-color 0.3s ease;
}

.offshore-right .cta-btn:hover {
    background-color: #6f3ff5;
}


/* Responsive */

@media screen and (max-width: 768px) {
    .offshore-wrapper {
        flex-direction: column;
    }
    .offshore-left,
    .offshore-right {
        flex: 1 1 100%;
    }
    .offshore-right {
        padding: 40px 20px;
    }
}


/* Section 4: Benefits + Image */

.benefits-section {
    padding: 60px 5%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}

.benefits-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    width: 100%;
}

.benefits-left {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.benefit-block {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-box {
    background-color: #c6b4f5;
    color: #111;
    border-radius: 8px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 48px;
    height: 48px;
}

.icon-box i {
    color: #6f3ff5;
    font-size: 1.2rem;
}

.benefit-block h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.benefit-block p {
    color: #444;
    font-size: 0.98rem;
    line-height: 1.5;
}

.benefits-right {
    flex: 1 1 40%;
    text-align: center;
}

.benefits-right img {
    width: 100%;
    max-width: 360px;
    border-radius: 120px 120px 0 120px;
    background-color: #a7eaff;
    padding: 20px;
}


/* Company Stats Section */

.stats-section {
    padding: 60px 5%;
    background-color: #ffffff;
    text-align: center;
}

.stats-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
}

.stat-box p {
    font-size: 1rem;
    color: #444;
    margin-top: 8px;
}


/* Responsive */

@media screen and (max-width: 768px) {
    .benefits-wrapper {
        flex-direction: column;
        text-align: left;
    }
    .benefits-right img {
        margin-top: 20px;
        border-radius: 20px;
    }
    .stats-wrapper {
        flex-direction: column;
        align-items: center;
    }
    .stat-box {
        margin-bottom: 20px;
    }
}


/* Section 5: Our Methodology */

.methodology-section {
    background-color: #fdfaea;
    padding: 80px 5% 60px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

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

.methodology-container h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #111;
}

.methodology-container p {
    font-size: 1rem;
    color: #333;
    margin-bottom: 40px;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
}

@media screen and (max-width: 768px) {
    .methodology-grid {
        grid-template-columns: 1fr;
    }
}

.method-box {
    background-color: transparent;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 30px;
}

.method-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.method-info p {
    font-size: 0.96rem;
    color: #555;
    line-height: 1.5;
}

.method-box i {
    font-size: 1.6rem;
    color: #333;
    margin-top: 6px;
}


/* Responsive */

@media screen and (max-width: 768px) {
    .methodology-grid {
        gap: 30px 0;
    }
    .method-box {
        flex-direction: column;
        align-items: flex-start;
    }
    .method-box i {
        align-self: flex-end;
    }
}


/* Section 6: Financial Confidence */

.confidence-section {
    background-color: #ffffff;
    padding: 80px 5%;
}

.confidence-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.confidence-left {
    flex: 1 1 45%;
    text-align: center;
}

.confidence-left img {
    width: 100%;
    max-width: 420px;
    object-fit: contain;
}

.confidence-right {
    flex: 1 1 50%;
}

.confidence-right h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 20px;
    line-height: 1.4;
}

.confidence-right p {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.confidence-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.confidence-list li {
    font-size: 1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #333;
}

.confidence-list i {
    color: #6f3ff5;
    font-size: 1.1rem;
}


/* Reuse cta button with full-width option */

.cta-btn.full-width {
    display: inline-block;
    width: 100%;
    max-width: 280px;
    text-align: center;
    background-color: #5f4dee;
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 0 #3e2fcc;
    transition: background-color 0.3s ease;
}

.cta-btn.full-width:hover {
    background-color: #6f3ff5;
}


/* Responsive */

@media screen and (max-width: 768px) {
    .confidence-wrapper {
        flex-direction: column;
        text-align: left;
    }
    .cta-btn.full-width {
        width: 100%;
    }
}


/* Section 7: Testimonials */

.testimonial-section {
    background-color: #fff;
    padding: 80px 20px;
}

.testimonial-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.testimonial-logo img {
    max-width: 250px;
    height: auto;
}

.testimonial-content {
    max-width: 600px;
}

.testimonial-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111;
}

.testimonial-content .quote {
    font-size: 18px;
    color: #444;
    line-height: 1.6;
    margin-bottom: 25px;
}

.testimonial-content .client-name {
    font-weight: 600;
    font-size: 20px;
    color: #000;
}

.testimonial-content .client-location {
    font-size: 16px;
    color: #666;
}


/* Section 8: FAQs */

.faq-section {
    background-color: #fefae9;
    padding: 80px 20px;
}

.faq-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: flex-start;
}

.faq-left {
    flex: 1 1 40%;
}

.faq-left h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
}

.faq-left p {
    font-size: 18px;
    color: #444;
}

.faq-right {
    flex: 1 1 55%;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.accordion-item {
    background: #fffceb;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.accordion-question {
    background: none;
    border: none;
    padding: 18px 20px;
    font-size: 17px;
    text-align: left;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
    position: relative;
}

.accordion-question::after {
    content: "+";
    font-size: 20px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: transform 0.2s ease;
}

.accordion-question.active::after {
    content: "−";
}

.accordion-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    padding: 0 20px;
    font-size: 16px;
    color: #444;
    line-height: 1.5;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-answer.open {
    padding: 15px 20px;
    max-height: 500px;
}

.footer {
    background-color: #000;
    color: #fff;
    padding-top: 40px;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0 60px;
}

.footer-col {
    flex: 1 1 200px;
    margin: 20px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #a58eff;
}

.company h2 {
    font-size: 20px;
    font-weight: 700;
}

.company p {
    margin-top: 8px;
    margin-bottom: 16px;
    font-size: 14px;
    color: #ccc;
}

.social-icons a {
    color: #fff;
    font-size: 16px;
    margin-right: 12px;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #a58eff;
}

.footer-bottom {
    background-color: #b9a7f8;
    text-align: center;
    padding: 16px 0;
    font-size: 14px;
    color: #000;
    margin-top: 30px;
}

.about-section-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.about-heading-container {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin-bottom: 3rem;
}

.about-heading-container h2 {
    flex: 1;
    font-size: 2rem;
    font-weight: 700;
    color: #111111;
    margin: 0;
}

.about-heading-container p {
    flex: 1;
    font-size: 1rem;
    color: #555d68;
    line-height: 1.7;
}

.about-image-container {
    width: 100%;
    max-width: 1100px;
    border: 4px solid #a993ff;
    border-radius: 12px;
    overflow: hidden;
}

.about-image-container img {
    width: 100%;
    display: block;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .about-heading-container {
        flex-direction: column;
        gap: 2rem;
    }
    .about-heading-container h2,
    .about-heading-container p {
        flex: unset;
        width: 100%;
    }
}

.about-stats {
    background-color: #ffffff;
    padding: 3rem 2rem 2rem;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
    gap: 2rem;
    text-align: center;
}

.stat-block h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 0.3rem 0;
}

.stat-block p {
    font-size: 1rem;
    color: #666;
    margin: 0;
}

@media (max-width: 768px) {
    .stats-container {
        flex-direction: column;
        gap: 1.5rem;
    }
}

.offshore-section {
    background-color: #111111;
    color: #ffffff;
    padding: 80px 20px;
    font-family: 'Inter', sans-serif;
}

.offshore-section .container {
    max-width: 1140px;
    margin: 0 auto;
    text-align: center;
}

.offshore-section h2 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

.offshore-section .subtitle {
    font-size: 16px;
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto 60px;
    color: #cfcfcf;
}

.offshore-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.offshore-box {
    background-color: #1e1e1e;
    padding: 30px;
    border-radius: 12px;
    flex: 1 1 480px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.icon-box.purple {
    background-color: #c1aaff;
    color: #000;
}

.icon-box.blue {
    background-color: #a3e1ff;
    color: #000;
}

.offshore-box h3 {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
}

.offshore-box p {
    margin: 0;
    color: #d5d5d5;
    font-size: 15px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .offshore-boxes {
        flex-direction: column;
    }
}

.about-section .container {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.about-section .description {
    margin: 0 auto;
    padding: 0;
    max-width: 850px;
    text-align: left;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

.about-section .section-title {
    text-align: center;
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #0A0A23;
    font-weight: 700;
}

.difference-points {
    max-width: 850px;
    margin: 0 auto 40px;
    padding-left: 20px;
    font-size: 16px;
    color: #333;
    line-height: 1.7;
}

.difference-points li {
    margin-bottom: 12px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #111111;
}

.difference-points,
.workwith-list,
.core-services {
    text-align: left;
    color: #444;
    margin: 0 auto 30px;
    max-width: 800px;
    padding-left: 20px;
}

.difference-points li,
.workwith-list li,
.core-services li {
    margin-bottom: 12px;
    line-height: 1.6;
}

strong {
    font-weight: 600;
}

.services-intro-wrapper {
    background-color: #f1f3f6;
    padding: 80px 20px;
    text-align: center;
}

.services-intro-header {
    max-width: 900px;
    margin: 0 auto 60px;
}

.services-intro-header h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.4;
    color: #111;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: left;
}

.service-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.service-item p {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}


/* Tablet view */

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile view */

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .service-item {
        text-align: center;
    }
    .service-item h3 {
        font-size: 18px;
    }
    .services-intro-header h2 {
        font-size: 24px;
    }
}

.process-heading {
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: #121212;
    margin-bottom: 60px;
    line-height: 1.4;
}

.process-step {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
}

.step-number {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a1a;
    display: block;
    margin-bottom: 10px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 8px;
}

.step-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #121212;
}

.step-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.contact-hero {
    padding: 80px 20px 60px;
    text-align: center;
}

.contact-heading {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.contact-subheading {
    color: #606060;
    font-size: 16px;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1 1 250px;
    max-width: 300px;
    padding: 24px;
    border-radius: 10px;
    box-shadow: 6px 6px 0 #00000020;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
}

.contact-card .icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.card-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.card-detail {
    font-size: 15px;
    color: #333;
    margin: 2px 0;
}

.card-detail-s {
    font-size: 15px;
    color: #333;
    margin: 2px 0;
}


/* Unique colors */

.email-card {
    background-color: #c8b6ff;
}

.phone-card {
    background-color: #fef08a;
}

.location-card {
    background-color: #a5defb;
}

.support-section {
    padding: 60px 20px;
    background: #ffffff;
}

.support-content {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
    flex-wrap: wrap;
}

.support-left {
    flex: 1 1 300px;
    text-align: center;
}

.support-illustration {
    max-width: 180px;
    height: auto;
}

.support-right {
    flex: 2 1 500px;
}

.support-tagline {
    color: #6b4eff;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}

.support-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 16px;
}

.support-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.support-button {
    display: inline-block;
    background-color: #6b4eff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.support-button:hover {
    background-color: #5539e6;
}


/* Map section */

.map-section {
    padding: 40px 20px;
    background-color: #ffffff;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}


/* Meet our Leaders */

.leaders-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}

.leaders-section .section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.leaders-section .subtext {
    font-size: 1rem;
    color: #6b7280;
    margin-bottom: 40px;
}

.leaders-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.leader-card {
    max-width: 220px;
}

.leader-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

.leader-card p {
    font-size: 0.95rem;
    color: #4b5563;
    margin: 4px 0;
}

.leader-role {
    font-size: 1rem;
    font-weight: 500;
    color: #111827;
    margin: 4px 0;
}

.leader-title {
    font-size: 0.9rem;
    font-weight: 400;
    color: #6b7280;
    margin-top: 2px;
}

.models-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #0b0f3b;
    margin-bottom: 60px;
}

.models-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.model-card {
    background-color: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid #e4e4e4;
    transition: all 0.3s ease;
}

.model-highlighted {
    background-color: #2e50d4;
    color: #ffffff;
    border: none;
}

.model-card:hover {
    transform: translateY(-5px);
}

.model-icon {
    font-size: 36px;
    color: #2e50d4;
    margin-bottom: 20px;
}

.model-highlighted .model-icon {
    color: #fff;
}

.model-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.model-sub {
    font-weight: 600;
    margin-bottom: 10px;
}

.model-card p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.6;
}

.model-highlighted p {
    color: #e0e0e0;
}

.quote-button-wrapper {
    margin-top: 50px;
}

.quote-button {
    background-color: #2e50d4;
    color: #fff;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    border-radius: 8px;
    transition: 0.3s ease;
}

.quote-button:hover {
    background-color: #1f3ca8;
}

.uk-hero {
    padding: 60px 20px;
    background-color: #fff;
    font-family: 'Inter', sans-serif;
}

.uk-hero-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.uk-hero-image {
    flex: 1 1 250px;
    max-width: 300px;
}

.uk-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.uk-hero-content {
    flex: 2 1 500px;
    text-align: center;
}

.country-label {
    font-size: 14px;
    color: #4f46e5;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 15px;
}

.uk-hero-content h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.4;
    color: #0a0a23;
    margin-bottom: 20px;
}

.uk-hero-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.country-services-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.country-services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 80px;
}

.country-service-column {
    flex: 1 1 45%;
    max-width: 45%;
}

.country-service-column h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0c0c0c;
    line-height: 1.4;
}

.country-service-column p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.country-service-column ul {
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.country-service-column ul li {
    margin-bottom: 8px;
}


/* Mobile */

@media (max-width: 991px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 80px;
        right: 20px;
        width: 200px;
        border: 1px solid #ddd;
        border-radius: 10px;
        padding: 20px;
    }
    .nav-menu.active {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .hero-content {
        flex-direction: column;
        text-align: center;
    }
    .hero-text h1 {
        font-size: 32px;
    }
    .hero-image {
        margin-top: 40px;
        text-align: center;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    height: 3px;
    width: 25px;
    background: #0a0a23;
    border-radius: 2px;
}

@media (max-width: 991px) {
    .hamburger {
        display: flex;
        z-index: 999;
    }
    .nav-menu {
        position: absolute;
        top: 70px;
        right: 0;
        background: white;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.active {
        max-height: 600px;
        padding: 15px 20px;
    }
    .nav-menu li {
        margin: 10px 0;
    }
    .navbar {
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .cta-btn {
        display: none;
    }
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: none;
        padding-left: 15px;
    }
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

@media (max-width: 768px) {
    .country-services-container {
        flex-direction: column !important;
        align-items: flex-start;
        gap: 40px;
    }
    .country-service-column {
        max-width: 100% !important;
        flex: 1 1 100% !important;
        padding: 0 15px;
    }
    .country-service-column h2 {
        font-size: 20px;
        line-height: 1.4;
    }
    .country-service-column p,
    .country-service-column ul {
        font-size: 15px;
        line-height: 1.6;
    }
    .country-service-column ul {
        padding-left: 18px;
    }
    .uk-hero-container {
        flex-direction: column;
        text-align: center;
    }
    .uk-hero-image {
        max-width: 100% !important;
    }
    .uk-hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
        margin: 20px 0;
    }
    .uk-hero-content p {
        font-size: 15px;
        padding: 0 15px;
    }
}

.country-btn {
    background-color: #1e90ff;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

#countryDropdown select {
    padding: 8px;
    font-size: 16px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.pricing-button-wrapper {
    text-align: center;
    margin: 40px 0;
}

.pricing-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(135deg, #6f3ff5, #4a9eff);
    color: #fff;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(111, 63, 245, 0.4);
    transition: all 0.3s ease-in-out;
}

.pricing-button:hover {
    background: linear-gradient(135deg, #4a9eff, #6f3ff5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(111, 63, 245, 0.5);
}

@media (max-width: 768px) {
    body {
        margin: 0 !important;
        padding: 0 !important;
    }
    .offshore-section {
        margin: 0 !important;
        padding-bottom: 0 !important;
    }
    .offshore-boxes {
        margin: 0 !important;
        padding-bottom: 0 !important;
    }
    .offshore-box {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    .offshore-box:last-child {
        margin-bottom: 0 !important;
    }
    footer,
    .footer {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    .offshore-section::after,
    .offshore-boxes::after,
    .offshore-box::after {
        content: none !important;
    }
}

.our-process {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.our-process h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.super-head {
  color: #007bff;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.main-head {
  font-size: 1.6rem;
  margin: 10px 0;
  color: #222;
}

.sub-head {
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.method {
  margin: 60px 0;
}

.method-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.icon-head {
  color: #007bff;
  font-size: 1.3rem;
}

.flowchart {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 15px 0;
  gap: 20px;
  align-items: center;
  scrollbar-width: none;
}

.flowchart::-webkit-scrollbar {
  display: none;
}

.step {
  flex: 0 0 260px;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: center;
  position: relative;
  min-height: 230px;
}

.step-no {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #007bff;
  color: #fff;
  font-size: 0.9rem;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-weight: bold;
}

.step i.icon {
  font-size: 30px;
  color: #007bff;
  margin-top: 10px;
  margin-bottom: 15px;
}

.step h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.step p {
  font-size: 0.95rem;
  color: #444;
}

.arrow {
  font-size: 2rem;
  color: #999;
  user-select: none;
}

/* Simple Flow Styling */
.simple-flow {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .our-process h2 {
    font-size: 2rem;
  }

  .main-head {
    font-size: 1.3rem;
  }

  .step {
    flex: 0 0 85%;
  }

  .method-title {
    font-size: 1.1rem;
  }

  .super-head, .sub-head {
    font-size: 0.95rem;
  }

  .arrow {
    display: none;
  }
}
