:root {
    --primary: #1a1a1a;
    --secondary: #4a90e2;
    --accent: #2563eb;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --radius-full: 9999px;
    --radius-lg: 24px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    background-color: var(--bg-light);
    color: var(--text-main);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Header Styles */
.main-header {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 99999;
    background-color: var(--bg-light);
    width: 100%;
}

.header-container {
    max-width: 1500px;
    margin: 0 auto;
    background: #2162AB;
    padding: 20px 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: none;
}

.logo img {
    height: 50px;
    display: block;
}

.main-nav>ul {
    display: flex;
    list-style: none;
    gap: 14px;
}

.main-nav a {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: #ffd700;
    /* Gold/Yellow for active/hover on blue */
}

/* Dropdown Styles */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.main-nav .dropdown-menu {
    display: block;
    list-style: none;
    padding: 10px;
}

.dropdown-menu li {
    display: block;
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--text-main);
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    white-space: nowrap;
    text-align: left;
}

.dropdown-menu a.active {
    color: #2162AB !important;
}

.dropdown-menu a:hover {
    background-color: #2162AB;
    color: var(--white) !important;
}

/* Partners Slider Styles */
.partners-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.partners-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.partners-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.partners-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.partners-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
    flex: 1;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding: 20px 0;
}

.partners-track::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.partner-logo-card {
    min-width: 200px;
    height: 120px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.partner-logo-card.dark {
    background: #000000;
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

/* Who We Are - About Section Fixes */
.centered-about {
    padding: 100px 0;
    background: #ffffff;
}

.centered-about .about-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    display: block !important;
}

.about-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: none;
}

.btn-connect {
    background: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-connect:hover {
    background: #333;
    transform: translateY(-2px);
}

.icon-arrow {
    background: var(--white);
    color: var(--primary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg);
    width: 35px;
    height: 3px;
    top: 18px;
    left: 2px;
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg);
    width: 35px;
    height: 3px;
    top: 18px;
    left: 2px;
}

@media (max-width: 1200px) {
    .menu-toggle.active {
        position: fixed;
        top: 40px;
        right: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 40px;
    }

    .menu-toggle.active span {
        position: absolute;
    }
}

/* Hero Section */
.hero-section {
    padding: 40px 0 80px;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

.tag-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.tag-badge .plus {
    color: var(--accent);
    font-weight: 700;
}

.hero-title {
    font-size: 48px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.vision-box {
    position: relative;
    padding: 2px 15px;
    display: inline-block;
}

.vision-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    pointer-events: none;
}

/* Corner Squares */
.vision-box::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    box-shadow:
        calc(100% + 0px) 0 0 var(--primary),
        0 calc(100% + 0px) 0 var(--primary),
        calc(100% + 0px) calc(100% + 0px) 0 var(--primary);
}

.hero-description {
    font-size: 18px;
    color: #4b5563;
    max-width: 700px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 40px;
}

.btn-connect.large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn-connect.large .icon-arrow {
    width: 32px;
    height: 32px;
}

.phone-support {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.phone-text span {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
}

.phone-text strong {
    font-size: 18px;
    color: var(--primary);
    display: block;
}

/* Hero Image Section */
.hero-image-container {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 10px 20px 40px rgba(0, 0, 0, 0.1);
    height: auto;
    background: transparent !important;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    transition: var(--transition);
}

.hero-image:hover img {
    transform: scale(1.05);
}

.stamp-badge {
    position: absolute;
    top: 20px;
    left: -55px;
    background: var(--white);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 10;
}

.stamp-badge svg {
    animation: rotate 12s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Clients Section */
.clients-section {
    padding: 40px 0;
    background: var(--bg-light);
}

.clients-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.section-title-center {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 60px;
}

.slider-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    max-width: 100%;
}

.clients-track {
    display: flex;
    gap: 24px;
    width: 100%;
    overflow: hidden;
    scroll-behavior: auto; /* Reset to auto for JS control */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
    padding: 20px 0;
    user-select: none;
}

.clients-track .client-card img {
    pointer-events: none;
}

.clients-track::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari and Opera */
}

.client-card {
    flex: 0 0 250px;
    background: var(--white);
    padding: 32px 24px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 140px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.client-card img {
    max-width: 100%;
    max-height: 120px;
    object-fit: contain;
}

.slider-nav-btn {
    background: var(--white);
    border: none;
    cursor: pointer;
    color: var(--primary);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
    z-index: 10;
}

.slider-nav-btn:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.1);
}

.slider-nav-btn svg {
    width: 24px;
    height: 24px;
}

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

.about-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 1.1 / 1;
    background: transparent;
    box-shadow: none;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Removed hexagonal cutout shapes */

.dark-triangle {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 180px;
    height: 180px;
    background: #1e293b;
    clip-path: polygon(0 40%, 0% 100%, 80% 100%);
    z-index: 3;
}

.about-content {
    padding-left: 20px;
}

.tag-badge-left {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-light);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    box-shadow: none;
}

.about-title {
    font-size: 48px;
    line-height: 1.1;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 32px;
}

.about-text p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 24px;
    line-height: 1.7;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #111827;
    color: var(--white);
}

.services-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.services-header {
    margin-bottom: 60px;
}

.tag-badge-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 24px;
}

.services-title {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 16px;
}

.services-subtitle {
    color: #94a3b8;
    font-size: 18px;
    max-width: 600px;
}

.services-accordion {
    display: flex;
    gap: 0;
    background: #1f2937;
    border-radius: 24px;
    overflow: hidden;
    min-height: 600px;
}

