:root {
    --primary-color: #3B52C4;
    --secondary-color: #7A1BC8;
    --btn-bg: #1A2B8C;
    --btn-hover: #111d61;
    --banner-bg: #3B52C4;
    --banner-text: #ffffff;
    --nav-text: #334155;
    --nav-hover: #3B52C4;
    --bg-color: #ffffff;
    --footer-bg: #f8fafc;
    --footer-banner-bg: #7A1BC8;
    --footer-banner-text: #ffffff;
    --border-color: #e2e8f0;
    --text-muted: rgb(100, 116, 139);
    --accent: #7A1BC8;
}

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

body {
    font-family: "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: var(--bg-color);
    color: var(--nav-text);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Button */
.btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--btn-bg);
    color: white;
}

.btn-primary:hover {
    background-color: var(--btn-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 43, 140, 0.2);
}

/* Top Banner */
.top-banner {
    background-color: var(--banner-bg);
    color: var(--banner-text);
    padding: 0;
    font-size: 0.9rem;
}

.top-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 40px;
}

.banner-contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: 40px;
}

.banner-contact-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1;
    height: 100%;
    transition: color 0.3s ease;
    text-decoration: none;
}

.banner-contact-item:hover {
    color: #ffffff;
}

.banner-contact-item i {
    font-size: 0.8rem;
    line-height: 1;
    vertical-align: middle;
}

.banner-contact-item span {
    line-height: 1;
    vertical-align: middle;
}

.banner-social-links {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    height: 40px;
}

.banner-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-social-links a i {
    line-height: 1;
    vertical-align: middle;
}

.banner-social-links a:hover {
    background: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
}

/* Header */
.header {
    background-color: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    overflow: visible;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 55px;
    width: auto;
}

.logo-text {
    letter-spacing: -0.5px;
}

/* Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--nav-text);
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 1rem 0;
}

.nav-link:hover {
    color: var(--nav-hover);
}

.dropdown-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.nav-item:hover .dropdown-icon {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1);
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 0.75rem 0;
    z-index: 100;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    padding: 0.85rem 1.75rem;
    font-size: 0.95rem;
    color: var(--nav-text);
    transition: all 0.2s;
}

.dropdown-menu li a:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
    padding-left: 2rem;
}

.dropdown-menu li a i,
.dropdown-menu li a .brand-icon {
    color: var(--primary-color);
    opacity: 0.7;
    margin-right: 0.5rem;
    transition: all 0.2s;
    vertical-align: middle;
}

.dropdown-menu li a .brand-icon {
    width: 16px;
    height: 16px;
    margin-top: -3px; /* slight tweak to perfectly align with text */
}

.dropdown-menu li a:hover i,
.dropdown-menu li a:hover .brand-icon {
    opacity: 1;
    transform: scale(1.1);
}

/* Dropdown Groups */
.dropdown-group {
    border-bottom: 1px solid var(--border-color);
    margin: 0;
    padding: 0.25rem 0;
    list-style: none;
}

.dropdown-group:last-child {
    border-bottom: none;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--nav-text);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001; /* Keep above mobile menu */
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Footer Banner */
.footer-banner {
    background: linear-gradient(135deg, var(--footer-banner-bg), #9c42ed);
    color: var(--footer-banner-text);
    padding: 1.5rem 0;
    text-align: center;
}

.trust-text {
    font-size: 1.1rem;
}

/* Footer */
.site-footer {
    background-color: var(--footer-bg);
    padding: 5rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 3fr 1.5fr 1fr 0.8fr; /* more space for Digital Services, less for Company */
    gap: 2rem;
    margin-bottom: 4rem;
}
/* Align column content */
.footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.footer-col h4 {
    margin: 0 0 0.4rem 0; /* remove extra top space */
    color: var(--nav-text);
}
.footer-col ul {
    padding: 0;
    margin: 0;
}


.company-address {
    margin-top: 1rem;
    font-size: 0.9rem;
    line-height: 1.7;
}

.company-address p {
    color: rgb(100, 116, 139);
    margin: 0;
}

.company-address h4 {
    color: var(--nav-text);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.footer-links h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--nav-text);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: var(--primary-color);
}

/* Community Card */
.community-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 1.75rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
}

