:root {
    /* Colors */
    --primary-color: #20B2AA;
    /* Vibrant Teal */
    --secondary-color: #FF6B35;
    /* Bold Orange */
    --accent-color: #6C4AB6;
    /* Deep Purple */
    --dark-bg: #2C2C2C;
    /* Charcoal */
    --light-bg: #F5F5F5;
    /* Light Gray */
    --white: #FFFFFF;
    --text-color: #333333;
    --text-light: #666666;
    --accent-gold: #FFB800;
    --deep-blue: #0A1D37;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1200px;
    --section-padding: 80px;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: var(--section-padding) 0;
}

.text-center {
    text-align: center;
}

.bg-light {
    background-color: var(--light-bg);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(32, 178, 170, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-color);
    border: 2px solid var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Top Bar */
.top-bar {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    font-weight: 500;
}

.top-bar .flex-justify {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.top-bar a:hover {
    opacity: 0.8;
}

.top-bar .separator {
    opacity: 0.3;
}

@media (max-width: 768px) {
    .top-bar .separator {
        display: none;
    }
}

.top-bar-left i, .top-bar-right i {
    margin-right: 8px;
    color: var(--primary-color);
}

/* Announcement Bar */
.announcement-bar {
    background-color: #f8f9fa;
    border-bottom: 1px solid #ebebeb;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-color);
}

.announcement-bar .sparkle {
    margin-right: 5px;
}

/* Header */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.main-nav {
    margin-left: auto;
    margin-right: 40px;
}

.main-nav ul {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 15px;
    color: var(--text-color);
    position: relative;
    display: block;
    line-height: 1;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.main-nav a:hover .nav-pop-icon {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.audit-button {
    background-color: var(--white);
    color: var(--text-color);
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: 1.5px solid #ebebeb;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.audit-icon {
    width: 32px;
    height: 32px;
    background-color: var(--accent-gold);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.audit-button:hover {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 184, 0, 0.2);
}

/* Services Dropdown */
.main-nav li.has-dropdown {
    position: relative;
}

.main-nav li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav li.has-dropdown > a .dropdown-arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.main-nav li.has-dropdown:hover > a .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 580px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
    pointer-events: none;
}

.main-nav li.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5px);
    pointer-events: auto;
}

/* Invisible bridge to prevent gap between nav item and dropdown */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-color);
    white-space: nowrap;
    transition: all 0.2s ease;
}

.dropdown-menu a::after {
    display: none !important;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(32, 178, 170, 0.08), rgba(32, 178, 170, 0.15));
    color: var(--primary-color);
    transform: translateX(3px);
}

.dropdown-menu a i {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-bg);
    border-radius: 8px;
    font-size: 13px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover i {
    background: var(--primary-color);
    color: var(--white);
}

@media (min-width: 769px) {
    .main-header {
        padding: 25px 0;
        /* Increase padding to accommodate icons */
    }
}