.service-card {
    flex: 1;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    position: relative;
}

.service-card:last-child {
    border-right: none;
}

.service-card.active {
    flex: 4;
    background: #374151;
    padding: 50px 40px;
    align-items: flex-start;
    cursor: default;
}

.service-icon-box {
    width: 60px;
    height: 60px;
    background: #111827;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    color: var(--accent);
}

.service-card.active .service-icon-box {
    margin-bottom: 30px;
}

.service-vertical-title {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 22px;
    font-weight: 600;
    color: var(--white);
    white-space: nowrap;
    margin-top: auto;
    margin-bottom: auto;
    transition: all 0.3s;
}

.service-card.active .service-vertical-title {
    display: none;
}

.service-details {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.service-card.active .service-details {
    display: block;
    opacity: 1;
}

.service-card-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 24px;
}

.service-card-desc {
    color: #cbd5e1;
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.btn-view-details {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition);
}

.btn-view-details:hover {
    background: var(--white);
    color: var(--primary);
}

.plus-btn-round {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    color: rgba(255, 255, 255, 0.6);
}

.service-card.active .plus-btn-round {
    display: none;
}

/* How We Work Section */
.how-work-section {
    padding: 80px 0;
    background: #f1f5f9;
    text-align: left;
}

.how-work-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.how-work-header {
    margin-bottom: 80px;
}

.tag-badge-center-grey {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.how-work-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.1;
    max-width: 800px;
    margin: 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: left;
}

.step-card {
    position: relative;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    color: var(--primary);
}

.step-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 16px;
}

.step-desc {
    color: var(--text-muted);
    font-size: 18px;
    line-height: 1.6;
}

/* Why Us Section */
.why-us-section {
    padding: 80px 0;
    background: var(--white);
}

.why-us-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-image img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.why-us-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    color: var(--primary);
}

.feature-text {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
}

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

.faq-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
}

.faq-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 40px;
}