.community-card h4 {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.community-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-community {
    background-color: var(--btn-bg);
    color: white;
    width: 100%;
    text-align: center;
}

.btn-community:hover {
    background-color: var(--btn-hover);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-size: 0.85rem;
    color: var(--text-muted);
    gap: 0.5rem;
    text-align: center;
}

/* Footer column link spacing */
.footer-col ul li {
    margin-bottom: 0.6rem;
}
.footer-col ul li a {
    display: block;
    padding: 0.3rem 0.5rem;
    transition: background-color 0.3s ease;
    border-radius: 4px;
    color: var(--text-muted);
}
.footer-col ul li a:hover {
    background-color: rgba(122, 27, 200, 0.1); /* subtle purple */
}

/* Bottom links hover */
.bottom-links a {
    display: inline-block;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    color: var(--text-muted);
}
.bottom-links a:hover {
    background-color: rgba(122, 27, 200, 0.1);
}

/* Full width community section */
.full-width-community {
    width: 100%;
    background-color: var(--footer-bg);
    padding: 2rem 0;
    text-align: center;
}
.full-width-community .community-card {
    display: inline-block;
    margin: 0 auto;
}


.bottom-links {
    display: flex;
    gap: 2rem;
}

.bottom-links a:hover {
    color: var(--primary-color);
}

/* Trusted Strip */
.trusted-strip {
    background-color: var(--secondary-color);
    padding: 0.4rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.trusted-strip strong {
    color: #ffffff;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    padding: 2.5rem 0 3rem;
    background-color: var(--bg-color);
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    max-width: 620px;
    margin: 0 0 2rem;
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.7;
}

/* Team Members */
.team-members-section {
    padding: 4.5rem 0;
    background: #f8fafc;
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

.team-member-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 82, 196, 0.35);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.team-member-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    background: #e2e8f0;
}

.team-member-content {
    padding: 1.15rem;
}

.team-member-id {
    display: inline-block;
    margin-bottom: 0.55rem;
    color: var(--primary-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-member-card h3 {
    margin: 0 0 0.35rem;
    color: var(--nav-text);
    font-size: 1.08rem;
    line-height: 1.3;
}

.team-member-card p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

.team-empty-state {
    margin: 0;
    padding: 3rem 1rem;
    text-align: center;
    color: var(--text-muted);
    background: #ffffff;
    border: 1px dashed var(--border-color);
    border-radius: 10px;
}

@media (max-width: 1080px) {
    .team-members-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .team-members-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .team-members-grid {
        grid-template-columns: 1fr;
    }
}

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

.hero-badge {
    display: inline-block;
    background-color: #f1f5f9;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    font-size: 0.85rem;
    color: #475569;
}

.hero-badge strong {
    font-weight: 600;
    color: #334155;
}

.hero-features {
    margin-bottom: 2.5rem;
}

.hero-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.5;
}

.check-icon {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.hero-cta {
    margin-bottom: 3rem;
    max-width: 450px;
}

.input-group {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 0.25rem;
    background-color: white;
}

.phone-icon {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
    margin: 0 0.75rem;
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 0.95rem;
    padding: 0.75rem 0;
    color: #334155;
    width: 100%;
}

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

.cta-btn {
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    white-space: nowrap;
    font-size: 0.9rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.stat-label {
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    color: #64748b;
    gap: 0.3rem;
}

.stat-icon {
    width: 14px;
    height: 14px;
}

.stat-divider {
    width: 1px;
    height: 35px;
    background-color: #e2e8f0;
}

.hero-trust {
    display: flex;
    gap: 1.5rem;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 600;
}

.hero-trust span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-trust span svg {
    width: 14px;
    height: 14px;
    color: var(--primary-color);
}

/* Hero Contact Form */
.hero-form-wrapper {
    flex: 1;
    max-width: 420px;
    width: 100%;
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid var(--border-color);
}

.hero-form-wrapper h3 {
    font-size: 1.5rem;
    color: var(--nav-text);
    margin-bottom: 0.5rem;
}

.hero-form-wrapper p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero-form .form-group {
    margin-bottom: 1.25rem;
    text-align: left;
}

.hero-form .form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--nav-text);
    margin-bottom: 0.4rem;
}

.hero-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s;
    color: var(--nav-text);
}

.hero-form .form-control:focus {
    border-color: var(--primary-color);
}

.hero-form .btn-submit {
    width: 100%;
    margin-top: 0.5rem;
    padding: 0.85rem;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mobile-menu-btn {
        display: block;
    }
    .header-actions {
        display: none;
    }

    /* Mobile Nav - Fixed position so it always appears on screen */
    .header .nav-list {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--bg-color);
        box-shadow: 0 8px 30px rgba(0,0,0,0.15);
        border-bottom: 2px solid var(--border-color);
        padding: 0.5rem 0;
        gap: 0;
        max-height: calc(100vh - 60px);
        overflow-y: auto;
        z-index: 9999;
    }
    .header.nav-open .nav-list {
        display: flex;
    }
    .header .nav-item {
        width: 100%;
        border-bottom: 1px solid #f1f5f9;
        flex-direction: column;
        align-items: flex-start;
        display: flex;
    }
    .header .nav-item:last-child {
        border-bottom: none;
    }
    .header .nav-link {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 1.25rem 2.5rem !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 1.05rem;
        font-weight: 600;
        color: var(--nav-text);
        transition: background-color 0.2s, color 0.2s;
    }
    .header .nav-link:hover, .header .nav-link:active {
        background-color: #f8fafc;
        color: var(--primary-color);
    }
    .header .dropdown-icon {
        display: block !important;
    }
    .header .nav-item.dropdown-open .dropdown-icon {
        transform: rotate(180deg);
        color: var(--primary-color);
    }
    .header .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        display: none;
        border: none;
        padding: 0;
        width: 100%;
        border-radius: 0;
        margin-bottom: 0;
        background-color: #f8fafc;
    }
    .nav-item.dropdown-open .dropdown-menu {
        display: block;
        animation: slideDownFade 0.3s ease forwards;
    }
    @keyframes slideDownFade {
        from { opacity: 0; transform: translateY(-8px); }
        to { opacity: 1; transform: translateY(0); }
    }
    .dropdown-group {
        border-bottom: 1px solid #e2e8f0;
        padding: 0;
    }
    .dropdown-group:last-child {
        border-bottom: none;
    }
    .dropdown-menu li a {
        padding: 0.9rem 1.5rem 0.9rem 3.5rem;
        font-size: 0.95rem;
        border-bottom: 1px solid #f1f5f9;
        color: #475569;
    }
    .dropdown-menu li:last-child a {
        border-bottom: none;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .hero-features li {
        justify-content: center;
        text-align: left;
    }
    .hero-form-wrapper {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .stat-divider {
        display: none;
    }
    .hero-trust {
        flex-direction: column;
        gap: 0.75rem;
    }
    .top-banner-content {
        flex-direction: column;
        gap: 0.5rem;
    }
    .banner-contact-info {
        flex-direction: column;
        gap: 0.35rem;
    }
    .banner-contact-item {
        font-size: 0.78rem;
    }
    .banner-social-links a {
        width: 26px;
        height: 26px;
        font-size: 0.75rem;
    }
}

/* Services Section */
.services-section {
    padding: 3rem 0;
    background-color: var(--bg-color);
}

.services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.text-primary {
    background: linear-gradient(135deg, #3B52C4 0%, #7644d6 50%, #9439E5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-weight: 800;
    display: inline-block;
}

.services-section .section-badge {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
}

/* Marquee / Scrolling Text Strip */
.marquee-container {
    background: linear-gradient(90deg, #1A2B8C, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.6rem 0;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
}

.marquee-content {
    display: inline-block;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.marquee-container:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.marquee-content a::after {
    content: "\2197"; /* Top-right arrow */
    position: absolute;
    right: -1.2rem;
    top: 50%;
    transform: translateY(-50%) translateX(-5px);
    opacity: 0;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.marquee-content a:hover {
    transform: scale(1.15);
    opacity: 1;
}

.marquee-content a:hover::after {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.marquee-content span.dot {
    margin: 0 2rem;
    color: rgba(255, 255, 255, 0.4);
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--nav-text);
}

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

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: nowrap;
}

.tab-btn {
    background: transparent;
    border: 2px solid var(--primary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--nav-text);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .tab-btn {
        font-size: 0.78rem;
        padding: 0.5rem 0.9rem;
    }
}


.tab-btn span {
    position: relative;
    z-index: 2;
}

.tab-btn:hover {
    background: rgba(59, 82, 196, 0.1);
}

.tab-btn.active {
    color: white;
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.tab-btn.active span {
    text-shadow: none;
}

.tab-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.3) 50%, rgba(255,255,255,0) 100%);
    background-size: 200% 100%;
    width: 0%;
    z-index: 0;
}

.tab-btn.active .tab-progress {
    animation: fillProgress 10s linear forwards, flowGradient 2s linear infinite;
}

@keyframes flowGradient {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes fillProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

.services-section:hover .tab-btn.active .tab-progress,
.services-section.is-paused .tab-btn.active .tab-progress {
    animation-play-state: paused;
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active {
    display: block;
}

.tab-content-title {
    font-size: 1.8rem;
    color: var(--nav-text);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    font-weight: 700;
}

.tab-content-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

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

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

.service-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card h3, .service-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--nav-text);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    min-height: 3.6rem;
    flex: 1;
}

.service-link {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--primary-color-dark);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.faq-section .container {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 1rem;
}

.faq-list {
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.2rem 3.25rem 1.2rem 1.4rem;
    color: var(--nav-text);
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 700;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 1.4rem;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: rgba(59, 82, 196, 0.1);
    color: var(--primary-color);
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    font-size: 1.35rem;
    line-height: 1;
    transition: transform 0.2s ease, background 0.2s ease;
}

.faq-item[open] summary::after {
    content: "-";
    background: var(--primary-color);
    color: white;
}

.faq-item p {
    margin: 0;
    padding: 0 1.4rem 1.35rem;
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.7;
}

.faq-item:hover {
    border-color: rgba(59, 82, 196, 0.35);
}

/* Growth CTA Section */
.growth-cta-section {
    padding: 4.5rem 0;
    background: linear-gradient(-45deg, #1e1b4b, var(--primary-color), #7c3aed, var(--secondary-color));
    background-size: 400% 400%;
    animation: gradientRotation 15s ease infinite;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.1);
    color: white;
}

.growth-cta-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.growth-cta-content {
    max-width: 700px;
}

.growth-cta-kicker {
    display: inline-flex;
    margin-bottom: 0.8rem;
    padding: 0.4rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 999px;
    color: #c7d2fe;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.growth-cta-content h2 {
    margin: 0 0 0.9rem;
    max-width: 760px;
    color: white;
    font-size: 2.35rem;
    line-height: 1.15;
}

.growth-cta-content p {
    margin: 0;
    max-width: 640px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.05rem;
    line-height: 1.7;
}

.growth-cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    min-width: 250px;
}

.growth-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.85rem 1.25rem;
    border-radius: 8px;
    font-weight: 800;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.growth-cta-btn-primary {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.growth-cta-btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    background: rgba(255, 255, 255, 0.1);
}

.growth-cta-btn:hover {
    transform: translateY(-3px);
}

.growth-cta-btn-primary:hover {
    background: #eef2ff;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.32);
}

.growth-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

@media (max-width: 820px) {
    .growth-cta-section {
        padding: 3.5rem 0;
    }

    .growth-cta-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .growth-cta-content h2 {
        font-size: 2rem;
    }

    .growth-cta-actions {
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 520px) {
    .growth-cta-content h2 {
        font-size: 1.75rem;
    }

    .growth-cta-content p {
        font-size: 0.98rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 4rem 0;
    background: linear-gradient(-45deg, #1e1b4b, var(--primary-color), #7c3aed, var(--secondary-color));
    background-size: 400% 400%;
    animation: gradientRotation 15s ease infinite;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.1);
}

@keyframes gradientRotation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.partners-title {
    text-align: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 500;
}

.partners-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 3rem;
    justify-content: center;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    opacity: 0.7;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
    cursor: default;
}

.partner-logo img {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.partner-logo img.invert-logo {
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

.partner-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* Blog Carousel Section */
.blogs-section {
    padding: 3rem 0;
    background-color: var(--bg-color);
}

.blog-carousel-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.blog-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding: 1rem 0 2rem;
    scrollbar-width: none; /* Firefox */
    scroll-behavior: smooth;
    flex: 1;
}

.blog-carousel::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}

.blog-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 300px;
    scroll-snap-align: start;
    background: var(--card-bg);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

@media (max-width: 992px) {
    .blog-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .blog-card {
        flex: 0 0 100%;
    }
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

.blog-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-meta {
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-title {
    font-size: 1.25rem;
    color: var(--nav-text);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex: 1;
}

.blog-link {
    font-weight: 600;
    color: var(--nav-text);
    text-decoration: none;
    transition: color 0.3s;
    margin-top: auto;
}

.blog-link:hover {
    color: var(--primary-color);
}

.carousel-btn {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--nav-text);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.prev-btn {
    left: -24px;
}

.next-btn {
    right: -24px;
}

@media (max-width: 1250px) {
    .prev-btn { left: 10px; }
    .next-btn { right: 10px; }
}

/* Global Hero Balanced Gradient */
@keyframes subtleGradientRotation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-section {
    /* Balanced blue to purple gradient (not too subtle, not too obvious) */
    background: linear-gradient(120deg, #e0e7ff 0%, #ede9fe 50%, #e0e7ff 100%);
    background-size: 200% 200%;
    animation: subtleGradientRotation 8s ease-in-out infinite;
}

.hero-section .text-primary {
    background: linear-gradient(135deg, #3B52C4 0%, #7644d6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero form panel title — uses <p> for correct heading hierarchy (no h3 in hero side panel) */
p.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

/* Services Marquee Strip */
.services-marquee {
    background: linear-gradient(90deg, #3B52C4 0%, #7644d6 100%);
    color: white;
    padding: 0.5rem 0;
    overflow: hidden;
    display: flex;
    white-space: nowrap;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: scroll-marquee 40s linear infinite;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.services-marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content a {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
}

/* Animated Underline */
.marquee-content a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 1.5rem; 
    width: calc(100% - 3rem);
    height: 2px;
    background-color: white;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Diagonal Arrow */
.marquee-content a::after {
    content: '';
    display: inline-block;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17L17 7M7 7h10v10'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0;
    transform: translate(-10px, 10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.marquee-content a:hover {
    transform: scale(1.05);
}

.marquee-content a:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.marquee-content a:hover::after {
    opacity: 1;
    transform: translate(0, 0);
}

.marquee-content span.dot {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    padding: 0;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

/* =============================================
   FOOTER — Dark professional style
   ============================================= */
.site-footer {
    background: #111216;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ---- Top Section ---- */
.footer-top {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

/* Brand Column */
.footer-brand-col {}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    background: white;
    border-radius: 10px;
    padding: 0.45rem 0.85rem;
    box-shadow: 0 4px 18px rgba(0,0,0,0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.footer-logo-img {
    height: 34px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.65;
    font-size: 1rem;
    margin-bottom: 1.75rem;
    max-width: 340px;
}

/* Service Pills Grid */
.footer-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.footer-service-pill {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.85rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
    white-space: nowrap;
}

.footer-service-pill svg {
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-service-pill:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transform: translateY(-1px);
}

.footer-service-pill:hover svg {
    opacity: 1;
}

/* Nav Columns */
.footer-nav-col {}

.footer-col-heading {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 1.25rem 0;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.footer-nav-list li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.footer-nav-list li a:hover {
    color: #ffffff;
}

/* CTA Column */
.footer-cta-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.25rem;
}

.footer-contact-cta {
    display: inline-block;
    padding: 0.75rem 1.75rem;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-decoration: none;
    transition: all 0.25s ease;
    margin-bottom: 1.5rem;
}

.footer-contact-cta:hover {
    background: white;
    color: #111216;
    border-color: white;
}

.footer-phone {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0 0 0.4rem 0;
}

.footer-email {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    margin: 0;
}

/* Contact Details in CTA Col */
.footer-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 0.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
}

.footer-contact-item svg {
    flex-shrink: 0;
    opacity: 0.75;
}

a.footer-contact-item:hover {
    color: #ffffff;
}

.footer-whatsapp:hover {
    color: #25d366 !important;
}

/* ---- Bottom Bar ---- */
.footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem 0;
}

.footer-bottom-logo-img {
    height: 30px;
    width: auto;
    display: block;
    background: white;
    border-radius: 8px;
    padding: 0.3rem 0.6rem;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: white;
}

.footer-legal-links span {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.875rem;
    margin: 0;
}

/* Social Icons */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
}

.footer-social-link:hover {
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 3rem;
    }
    .footer-brand-col {
        grid-column: 1 / -1;
    }
    .footer-features {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 1.75rem;
    }
    .footer-brand-col {
        grid-column: 1 / -1;
    }
    .footer-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    .footer-features {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

    background-size: 400% 400%;
    animation: footer-gradient-shift 12s ease infinite;
    color: rgba(255, 255, 255, 0.65);
    padding: 4rem 1.5rem 0;
    margin-top: 0;
    font-size: 0.875rem;
    position: relative;
    overflow: hidden;
}

@keyframes footer-gradient-shift {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Subtle top border glow */
.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #3B52C4 30%, #7644d6 70%, transparent 100%);
}

.footer-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.2fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand Column */
.footer-brand {}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 1rem;
    background: white;
    border-radius: 12px;
    padding: 0.5rem 0.875rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
}

.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
    max-width: 280px;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 0.625rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: white;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-icon svg {
    width: 16px;
    height: 16px;
}

.social-icon:hover {
    background: white;
    border-color: white;
    color: #3B52C4;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Columns */
.footer-heading {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #ffffff;
    margin: 0 0 1rem 0;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.footer-links li a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

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

/* CTA Column */
.footer-cta-col {}

.footer-cta-btn {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: white;
    color: #3B52C4;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
}

.footer-cta-btn:hover {
    background: #f0f4ff;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.contact-item svg {
    flex-shrink: 0;
    opacity: 0.9;
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0 1.5rem;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer-bottom-left {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
    color: white;
}

.footer-bottom-links .sep {
    color: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-tagline {
        max-width: 100%;
    }
}

/* ============================
   PORTFOLIO SECTION
   ============================ */
.portfolio-section {
    padding: 4rem 0 5rem;
    background-color: var(--bg-color);
}

.portfolio-empty-state {
    text-align: center;
    padding: 4rem 1rem;
    color: var(--text-muted);
    background: #f8fafc;
    border: 1px dashed var(--border-color);
    border-radius: 12px;
}

.portfolio-empty-state p {
    font-size: 1rem;
    margin: 0;
}

/* Portfolio Card Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    border-color: rgba(59, 82, 196, 0.3);
}

.portfolio-card-cover-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    border-bottom: 1px solid var(--border-color);
}

.portfolio-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.portfolio-card-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.3;
}

.portfolio-card-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 82, 196, 0.1), rgba(122, 27, 200, 0.1));
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.portfolio-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 1rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.portfolio-card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.portfolio-card:hover .portfolio-card-link {
    gap: 0.65rem;
}

/* ============================
   PORTFOLIO DETAIL PAGE
   ============================ */
.portfolio-detail-main {
    min-height: 60vh;
    background-color: var(--bg-color);
    padding: 3rem 1rem 5rem;
}

.portfolio-detail-header {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
    margin-bottom: 2.5rem;
}

.portfolio-detail-logo {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: contain;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    padding: 8px;
    flex-shrink: 0;
}

.portfolio-detail-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.portfolio-detail-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 0.75rem;
}

.portfolio-category-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(59, 82, 196, 0.1), rgba(122, 27, 200, 0.1));
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.3rem 0.85rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.portfolio-client-url {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.portfolio-client-url:hover {
    opacity: 0.7;
}

.portfolio-detail-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* Detail Sections */
.portfolio-detail-section {
    margin-bottom: 2.5rem;
}

.portfolio-detail-section h2 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--border-color);
}

/* Photo Gallery */
.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.portfolio-gallery-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.portfolio-gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.portfolio-gallery-item:hover img {
    transform: scale(1.05);
}

.portfolio-gallery-caption {
    display: block;
    padding: 0.6rem 0.75rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    background: #f8fafc;
}

/* Video Grid */
.portfolio-video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 1.5rem;
}

.portfolio-video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: #0f172a;
}

.portfolio-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.portfolio-video-caption {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* Links */
.portfolio-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.portfolio-link-card {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: white;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-link-card:hover {
    background: rgba(59, 82, 196, 0.05);
    border-color: rgba(59, 82, 196, 0.3);
    transform: translateX(4px);
}

.portfolio-back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: opacity 0.3s;
}

.portfolio-back-link:hover {
    opacity: 0.7;
}

/* Lightbox */
.portfolio-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

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

.portfolio-lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    z-index: 10001;
    transition: transform 0.3s;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

/* Portfolio Responsive */
@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-detail-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .portfolio-detail-meta {
        justify-content: center;
    }
    .portfolio-gallery {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }
    .portfolio-video-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================
   SERVICE PAGE - NEW SECTIONS (Web Dev)
   ============================ */

/* About / Intro */
.service-intro-section {
    padding: 3rem 0;
    background: #ffffff;
    text-align: center;
}
.service-intro-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-color);
    margin-bottom: 1.25rem;
}
.service-intro-section p {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Solutions / Services Grid */
.service-solutions-section {
    padding: 3rem 0;
    background: linear-gradient(-45deg, #1e1b4b, var(--primary-color), #7c3aed, var(--secondary-color));
    background-size: 400% 400%;
    animation: gradientRotation 15s ease infinite;
    box-shadow: inset 0 0 100px rgba(0,0,0,0.1);
}
.service-solutions-section .section-title,
.service-solutions-section .section-subtitle {
    color: white;
}
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.solution-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
    overflow: hidden;
}
.solution-content {
    padding: 1.5rem 2rem;
}
.solution-card:hover {
    transform: translateY(-5px);
    border-color: rgba(122, 27, 200, 0.3);
}
.solution-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 82, 196, 0.1), rgba(122, 27, 200, 0.1));
    color: var(--primary-color);
    border-radius: 14px;
    margin-bottom: 1.5rem;
}
.solution-icon svg {
    width: 30px;
    height: 30px;
}
.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-color);
}
.solution-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Benefits / Why Choose Us */
.benefits-section {
    padding: 3rem 0;
    background: var(--bg-color);
}
.benefits-section .section-title,
.benefits-section .section-subtitle {
    color: var(--text-color);
}
.benefits-section .section-subtitle {
    color: var(--text-muted);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.benefit-item {
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}
.benefit-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(122, 27, 200, 0.1);
}
.benefit-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}
.benefit-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
}
.benefit-item h4 svg {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
}
.benefit-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Process Timeline */
.process-section {
    padding: 3rem 0;
    background: white;
}
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0;
    padding-left: 2rem;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}
.timeline-progress-bar {
    position: absolute;
    left: 0;
    top: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    height: 0;
    z-index: 1;
    transition: height 0.1s ease-out;
}
.timeline-item {
    position: relative;
    padding-bottom: 3rem;
}
.timeline-item:last-child {
    padding-bottom: 0;
}
.timeline-dot {
    position: absolute;
    left: -2.4rem;
    top: 0;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 0 4px rgba(122, 27, 200, 0.1);
}
.timeline-content {
    background: var(--bg-color);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}
.timeline-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}
.timeline-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.95rem;
}