.cta-button {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #e55a2b;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Redesign Section */
.hero-redesign {
    min-height: 85vh;
    background-color: var(--white);
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 70%;
    height: 100%;
    background-size: contain;
    background-position: right center;
    background-repeat: no-repeat;
    z-index: 1;
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    text-align: left;
}

.hero-badge {
    background-color: #FFE58F;
    color: #8B6914;
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 68px;
    font-weight: 800;
    line-height: 1.05;
    color: var(--deep-blue);
    margin-bottom: 25px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #405D80 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 22px;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 45px;
}

.btn-growth {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: var(--white);
    color: var(--text-color);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    border: 1.5px solid #ebebeb;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: fit-content;
}

.btn-growth .btn-icon {
    width: 40px;
    height: 40px;
    background-color: var(--accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-growth:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.25);
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
}

.social-proof {
    margin-top: 50px;
}

.social-proof p {
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 10px;
    font-size: 15px;
}

.social-proof .stars {
    color: #FFD700;
    font-size: 16px;
    letter-spacing: 2px;
}

/* Floating Tags */
.floating-tag {
    position: absolute;
    background-color: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.floating-tag i {
    color: var(--accent-gold);
}

.tag-growth {
    top: 15%;
    left: -5%;
}

.tag-ai {
    bottom: 15%;
    right: 5%;
    animation-delay: 2s;
}

.tag-success {
    top: 40%;
    right: -8%;
    animation-delay: 1s;
}

.tag-expert {
    bottom: 35%;
    left: -8%;
    animation-delay: 3s;
}

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

@media (max-width: 991px) {
    .hero-bg {
        position: relative;
        width: 100%;
        height: 300px;
        right: 0;
        top: 0;
        transform: none;
        margin-bottom: 40px;
    }
    .hero-redesign {
        padding: 60px 0;
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }
    .hero-title {
        font-size: 48px;
    }
    .btn-growth {
        margin: 0 auto;
    }
    .floating-tag {
        display: none;
    }
}

/* About Section */
.row {
    display: flex;
    gap: 50px;
    align-items: center;
}

.col-half {
    flex: 1;
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 30px;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.placeholder-image {
    width: 100%;
    height: 400px;
    background-color: #eee;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #aaa;
    border-radius: 20px;
}

/* Services Section - Tabbed UI */
.services-section {
    background-color: var(--white);
    padding: 100px 0;
}

.services-tabs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-pill {
    padding: 10px 25px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: transparent;
    color: var(--text-color);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    white-space: nowrap;
}

.service-pill:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.service-pill.active {
    background-color: #FFF275; /* Soft yellow as per mockup */
    border-color: #FFF275;
    color: #333;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 242, 117, 0.4);
}

.service-display-card {
    display: flex;
    background: #f9f9f9;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
    min-height: 450px;
    animation: fadeIn 0.6s ease;
}

.service-image-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.service-image-side img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
}

.service-content-side {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content-title {
    font-size: 36px;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    color: #333;
}

.service-content-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

.service-read-more {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-read-more i {
    background: #eee;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.service-read-more:hover {
    color: var(--primary-color);
}

.service-read-more:hover i {
    background: var(--primary-color);
    color: var(--white);
    transform: translateX(5px);
}

@media (max-width: 992px) {
    .service-display-card {
        flex-direction: column;
    }
    .service-content-side {
        padding: 40px;
        text-align: center;
        align-items: center;
    }
    .service-content-title {
        font-size: 28px;
    }
}

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

/* Features Grid 2x2 */
.features-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .features-grid-2x2 {
        grid-template-columns: 1fr;
    }
}

/* Service Illustrations */
.service-illustration-placeholder {
    width: 300px;
    height: 300px;
    background-color: #FFD700;
    /* Social Panga Yellow */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    /* Blob shape */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 80px;
    color: var(--text-color);
    border: 3px solid var(--text-color);
    box-shadow: 10px 10px 0px var(--text-color);
    /* Pop art shadow */
    transition: all 0.5s ease-in-out;
}

.service-row:hover .service-illustration-placeholder {
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    /* Morphing blob */
    transform: scale(1.05);
    box-shadow: 15px 15px 0px var(--text-color);
}

/* Service Row Layout */
.service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
    /* Increased spacing */
    padding: 20px 0;
}

.service-row.alternate {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
    padding: 0 50px;
}

.service-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-img img {
    display: none;
    /* Hide img tags for now as we use placeholders */
}

/* .service-row:hover .service-img img {
    transform: scale(1.05);
} */

.service-text h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--text-color);
}

.service-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 500px;
}

/* Responsive Styles for Services */
@media (max-width: 900px) {

    .service-row,
    .service-row.alternate {
        flex-direction: column-reverse;
        /* Image top, text bottom usually, or keep text top */
        /* Social Panga mobile: Image often stacked or simplified. Let's stack Text on Top for readability or match standard stacking */
        flex-direction: column;
        text-align: center;
    }

    .service-row.alternate {
        flex-direction: column;
    }

    .service-text {
        padding: 20px 0;
    }

    .service-text h2 {
        font-size: 2.5rem;
    }

    .service-text p {
        margin: 0 auto;
    }
}

/* Footer */
.main-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 20px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 18px;
}

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

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

.footer-col ul li a:hover {
    color: var(--white);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #aaa;
    font-size: 14px;
}

/* Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 20px 0;
}

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

.award-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-color);
    margin-right: 50px;
    opacity: 0.7;
}

.award-item i {
    color: #FFD700;
    /* Gold */
}

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

    100% {
        transform: translateX(-50%);
    }
}

/* Testimonial Animation */
.fade {
    animation-name: fade;
    animation-duration: 1s;
}

@keyframes fade {
    from {
        opacity: .4
    }

    to {
        opacity: 1
    }
}