.btn-ask {
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.btn-ask:hover {
    background: #333;
    transform: translateY(-2px);
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.faq-header {
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.faq-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.faq-icon-circle {
    width: 32px;
    height: 32px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-item.active {
    background: #1e293b;
}

.faq-item.active .faq-header h3 {
    color: var(--white);
}

.faq-item.active .faq-icon-circle {
    background: var(--white);
    color: var(--primary);
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 32px 32px;
    color: #94a3b8;
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-content {
    display: block;
}


/* New Who We Are About Section */
.who-about-section {
    padding: 80px 0;
    background: #ffffff;
}

.who-about-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.who-about-image-box {
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.who-about-image-box img {
    width: 100%;
    height: auto;
    display: block;
}

.who-quote-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.about-features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.about-features-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    color: #475569;
    font-size: 18px;
    line-height: 1.6;
}

.about-features-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2162AB;
    font-weight: bold;
    font-size: 24px;
    line-height: 1;
}

@media (max-width: 991px) {
    .who-about-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .who-about-section {
        padding: 40px 0;
    }
    .who-about-container, .who-quote-container {
        padding: 0 15px;
    }
    .who-about-image-box {
        border-radius: 20px;
        min-height: 200px;
        background: #f8fafc;
    }
}

/* Footer Section */
.main-footer {
    padding: 40px 0;
    background: #111827;
    color: var(--white);
}

.footer-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 60px;
}

.footer-logo img {
    height: 50px;
    margin-bottom: 30px;
}

.footer-desc {
    color: #94a3b8;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 320px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--accent);
}

.footer-col h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
    font-size: 15px;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    color: #94a3b8;
    font-size: 15px;
}

.contact-item strong {
    color: var(--white);
    display: block;
    margin-bottom: 5px;
}

.footer-bottom {
    margin-top: 30px;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-container {
    width: 100% !important;
    padding: 20px 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #94a3b8;
    font-size: 14px;
    text-align: center !important;
}

.footer-bottom-container p {
    margin: 0 !important;
    text-align: center !important;
    width: 100% !important;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {

    .why-us-container,
    .faq-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 0 20px;
    }

    .footer-legal {
        justify-content: center;
    }
}

/* Who We Are Hero Section */
.who-hero-section {
    padding: 100px 0 80px;
    background-color: #ffffff;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    min-height: auto;
}

.who-hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(150deg,
            #f8fafc 0%,
            #f8fafc 25%,
            #f1f5f9 25%,
            #f1f5f9 45%,
            #e2e8f0 45%,
            #e2e8f0 55%,
            #f1f5f9 55%,
            #f1f5f9 75%,
            #ffffff 75%);
    z-index: 1;
}

.who-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    right: -5%;
    width: 50%;
    height: 100%;
    background: #f1f5f9;
    clip-path: polygon(100% 0, 0 0, 100% 100%);
    opacity: 0.3;
    z-index: 1;
}

.who-hero-container {
    max-width: 1500px;
    width: 100%;
    padding: 0 60px;
    position: relative;
    z-index: 10;
}

.who-hero-title {
    font-size: 60px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.who-hero-subtitle {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 0 48px;
}

.who-hero-section .btn-connect {
    margin: 0;
    width: fit-content;
    padding: 16px 36px;
    font-size: 18px;
}

@media (max-width: 768px) {
    .who-hero-section {
        padding: 100px 0 80px;
    }

    .who-hero-title {
        font-size: 40px;
    }

    .who-hero-subtitle {
        font-size: 16px;
    }
}

/* Quote Section */
.quote-section {
    padding: 60px 0;
    background: #ffffff;
}

.quote-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.quote-box {
    background: #f8fafc;
    padding: 40px 60px;
    border-left: 5px solid #1e293b;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.quote-text {
    font-size: 22px;
    font-style: italic;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 24px;
}

.quote-author {
    font-size: 14px;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.author-line {
    width: 20px;
    height: 1px;
    background: #cbd5e1;
}

/* CTA Section */
.cta-section {
    padding: 80px 0 120px;
    background: #ffffff;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-card {
    background: #2d3748;
    border-radius: 32px;
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.cta-title {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 18px;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-contact-white {
    background: #ffffff;
    color: #1a202c;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-contact-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

.icon-arrow-dark {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 60px 0;
    background: #ffffff;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

.mv-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.mv-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

.mv-icon-box {
    width: 80px;
    height: 80px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.mv-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.mv-card p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

.mv-card p strong {
    color: #1e293b;
}

@media (max-width: 1024px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .cta-card {
        padding: 60px 24px;
    }

    .cta-title {
        font-size: 32px;
    }

    .quote-box {
        padding: 30px;
    }

    .quote-text {
        font-size: 18px;
    }

    .mv-card {
        padding: 40px 24px;
    }
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.team-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.team-card-image {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 4px solid #f8fafc;
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
    text-align: center;
}

.team-card-role {
    font-size: 14px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: block;
    margin-bottom: 20px;
    text-align: center;
}

.team-card-social {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.team-social-link {
    color: #1e293b;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    color: #0077b5;
    transform: scale(1.1);
}

.btn-view-bio {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    color: #1e293b;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-view-bio:hover {
    background: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

/* Team Modal Popup */
.team-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.team-modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    max-width: 650px;
    width: 100%;
    border-radius: 32px;
    padding: 40px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: #f1f5f9;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #64748b;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #ef4444;
    color: #ffffff;
}

.modal-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.modal-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-info h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 6px;
}

.modal-info span {
    font-size: 14px;
    color: #3b82f6;
    font-weight: 700;
    text-transform: uppercase;
}

.modal-bio {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
}

.modal-scroll-area {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 15px;
    margin-right: -10px;
}

/* Custom scrollbar for modal */
.modal-scroll-area::-webkit-scrollbar {
    width: 6px;
}
.modal-scroll-area::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}
.modal-scroll-area::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}
.modal-scroll-area::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
    .team-card {
        padding: 30px 20px;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }
    .team-card-image {
        width: 200px;
        height: 200px;
        margin: 0 auto 20px;
    }
    .team-card-name {
        text-align: center !important;
        width: 100%;
        display: block;
        word-break: break-word;
    }
    .team-card-role {
        text-align: center !important;
        width: 100%;
        display: block;
        word-wrap: break-word;
    }
}

.tag-badge-center {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f1f5f9;
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 24px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Custom centered layout for Who We Are about section */
.about-section.centered-about .about-container {
    grid-template-columns: 1fr;
    max-width: 1100px;
    margin: 0 auto;
}

.about-section.centered-about .about-content {
    padding-left: 0;
}

.about-section.centered-about .tag-badge-left {
    display: flex;
    width: fit-content;
    margin-bottom: 24px;
}

/* Partners Section */
.partners-section {
    padding: 20px 0 30px;
    background: #ffffff;
    text-align: center;
}

.partners-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.partners-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.partner-logo-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    width: 220px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.partner-logo-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Ready CTA Section */
.ready-cta-section {
    padding: 30px 0;
    background: #ffffff;
}

.ready-cta-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.ready-cta-box {
    background: #334155;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.ready-cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.ready-cta-text {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.ready-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #1e293b;
    padding: 18px 40px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.ready-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ready-btn .btn-arrow {
    display: flex;
    align-items: center;
}

.partner-logo-card.dark {
    background: #000000;
    border-color: #000000;
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Partner With Us Section */
.partner-with-us-section {
    padding: 60px 0 120px;
    background: #ffffff;
}

.partner-with-us-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: flex-start;
}

.partner-form {
    background: #ffffff;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 32px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #1e293b;
}

.form-group input {
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-family: inherit;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #fcfcfc;
}

.form-group input:focus {
    outline: none;
    border-color: #1e293b;
    background: #ffffff;
}

.form-group input::placeholder {
    color: #94a3b8;
    opacity: 0.6;
}

.btn-submit {
    background: #1e293b;
    color: #ffffff;
    border: none;
    padding: 14px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #000000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.partner-content {
    padding-top: 10px;
}

.partner-content .partner-title {
    font-size: 52px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 32px;
    line-height: 1.1;
}

.partner-content p {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .partners-grid {
        display: none; /* Hide old grid if it exists */
    }

    .partner-with-us-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .partner-content {
        order: -1;
    }
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .partner-content .partner-title {
        font-size: 36px;
    }
}

/* Service Pages Layout */
.service-hero {
    padding: 100px 0 80px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.service-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.03) 0%, rgba(37, 99, 235, 0.03) 1%, transparent 1%, transparent 50%, rgba(37, 99, 235, 0.03) 50%, rgba(37, 99, 235, 0.03) 51%, transparent 51%, transparent 100%);
    background-size: 60px 60px;
    z-index: 1;
}

.service-hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.service-hero-title {
    font-size: 48px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.1;
}

.service-hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 0 48px;
    line-height: 1.7;
}

.btn-touch {
    background: #1e293b;
    color: var(--white);
    padding: 12px 32px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: var(--transition);
}

.btn-touch:hover {
    background: #000;
    transform: translateY(-2px);
}

.btn-touch .icon-arrow {
    width: 32px;
    height: 32px;
    background: var(--white);
    color: #1e293b;
}

.service-content-section {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden; /* Prevent background circles from causing overflow */
}

.service-content-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.service-image-box {
    border-radius: 32px;
    overflow: hidden;
    box-shadow: none;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 1000 / 667;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.service-image-box:hover img {
    transform: scale(1.05);
}

.service-text-content h2 {
    font-size: 48px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 32px;
    line-height: 1.1;
}

.service-text-content p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 24px;
}

@media (max-width: 991px) {
    .service-content-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .service-hero-title {
        font-size: 48px;
    }

    .service-text-content h2 {
        font-size: 40px;
    }
}

/* Support Includes Section */
.support-includes-section {
    padding: 100px 0;
    background: #F6FAFF;
}

.support-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.support-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 60px;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.support-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

.support-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.support-card p {
    font-size: 18px;
    color: #64748b;
    line-height: 1.6;
}

.support-card.highlighted {
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
}

.support-card.center-card {
    grid-column: 2;
}

.support-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

.relative {
    position: relative;
}

.bg-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.05);
    z-index: 0;
}

.bg-circle.left {
    top: 50%;
    left: -200px;
    transform: translateY(-50%);
}

.bg-circle.right {
    top: 50%;
    right: -200px;
    transform: translateY(-50%);
    background: rgba(59, 130, 246, 0.08);
}

@media (max-width: 1200px) {
    .header-container {
        padding: 15px 30px;
        border-radius: 20px;
        margin: 0 auto;
        width: 92%;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 470px;
        height: 100vh;
        background: #2162AB;
        padding: 100px 50px;
        transition: 0.4s ease;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav>ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        font-size: 19px;
        font-weight: 600;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 20px 0;
        white-space: normal;
        line-height: 1.3;
        color: var(--white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .main-nav li:last-child a {
        border-bottom: none;
    }

    .has-dropdown>a::after {
        content: '';
        display: inline-block;
        width: 10px;
        height: 10px;
        border-right: 2.5px solid var(--white);
        border-bottom: 2.5px solid var(--white);
        transform: rotate(45deg);
        transition: 0.3s ease;
        margin-left: 10px;
        margin-top: -5px;
    }

    .has-dropdown.active>a::after {
        transform: rotate(-135deg);
        margin-top: 5px;
    }

    /* Mobile Dropdown Fix - Perfectly Aligned & Consistent */
    .main-nav .has-dropdown .dropdown-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        box-shadow: none !important;
        background: none !important;
        padding: 0 0 0 20px !important;
        margin: 10px 0 !important;
        border-radius: 0 !important;
        min-width: 100% !important;
        display: none;
        transition: none !important;
        border-left: 2px solid rgba(255, 255, 255, 0.1) !important;
    }

    .main-nav .has-dropdown.active .dropdown-menu {
        display: block !important;
    }

    .main-nav .dropdown-menu li {
        width: 100% !important;
        margin: 0 !important;
        display: block !important;
    }

    .main-nav .dropdown-menu a {
        font-size: 16px !important;
        color: rgba(255, 255, 255, 0.8) !important;
        padding: 10px 0 !important;
        background: none !important;
        border-radius: 0 !important;
        text-align: left !important;
        justify-content: flex-start !important;
        display: block !important;
    }

    .dropdown-menu a::after {
        display: none !important;
        /* No arrows for sub-items */
    }

    .header-cta {
        display: none;
    }

    .support-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Global Mobile Alignment Resets */
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
    }

    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    .container,
    .header-container,
    .footer-container,
    .hero-container,
    .service-hero-container,
    .service-content-container,
    .support-container,
    .ready-cta-container,
    .services-container,
    .about-container,
    .clients-container,
    .how-work-container,
    .why-us-container,
    .faq-container,
    .team-container,
    .partners-container,
    .partner-with-us-container,
    .form-container,
    .case-hero-container,
    .case-content-container,
    .case-container,
    .leadership-container,
    .gallery-container,
    .services-grid,
    .steps-grid,
    .features-grid,
    .mv-grid,
    .gallery-hero-container,
    .blog-container,
    .blog-hero-container,
    .who-hero-container {
        width: 100% !important;
        max-width: none !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        box-sizing: border-box !important;
    }

    .contact-form-section {
        padding: 40px 15px 20px 15px !important; /* Balanced with global rules */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .contact-form-container {
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 30px 20px !important;
        box-sizing: border-box !important;
        display: block !important;
        float: none !important;
        border-radius: 20px !important;
    }

    .hero-container {
        grid-template-columns: 1fr !important;
        gap: 50px !important;
    }

    .hero-section {
        padding: 20px 0 40px !important;
        min-height: auto !important;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .hero-title {
        text-align: left !important;
        font-size: 25px !important;
    }

    .hero-description {
        text-align: left !important;
        font-size: 16px !important;
    }

    .tag-badge {
        margin-bottom: 16px !important;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center !important;
        text-align: center !important;
        gap: 25px !important;
        width: 100%;
    }

    .vision-box {
        padding: 0 5px !important;
    }

    .vision-box::before,
    .vision-box::after {
        display: none !important;
    }

    .phone-support {
        gap: 10px !important;
    }

    .stamp-badge {
        width: 80px !important;
        height: 80px !important;
        top: -35px !important;
        left: -10px !important;
        bottom: auto !important;
        right: auto !important;
    }

    .logo img {
        height: 32px;
    }

    .service-hero-title,
    h1,
    h2,
    h3,
    h4,
    .form-title,
    .support-title,
    .section-title,
    .how-work-header,
    .faq-info,
    .services-header,
    .team-header {
        font-size: 25px !important;
        text-align: left !important;
        margin-bottom: 20px !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    p,
    .service-hero-desc,
    .form-subtitle,
    .support-card p {
        font-size: 16px !important;
        text-align: justify !important;
        line-height: 1.6 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .service-text-content,
    .about-content {
        padding: 0 !important;
        text-align: left !important;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .service-image-box {
        margin-bottom: 30px !important;
        width: 100% !important;
        height: auto !important;
        aspect-ratio: auto !important;
        display: block !important;
        min-height: 200px !important;
    }

    .service-image-box img {
        width: 100% !important;
        height: auto !important;
    }

    .support-grid,
    .support-grid.four-cols {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .support-card.center-card {
        grid-column: auto !important;
        max-width: 100% !important;
        margin: 0 !important;
    }

    .support-card {
        padding: 25px 20px !important;
    }

    .support-card h3 {
        font-size: 20px !important;
        margin-bottom: 10px !important;
    }

    /* All sections unified spacing */
    section, 
    .clients-section, 
    .about-section, 
    .services-section, 
    .how-work-section, 
    .why-us-section, 
    .faq-section, 
    .contact-form-section, 
    .contact-info-section,
    .case-content-section,
    .gallery-grid-section,
    .service-hero,
    .who-hero-section,
    .gallery-hero,
    .case-hero,
    .team-section,
    .partners-section,
    .partner-with-us-section {
        padding: 20px 0 !important;
    }

    .hero-section {
        padding: 20px 0 40px !important;
    }

    /* Grid Stacking for all containers - 2 columns as requested */
    .about-container,
    .why-us-container,
    .faq-container,
    .steps-grid,
    .features-grid,
    .mv-grid,
    .team-row,
    .team-grid,
    .partners-grid,
    .form-grid,
    .service-content-container,
    .blog-container,
    .case-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .about-image-wrapper {
        display: block !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    .team-list {
        gap: 40px !important;
    }

    .team-row.reverse {
        direction: ltr !important;
    }

    .slider-wrapper {
        gap: 5px !important;
    }

    .clients-track {
        gap: 10px !important;
        padding: 10px 0 !important;
    }

    .client-card {
        flex: 0 0 calc(50% - 5px) !important;
        height: 100px !important;
        padding: 10px !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
    }

    .slider-nav-btn {
        width: 32px !important;
        height: 32px !important;
    }

    .slider-nav-btn svg {
        width: 18px !important;
        height: 18px !important;
    }

    .about-image-container {
        aspect-ratio: 1 / 1 !important;
    }

    .about-image-container::before,
    .about-image-container::after {
        display: none !important;
    }

    .about-image-container img {
        position: relative;
        z-index: 1;
    }

    .dark-triangle {
        z-index: 2 !important;
        width: 100px !important;
        height: 100px !important;
    }

    .services-accordion {
        flex-direction: column;
        min-height: auto !important;
    }

    .service-card {
        width: 100% !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        padding: 30px 20px !important;
        min-height: 100px;
    }

    .service-card.active {
        padding: 40px 20px !important;
    }

    .service-vertical-title {
        writing-mode: horizontal-tb;
        transform: none;
        margin: 0;
        font-size: 18px;
    }

    .service-icon-box {
        margin-bottom: 20px !important;
    }

    .partners-slider-wrapper {
        display: flex;
        align-items: center;
        gap: 5px !important;
        position: relative;
    }

    .partners-track {
        display: flex;
        gap: 0 !important;
        overflow-x: auto;
        scroll-behavior: smooth;
        padding: 15px 0 !important;
        width: 100%;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
    }

    .partners-title {
        margin-bottom: 25px !important;
        text-align: center !important;
    }

    .partners-track::-webkit-scrollbar {
        display: none;
    }

    .partner-logo-card {
        flex: 0 0 100% !important;
        height: 160px !important;
        padding: 30px !important;
        background: #ffffff;
        border-radius: 24px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08) !important;
        scroll-snap-align: center;
        box-sizing: border-box;
    }

    .partner-logo-card img {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
    }

    .mobile-visible {
        display: block !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    /* Disable horizontal reveal animations on mobile to prevent overflow */
    .fade-left, .fade-right {
        transform: none !important;
        opacity: 1 !important;
        transition: none !important;
    }
    
    .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

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

    .support-card.center-card {
        grid-column: span 2;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .support-grid {
        grid-template-columns: 1fr;
    }

    .support-card.center-card {
        grid-column: auto;
    }

    .support-title {
        font-size: 25px !important;
    }

    .section-title {
        font-size: 25px !important;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.contact-form-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 32px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.05);
    width: 100%;
    box-sizing: border-box;
}
/* Mobile override handled in global media query above */

.form-header {
    text-align: left;
    margin-bottom: 48px;
}

.form-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 12px;
}

.form-subtitle {
    font-size: 18px;
    color: var(--text-muted);
}

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

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

.form-group.full-width {
    grid-column: span 2;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: none;
    background: #f1f5f9;
    border-radius: 12px;
    font-family: inherit;
    font-size: 16px;
    color: var(--text-main);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.form-submit {
    display: flex;
    justify-content: flex-start;
}

/* Contact Page New Layout */
.contact-info-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-info-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 40px;
}

.info-card {
    background: #2162AB;
    /* Brand Blue */
    color: var(--white);
    padding: 50px 30px;
    text-align: center;
    border-radius: 60px 10px 60px 10px;
    /* Unique leaf shape from photo */
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(33, 98, 171, 0.2);
}

.info-icon {
    background: var(--white);
    color: #2162AB;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
}

.info-card p {
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.form-tag {
    display: block;
    color: #2162AB;
    /* Soft green tag to match layout style */
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 500;
}

.btn-submit {
    background: #ffd700;
    /* Using the orange from photo as requested for the layout */
    color: var(--white);
    border: none;
    padding: 18px 45px;
    border-radius: 35px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 20px rgba(255, 127, 0, 0.2);
}

.btn-submit:hover {
    background: #2162AB;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 127, 0, 0.4);
}

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

@media (max-width: 768px) {
    .contact-info-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }

    .info-card {
        padding: 40px 20px;
    }

    .form-title {
        font-size: 25px !important;
    }

    /* Contact form handled above */
}

/* Gallery Page Styles */
.gallery-hero {
    padding: 100px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: left;
}

/* Matching the background pattern from other pages */
.gallery-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(150deg,
            #f8fafc 0%,
            #f8fafc 25%,
            #f1f5f9 25%,
            #f1f5f9 45%,
            #e2e8f0 45%,
            #e2e8f0 50%,
            #f8fafc 50%,
            #f8fafc 100%);
    z-index: 1;
    transform: rotate(-5deg);
}

.gallery-hero-container {
    max-width: 1500px;
    width: 100%;
    padding: 0 60px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.gallery-hero h1 {
    font-size: 60px;
    color: #1e293b;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.gallery-hero p {
    font-size: 18px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 750px;
    margin-left: 0;
    margin-right: 0;
}

.btn-get-touch {
    display: inline-flex;
    align-items: center;
    background: #1e293b;
    color: #ffffff;
    padding: 10px 10px 10px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    gap: 15px;
}

.btn-get-touch:hover {
    background: #2162AB;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.btn-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    color: #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Gallery Grid */
.gallery-grid-section {
    padding: 100px 0;
    background: #ffffff;
}

.gallery-grid-section .container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.gallery-grid {
    columns: 3;
    column-gap: 30px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 30px;
    border-radius: 20px;
    overflow: hidden;
    height: auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-overlay {
    display: none;
}

.gallery-overlay span {
    display: none;
}

@media (max-width: 1200px) {
    .gallery-hero h1 {
        font-size: 64px;
    }
}

@media (max-width: 991px) {
    .gallery-grid {
        columns: 2;
    }
    .gallery-hero h1 {
        font-size: 54px;
    }
    .gallery-hero {
        padding: 120px 0 80px;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        columns: 1;
        padding: 0 15px;
    }
    .gallery-hero h1 {
        font-size: 42px;
    }
}

/* Gallery Section Header Styles */
.gallery-header {
    text-align: left;
    margin-bottom: 60px;
}

.gallery-header .tag-badge {
    margin-bottom: 24px;
}

.gallery-header .section-title {
    font-size: 48px;
    font-weight: 600;
    color: #1e293b;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-header .section-title {
        font-size: 25px !important;
    }
}

/* Case Study Hero */
.case-hero {
    padding: 100px 0 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.case-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 120%;
    height: 200%;
    background: linear-gradient(150deg,
            #f8fafc 0%,
            #f8fafc 25%,
            #f1f5f9 25%,
            #f1f5f9 45%,
            #e2e8f0 45%,
            #e2e8f0 55%,
            #f1f5f9 55%,
            #f1f5f9 75%,
            #ffffff 75%);
    z-index: 1;
    transform: rotate(-5deg);
}

.case-hero-container {
    max-width: 1500px;
    width: 100%;
    padding: 0 60px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.case-hero h1 {
    font-size: 60px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.case-hero .tag-badge {
    display: inline-block;
    padding: 8px 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    color: #475569;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.case-hero p {
    font-size: 18px;
    color: #475569;
    max-width: 800px;
    margin: 0;
}

/* New Case Study Grid Layout */
.case-study-grid-section {
    padding: 80px 0;
    background: #ffffff;
}

.case-study-grid-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.case-study-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.case-card-image {
    height: 250px;
    overflow: hidden;
}

.case-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.case-study-card:hover .case-card-image img {
    transform: scale(1.1);
}

.case-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-card-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
    line-height: 1.3;
}

.case-card-content p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

.btn-view-more {
    margin-top: auto;
    padding: 12px 24px;
    background: #2162AB;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
}

.btn-view-more:hover {
    background: #1e293b;
}

/* Modal Styles */
.case-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100000;
    backdrop-filter: blur(10px);
    padding: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-modal.active {
    display: flex !important;
    opacity: 1;
}

.modal-content-wrapper {
    background: #ffffff;
    max-width: 1200px;
    width: 100%;
    max-height: 96vh;
    margin: 0 auto;
    border-radius: 30px;
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.case-modal .modal-scroll-area {
    max-height: none !important;
}

.modal-scroll-area {
    overflow-y: auto;
    flex: 1;
}

@keyframes modalSlideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 100;
    color: #1e293b;
    font-size: 24px;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.close-modal:hover {
    background: #2162AB;
    color: #ffffff;
    transform: rotate(90deg);
}

.modal-body {
    padding: 60px;
}

/* Legacy Case Grid (Keep for Modals) */
.case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 20px;
}

.case-image-col img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

/* Vertical Scrolling Image Effect */
.case-image-scroll-box {
    width: 100%;
    height: 450px;
    overflow: hidden;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.case-image-scroll-box img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 4s ease-in-out;
}

.case-image-scroll-box:hover img {
    transform: translateY(calc(-100% + 450px));
}

/* If the image is not long enough to scroll, it just sits there */
.case-image-scroll-box img:only-child {
    object-fit: cover;
    min-height: 100%;
}


.content-main-title {
    font-size: 42px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.case-intro {
    font-size: 22px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.6;
    margin-bottom: 40px;
    padding-left: 35px;
    border-left: 4px solid #2162AB;
}

.case-content-col p,
.case-full-width p,
.case-text-wrapper p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 25px;
}

.case-content-col h3,
.case-full-width h3,
.case-text-wrapper h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin: 20px 0 20px; /* Reduced top margin from 40px to 20px */
}

.case-full-width {
    padding-top: 10px;
    border-top: 1px solid #f1f5f9;
}


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

@media (max-width: 768px) {
    .case-study-grid {
        grid-template-columns: 1fr;
    }
    .case-study-grid-container {
        padding: 0 20px;
    }
    .modal-body {
        padding: 50px 20px; /* Increased vertical padding from 30px to 50px */
    }
    .case-intro {
        font-size: 18px;
        padding-left: 20px !important; /* Adjusted to 20px as requested */
        margin-bottom: 30px;
    }
    .case-image-scroll-box {
        height: 250px !important; /* Smaller image height for mobile */
    }
    .content-main-title {
        font-size: 28px !important;
        margin-bottom: 20px;
    }
}

/* Mobile Overrides for Form and Spacing */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .form-group.full-width {
        grid-column: auto !important;
    }
    
    .contact-form-container {
        padding: 40px 20px !important;
        width: 100% !important;
    }

    .form-title {
        font-size: 28px !important;
    }
}

/* Partners Slider Styles */
.partners-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}

.partners-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.partners-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 50px;
}

.partners-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 30px;
}

.partners-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    flex: 1;
    justify-content: center;
    flex-wrap: nowrap;
}

.partner-logo-card {
    min-width: 200px;
    height: 120px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

.partner-logo-card.dark {
    background: #000000;
}

.partner-logo-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: #cbd5e1;
}

/* Who We Are - About Section Fixes */
.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-container {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.dark-triangle {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: #1e293b;
    clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}

.tag-badge-left {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #2162AB;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.about-title {
    font-size: 48px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 30px;
}

@media (max-width: 991px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .tag-badge-left {
        justify-content: center;
    }
    
    .about-title {
        font-size: 36px;
    }
}

/* Blog Page Styles */
.blog-hero {
    padding: 100px 0 60px;
    background: #f8fafc;
    text-align: center;
}

.blog-hero-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
}

.blog-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.blog-hero-desc {
    font-size: 20px;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.blog-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.blog-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.blog-post-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    gap: 30px;
    align-items: center;
}

.blog-post-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border-color: #cbd5e1;
}

.blog-image-box {
    flex: 0 0 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
}

.blog-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.blog-post-content {
    flex: 1;
}

.blog-meta {
    font-size: 14px;
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.blog-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-excerpt {
    font-size: 18px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-read-more {
    display: inline-block;
    padding: 12px 28px;
    background: #1e293b;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-read-more:hover {
    background: #000000;
    transform: translateY(-2px);
}

/* Sidebar Styles */
.sidebar-widget {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}

.widget-title {
    font-size: 24px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
}

.search-form {
    display: flex;
    gap: 10px;
}

.search-form input {
    flex: 1;
    padding: 12px 20px;
    border-radius: 10px;
    border: 1px solid #cbd5e1;
    font-family: inherit;
}

.search-form button {
    background: #3b82f6;
    color: #ffffff;
    border: none;
    padding: 12px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: #2563eb;
}

.recent-posts-widget ul {
    list-style: none;
    padding: 0;
}

.recent-posts-widget li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e2e8f0;
}

.recent-posts-widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.recent-posts-widget a {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 15px;
}

.recent-post-thumb {
    flex: 0 0 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info {
    flex: 1;
}

.recent-posts-widget a:hover {
    color: #3b82f6;
}

.recent-posts-widget a:hover .recent-post-thumb img {
    transform: scale(1.1);
}

.recent-post-thumb img {
    transition: transform 0.3s ease;
}

@media (max-width: 991px) {
    .blog-container {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 40px;
    }
    
    .blog-hero-container {
        padding: 0 20px;
    }
    
    .blog-sidebar {
        order: 1; /* Sidebar at bottom */
    }
    
    .blog-hero-title {
        font-size: 28px !important;
        text-align: center !important;
    }

    .blog-hero-desc {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .sidebar-widget {
        padding: 20px !important;
        margin-bottom: 30px !important;
    }

    .recent-posts-widget a {
        gap: 10px !important;
    }

    .recent-post-thumb {
        flex: 0 0 60px !important;
        height: 60px !important;
    }

    .recent-post-info {
        font-size: 15px !important;
        line-height: 1.3 !important;
    }

    .blog-post-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .blog-image-box {
        flex: 0 0 auto;
        width: 100%;
        height: 250px;
    }

    .blog-title {
        font-size: 24px;
    }
}

/* Global Responsive Alignment Fixes */
@media (max-width: 768px) {
    .header-container,
    .hero-container,
    .partners-container,
    .clients-container,
    .about-container,
    .services-container,
    .how-work-container,
    .faq-container,
    .footer-container,
    .who-hero-container,
    .case-hero-container,
    .case-content-container,
    .service-hero-container,
    .blog-container,
    .blog-hero-container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .blog-post-card {
        padding: 20px !important;
        gap: 20px !important;
    }

    .blog-image-box {
        height: 200px !important;
    }

    .blog-title {
        font-size: 22px !important;
    }

    .header-container {
        padding: 12px 15px !important;
        margin: 0 10px !important;
        width: calc(100% - 20px) !important;
        border-radius: 15px !important;
    }

    .main-header {
        padding: 10px 0 !important;
    }

    .logo img {
        height: 32px !important;
    }

    .service-hero-container {
        padding-top: 20px !important;
    }

    .service-hero-title {
        font-size: 26px !important;
        line-height: 1.2 !important;
    }

    .blog-meta {
        font-size: 12px !important;
        margin-bottom: 10px !important;
    }

    .blog-single-content p,
    .blog-excerpt {
        font-size: 16px !important;
        line-height: 1.6 !important;
        text-align: left !important;
        width: 100% !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    /* Fix for any potential overflow in single blog pages */
    .blog-main-content {
        width: 100% !important;
        padding: 0 15px !important;
        overflow: hidden !important;
    }

    .blog-single-content {
        width: 100% !important;
        padding: 0 15px !important;
        overflow: hidden !important;
    }

    .blog-single-content h2 {
        font-size: 22px !important;
        margin-top: 30px !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        white-space: normal !important;
    }

    .blog-featured-image {
        height: 200px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        border-radius: 15px !important;
    }

    /* Vertical Spacing for All Sections - Minimal for mobile */
    section {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }

    /* Hero section adjustment - Minimal top, extra minimal bottom spacing */
    .case-hero, .who-hero, .service-hero {
        padding-top: 40px !important;
        padding-bottom: 20px !important;
    }

    .service-hero-desc {
        margin-bottom: 20px !important; /* Reduced from 48px */
    }

    /* Home Hero - Balanced spacing */
    .hero-section {
        padding-top: 50px !important;
        padding-bottom: 50px !important;
    }

    /* Global bottom spacing for all pages in mobile */
    main section:last-of-type {
        margin-bottom: 25px !important; /* Slightly increased for better balance */
    }

    footer {
        padding-top: 30px !important; /* Slightly increased */
    }
}

/* Extra small devices fix */
@media (max-width: 380px) {
    .blog-title {
        font-size: 20px !important;
    }
    
    .service-hero-title {
        font-size: 24px !important;
    }
    
    .header-container {
        padding: 10px 12px !important;
    }
}

/* --- Reveal Animations --- */
.reveal {
    position: relative;
    opacity: 0;
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
}

.fade-bottom {
    transform: translateY(50px);
}

.fade-bottom.active {
    transform: translateY(0);
}

.fade-left {
    transform: translateX(-50px);
}

.fade-left.active {
    transform: translateX(0);
}

.fade-right {
    transform: translateX(50px);
}

.fade-right.active {
    transform: translateX(0);
}

.scale-up {
    transform: scale(0.9);
}

.scale-up.active {
    transform: scale(1);
}

/* Delay classes for staggered animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }
.delay-500 { transition-delay: 500ms; }

/* Global Image & Card Hover Effects */
.img-hover-zoom {
    overflow: hidden;
}

.img-hover-zoom img {
    transition: transform 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: none !important;
}

.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1) !important;
}

/* Service Image Box Hover */
.service-image-box {
    overflow: hidden;
    border-radius: 32px;
}

.service-image-box img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-image-box:hover img {
    transform: none !important;
}

/* Case Image Hover */
.case-image-box img {
    transition: transform 0.7s ease;
}

.case-image-box:hover img {
    transform: none !important;
}

/* Final Aggressive Mobile Overflow Reset */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        position: relative !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    * {
        max-width: 100vw !important;
        box-sizing: border-box !important;
    }

    /* Force all containers to stay within viewport */
    .container, .header-container, .footer-container, .hero-container, 
    .blog-container, .blog-hero-container, .service-hero-container, 
    .service-content-container, .support-container, .contact-form-container,
    .ready-cta-container, .services-container, .about-container,
    .clients-container, .how-work-container, .why-us-container,
    .faq-container, .team-container, .partners-container,
    .partner-with-us-container, .form-container, .case-hero-container,
    .case-content-container, .case-container, .leadership-container,
    .gallery-container, .gallery-hero-container, .who-hero-container,
    .service-content-container, .slider-wrapper-box {
        width: 100% !important;
        max-width: 100vw !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
        overflow-x: hidden !important;
        box-sizing: border-box !important;
    }
}

/* --- Startup Fundraising Slider & Lightbox --- */
.slider-wrapper-box {
    width: 100%;
    margin-bottom: 30px;
}

.slider-box {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 32px;
    background: #f1f5f9;
}

@media (max-width: 768px) {
    .slider-box {
        height: auto !important;
        aspect-ratio: 4 / 3;
        border-radius: 20px;
        margin-bottom: 20px;
    }
}

.slider-container {
    width: 100%;
    height: 100%;
}

.slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    cursor: grab;
    user-select: none;
    gap: 0;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider-img {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    height: 100%;
    object-fit: cover;
    user-select: none;
    -webkit-user-drag: none;
    display: block;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider-img:hover {
    transform: none !important;
}

/* Dots Navigation */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e8f0;
    border: 2px solid #cbd5e1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #1e293b;
    border-color: #1e293b;
    transform: scale(1.2);
}


/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-modal.active .lightbox-content {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10000;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 5px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration: none !important;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
    color: #FFF;
    box-shadow: 2px 10px 20px rgba(0,0,0,0.4);
}

@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 45px;
        height: 45px;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-float svg {
        width: 25px;
        height: 25px;
    }
}

.case-full-image-wrapper {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.case-full-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-form-section {
    padding: 10px 0 80px !important;
}