/* Features Capabilities */
.features-list-section {
    padding: 3rem 0;
    background: var(--bg-color);
}
.features-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.feature-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}
.feature-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(122, 27, 200, 0.1);
}
.feature-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}
.feature-list-item svg {
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}
.feature-list-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}
.feature-list-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
}

/* Testimonials / Reviews */
.reviews-section {
    padding: 3rem 0;
    background: white;
}
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.review-card {
    background: var(--bg-color);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    position: relative;
}
.review-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: rgba(122, 27, 200, 0.1);
    width: 40px;
    height: 40px;
}
.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}
.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.review-author-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: #e2e8f0;
}
.review-author-info h5 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0;
}
.review-author-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Industries / Use Cases */
.industries-section {
    padding: 3rem 0;
    background: var(--bg-color);
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.industry-card {
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.2s ease;
    overflow: hidden;
}
.industry-content {
    padding: 1.5rem 1rem;
}
.industry-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
}
.industry-card svg {
    width: 40px;
    height: 40px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.industry-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin: 0;
}

/* Pricing / Engagement Model */
.pricing-section {
    padding: 3rem 0;
    background: white;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.pricing-card {
    background: var(--bg-color);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.pricing-card.featured {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-color) 100%);
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
    box-shadow: 0 12px 32px rgba(122, 27, 200, 0.1);
}
.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.pricing-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: var(--text-color);
}
.pricing-features li svg {
    color: #10b981;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}
.pricing-btn {
    text-align: center;
    padding: 0.85rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}
.pricing-card:not(.featured) .pricing-btn {
    background: rgba(122, 27, 200, 0.1);
    color: var(--primary-color);
}
.pricing-card.featured .pricing-btn {
    background: var(--primary-color);
    color: white;
}
.pricing-card:not(.featured) .pricing-btn:hover {
    background: var(--primary-color);
    color: white;
}
.pricing-card.featured .pricing-btn:hover {
    background: var(--secondary-color);
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}
/* ============================
   ABOUT US SECTION
============================ */
.about-section {
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-right: 2rem;
    padding-bottom: 2rem;
}

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

.about-main-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-inner:hover .about-main-img {
    transform: scale(1.05);
}

.about-bg-shape {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 80%;
    height: 80%;
    background: linear-gradient(135deg, rgba(59, 82, 196, 0.1), rgba(122, 27, 200, 0.1));
    border-radius: 20px;
    z-index: 1;
    transform: translate(20px, 20px);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--primary-color);
    color: white;
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(59, 82, 196, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.about-badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.about-content {
    max-width: 500px;
}

.about-kicker {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 40px;
}

.about-kicker::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.about-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(59, 82, 196, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-feature-icon svg {
    width: 24px;
    height: 24px;
}

.about-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin: 0 0 0.25rem 0;
}

.about-feature-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.about-btn {
    margin-top: 1rem;
    padding: 1rem 2rem;
    font-size: 1.05rem;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image-wrapper {
        padding: 0;
        max-width: 500px;
        margin: 0 auto;
    }
    .about-badge {
        left: 20px;
        bottom: -20px;
    }
    .about-content {
        max-width: 100%;
        text-align: center;
    }
    .about-kicker::before {
        display: none;
    }
    .about-kicker {
        padding-left: 0;
    }
    .about-feature {
        text-align: left;
    }
}
/* ============================
   STATS MARQUEE SECTION
============================ */
.stats-marquee {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    background: linear-gradient(270deg, #7a1bc8, #3b52c4, #fbad18, #f43f5e);
    background-size: 800% 800%;
    animation: gradientMove 10s ease infinite;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

@keyframes gradientMove {
    0% { background-position: 0% 50% }
    50% { background-position: 100% 50% }
    100% { background-position: 0% 50% }
}

.stats-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}

.stats-marquee-track:hover {
    animation-play-state: paused;
}

.stats-marquee-content {
    display: flex;
    gap: 3rem;
    padding-right: 3rem;
    align-items: center;
}

.stat-marq-item {
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stat-marq-dot {
    opacity: 0.6;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================
   FOOTER GRADIENT OVERRIDE
============================ */
.site-footer {
    background: linear-gradient(135deg, #3b52c4, #7a1bc8) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border-top: none !important;
}
.site-footer h4,
.site-footer .footer-col-heading,
.site-footer strong,
.site-footer p,
.site-footer span,
.site-footer a {
    color: rgba(255, 255, 255, 0.9) !important;
}
.site-footer a:hover {
    color: #fff !important;
}
.footer-logo-link {
    background: white;
    padding: 0.4rem 0.85rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.footer-logo-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.footer-logo-img {
    height: 36px;
    width: auto;
    display: block;
    filter: none;
}
.footer-bottom-logo-img {
    height: 30px;
    width: auto;
    display: block;
    background: white;
    border-radius: 8px;
    padding: 0.3rem 0.6rem;
    filter: none;
}
.footer-top, .footer-bottom {
    border-color: rgba(255, 255, 255, 0.2) !important;
}

/* ============================
   MOBILE HEADER RESPONSIVENESS
============================ */
@media (max-width: 1024px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .header-actions {
        display: none;
    }
    
    .main-nav {
        position: fixed;
        top: 60px; /* Below header */
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background-color: var(--bg-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 999;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }
    
    .header.nav-open .main-nav {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: flex;
        justify-content: space-between;
        padding: 0.75rem 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }
    
    /* Override Dropdown for Mobile */
    .dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        background-color: #f8fafc;
        min-width: 100%;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transform: none;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
        border-radius: 0 0 8px 8px;
    }
    
    .has-dropdown.dropdown-open .dropdown-menu {
        max-height: 1000px; /* Arbitrary large height to allow transition */
        opacity: 1;
        visibility: visible;
        padding: 0.5rem 0;
        margin-bottom: 1rem;
    }
    
    .nav-item.has-dropdown:hover .dropdown-menu {
        /* Disable hover behavior on mobile, handled by click class */
        transform: none;
    }
    
    .has-dropdown.dropdown-open .nav-link .dropdown-icon {
        transform: rotate(180deg);
    }
}