/* Responsive */
/* Mobile Menu Styles */
body.mobile-menu-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--white);
        z-index: 2000;
        padding: 100px 30px;
        text-align: left;
    }

    body.mobile-menu-open .main-nav {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .main-nav a {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--deep-blue);
    }

    .mobile-menu-toggle {
        display: block;
        z-index: 2001;
        font-size: 24px;
        cursor: pointer;
    }

}

@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
    }

    .row {
        flex-direction: column;
    }

    .col-half {
        width: 100%;
    }

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

    .contact-wrapper {
        flex-direction: column;
    }

    .header-actions .audit-button {
        display: none;
    }
}

/* About Page Specific Styles */
.about-hero {
    background: linear-gradient(rgba(10, 25, 47, 0.9), rgba(10, 25, 47, 0.9)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    padding: 180px 0 100px;
    color: var(--white);
}

.about-hero .hero-title {
    color: var(--white);
    font-size: 60px;
    margin-bottom: 20px;
}

.about-hero .highlight {
    color: var(--primary-color);
}

.breadcrumb {
    font-size: 14px;
    margin-bottom: 20px;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
}

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

.badge {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(32, 178, 170, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.image-frame {
    position: relative;
    padding-left: 20px;
    padding-top: 20px;
}

.image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 10px solid var(--primary-color);
    z-index: -1;
    border-radius: 12px;
}

.image-frame img {
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* Tabs */
.tab-container {
    max-width: 900px;
    margin: 0 auto;
}

.tab-header {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    background: var(--white);
    border: 2px solid #eee;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(32, 178, 170, 0.2);
}

.tab-content {
    display: none;
    animation: fadeInTab 0.5s ease forwards;
}

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

.tab-content-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.tab-text h3 {
    margin-bottom: 15px;
    color: var(--deep-blue);
}

.tab-text ul {
    margin-top: 20px;
}

.tab-text ul li {
    margin-bottom: 10px;
    font-weight: 500;
}

.tab-text ul li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.tab-icon-box {
    font-size: 80px;
    color: rgba(32, 178, 170, 0.1);
    text-align: center;
}

.values-mini-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

/* Stats Row */
.stats-row {
    background-color: var(--deep-blue);
    padding: 80px 0;
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat-item .stat-num {
    font-size: 48px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.stat-item .plus {
    font-size: 40px;
    color: var(--secondary-color);
}

.stat-item p {
    font-weight: 500;
    opacity: 0.8;
}

/* Global Ratings Bar */
.ratings-bar-section {
    padding: 40px 0;
    border-bottom: 1px solid #eee;
}

.ratings-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.rating-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 700;
    color: #f1c40f;
}


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

@media (max-width: 991px) {
    .about-intro-grid, .tab-content-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .image-frame {
        max-width: 500px;
        margin: 0 auto;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Homepage Redesign & SEO Sections */

/* Marquee */
.marquee-wrapper {
    background: #f8f9fa;
    padding: 30px 0;
    border-bottom: 1px solid #eee;
    overflow: hidden;
}

.marquee-title {
    text-align: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 20px;
}

.brand-marquee {
    display: flex;
    white-space: nowrap;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: marquee_anim 30s linear infinite;
}

.marquee-track img {
    height: 35px;
    opacity: 0.5;
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.marquee-track img:hover {
    opacity: 1;
    filter: grayscale(0);
}

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

/* Metrics Section */
.metrics-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.metric-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.metric-icon {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.metric-info h3 {
    font-size: 36px;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 5px;
}

.metric-info p {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* AI Optimization Section */
.ai-opt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.check-list {
    margin: 25px 0;
    padding-left: 0;
}

.check-list li {
    margin-bottom: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
}

.check-list li i {
    color: var(--primary-color);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #fafafa;
}

.faq-question h3 {
    font-size: 17px;
    margin: 0;
    color: var(--deep-blue);
}

.faq-answer {
    padding: 0 30px 20px;
    display: none;
    color: #666;
    line-height: 1.8;
}

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

.faq-item.active .fa-plus {
    transform: rotate(45deg);
}

/* Service Tech Badges */
.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.tech-badge {
    background: #eee;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #555;
    text-transform: uppercase;
}

/* Lead Form */
.lead-form {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

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

.lead-form input, .lead-form select, .lead-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
}

.lead-form textarea {
    height: 120px;
    margin-bottom: 20px;
}

.contact-features {
    margin-top: 40px;
}

.c-feat {
    margin-bottom: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
}

.c-feat i {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .ai-opt-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
}