/*
Theme Name: Limra
Theme URI: https://example.com/limra
Author: Antigravity
Author URI: https://example.com
Description: A premium, modern, and dynamic starter theme for the Limra project.
Version: 1.0.0
Text Domain: limra
*/

/* --- Global Styles --- */
:root {
    --primary: #0b1c39;
    /* Restored original primary color */
    --accent: #911cf3;
    /* Changed complete website accent to purple */
    --accent-rgb: 145, 28, 243;
    /* Added for dynamic RGBA colors */
    --purple: #911cf3;
    --text-color: #4a5568;
    --light-bg: #fdfbf7;
    --white: #ffffff;
    --gray-light: #f7fafc;
}

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

html {
    scroll-behavior: initial;
}

html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: clip;
}

body.loading {
    visibility: hidden;
}

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

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

/* --- Top Bar --- */
.top-bar {
    background: transparent;
    color: var(--primary);
    font-size: 14px;
    padding: 10px 0;
    position: relative;
    z-index: 20;
}

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

.top-bar-left p {
    color: #1a202c;
}

.top-bar-left .highlight {
    color: #ff6b35;
    font-weight: 600;
}

.top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
    color: var(--white);
}

.top-bar-right a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

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

.social-icons a {
    color: var(--white);
    opacity: 0.8;
}

.social-icons a:hover {
    opacity: 1;
}

/* --- Header / Navigation --- */
.site-header {
    background: var(--white);
    border-radius: 20px;
    /* Decreased for a less rounded look */
    margin: 0 auto;
    max-width: 1560px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    padding: 15px 30px;
    position: absolute;
    top: 40px;
    /* Default elegant floating top on all subpages */
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease, border-radius 0.3s ease, box-shadow 0.3s ease;
}

/* On the homepage, push the header down to make space for the top bar */
.home .site-header {
    top: 60px;
}

.site-header.is-sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 10px 30px !important;
    background: var(--white) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
    z-index: 9999 !important;
    animation: headerSlideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

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

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.logo-icon {
    color: var(--purple);
}

.main-navigation>div>ul,
.main-navigation>ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-navigation>div>ul>li,
.main-navigation>ul>li {
    position: relative;
}

.main-navigation>div>ul>li>a,
.main-navigation>ul>li>a {
    font-weight: 600;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
    padding: 15px 0;
    /* Added padding to increase hover area */
}

.main-navigation>div>ul>li>a:hover,
.main-navigation>ul>li>a:hover,
.main-navigation>div>ul>li.current-menu-item>a,
.main-navigation>ul>li.current-menu-item>a {
    color: var(--primary);
}

.main-navigation>div>ul>li>a i,
.main-navigation>ul>li>a i {
    font-size: 10px;
    opacity: 0.5;
}

/* --- Standard Submenu Dropdown --- */
/* First level hover state */
.main-navigation>ul>li:hover>ul.sub-menu,
.main-navigation>div>ul>li:hover>ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 230px;
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    /* Spacious, premium gap between items */
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Bridge gap to prevent losing hover when mouse moves from top link to submenu */
.main-navigation ul ul.sub-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.main-navigation ul ul.sub-menu li {
    position: relative;
    /* CRITICAL: Enables absolute positioning for nested sub-submenus */
    width: 100%;
    margin: 0 !important;
    padding: 0 10px !important;
    border: none !important;
    list-style: none !important;
}

.main-navigation ul ul.sub-menu li a {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #4a5568 !important;
    padding: 10px 14px !important;
    /* Premium spacious padding */
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-radius: 8px;
    transition: all 0.2s ease !important;
    text-transform: none !important;
}

.main-navigation ul ul.sub-menu li a:hover {
    background: rgba(145, 28, 243, 0.07) !important;
    color: var(--purple) !important;
    transform: translateX(4px);
}

/* --- Nested (Fly-out) Submenu --- */
/* Positions secondary submenus to fly out to the right */
.main-navigation ul ul.sub-menu ul.sub-menu {
    top: 0 !important;
    left: calc(100% - 3px) !important;
    /* Perfect hover-bridge overlap to the right of parent li */
    margin-top: -10px !important;
    /* Align perfectly with parent's padding */
    transform: translateX(10px) !important;
    /* Modern slide in from right */
}

/* Hover state for nested fly-out submenus */
.main-navigation ul ul.sub-menu li:hover>ul.sub-menu {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0) !important;
}

/* Mega Menu Styles */
.mega-menu-item {
    position: static !important;
}

.mega-menu-content {
    position: absolute;
    top: 100%;
    left: 20% !important;
    width: 60% !important;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    display: none;
    /* Hide by default */
    z-index: 999;
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-menu-content.is-active {
    display: flex !important;
}

/* Bridge gap to prevent losing hover when moving mouse down */
.mega-menu-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.mega-menu-sidebar {
    width: 280px;
    border-right: 1px solid #f0f4f8;
    padding-right: 20px;
}

.mega-menu-content ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.mega-menu-sidebar ul {
    display: block !important;
}

.mega-menu-sidebar ul li {
    margin-bottom: 8px;
}

.mega-menu-sidebar ul li a,
.mega-menu-sidebar ul li span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #4a5568;
    padding: 10px 15px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mega-menu-sidebar ul li a {
    cursor: pointer;
}

.mega-menu-sidebar ul li span {
    cursor: default;
}

.mega-menu-sidebar ul li.active a,
.mega-menu-sidebar ul li.active span,
.mega-menu-sidebar ul li a:hover,
.mega-menu-sidebar ul li span:hover {
    background: rgba(145, 28, 243, 0.07);
    color: var(--purple);
    transform: translateX(5px);
}

.mega-menu-sidebar ul li a i,
.mega-menu-sidebar ul li span i {
    width: 20px;
    text-align: center;
    color: #a0aec0;
    font-size: 16px;
}

.mega-menu-sidebar ul li.active a i,
.mega-menu-sidebar ul li.active span i,
.mega-menu-sidebar ul li a:hover i,
.mega-menu-sidebar ul li span:hover i {
    color: var(--purple);
}

.mega-menu-main-wrapper {
    flex: 1;
    padding-left: 35px;
    display: flex;
}

.mega-menu-main {
    display: none;
    flex: 1;
    flex-direction: column;
}

.mega-menu-main.active {
    display: flex;
}

.mega-menu-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.mega-menu-header p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 15px;
    max-width: 600px;
}

.mega-menu-grid {
    display: flex;
    justify-content: space-between;
}

.mega-menu-links {
    display: flex;
    gap: 60px;
}

.mega-menu-links ul {
    display: block !important;
}

.mega-menu-links ul li {
    margin-bottom: 15px;
    /* Added spacing between items */
}

.mega-menu-links ul li a {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s ease;
    cursor: pointer;
}

.mega-menu-links ul li span {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.2s ease;
    cursor: default;
}

.mega-menu-links ul li a:hover,
.mega-menu-links ul li span:hover {
    color: var(--purple);
}

.mega-menu-image {
    width: 250px;
    text-align: right;
}

.mega-menu-image img {
    max-width: 100%;
    height: auto;
}

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

.support-info {
    font-size: 14px;
}

.support-label {
    color: #a0aec0;
}

.support-number {
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    text-decoration: none;
}

.btn-quote {
    border: 2px solid #e2e8f0;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-quote i {
    background: var(--purple);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-quote:hover {
    border-color: var(--purple);
    background: #f7fafc;
}

/* --- Animations --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    padding: 100px 0 0 0;
    /* Reduced top padding since we use flex center */
    background: var(--light-bg);
    overflow: hidden;
    height: 100vh;
    display: flex;
    align-items: center;
    margin-top: -50px;
}

.hero-content {
    animation: fadeInUp 1s ease-out both;
    position: relative;
    z-index: 2;
}

.hero-media {
    animation: fadeInUp 1s ease-out both;
    animation-delay: 0.3s;
    position: relative;
}

.hero-container {
    display: block;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-slide-item {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    width: 100%;
}

.hero-slide-item.active {
    display: grid;
}

.trustpilot-badge {
    display: flex;
    gap: 5px;
    align-items: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.trustpilot-badge .excellent {
    color: #718096;
}

.trustpilot-badge .stars {
    color: #10b981;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 3px;
}

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

.btn-hero {
    background: var(--purple);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 35px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(92, 91, 229, 0.2);
    margin-bottom: 40px;
    transition: all 0.3s ease;
}

.btn-hero i {
    background: var(--white);
    color: var(--purple);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(92, 91, 229, 0.3);
}

.trusted-clients p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 15px;
}

.trusted-clients .highlight {
    color: var(--accent);
    font-weight: 700;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.client-logos {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-top: 10px;
}

.client-logo-img {
    height: 30px;
    /* Reduced size */
    width: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    animation: fadeInLeft 0.5s ease-out both;
}

.client-logo-img:nth-child(1) {
    animation-delay: 0.5s;
}

.client-logo-img:nth-child(2) {
    animation-delay: 0.7s;
}

.client-logo-img:nth-child(3) {
    animation-delay: 0.9s;
}

.client-logo-img:nth-child(4) {
    animation-delay: 1.1s;
}

.client-logo-img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.hero-media {
    position: relative;
    z-index: 2;
}

.image-wrapper {
    position: relative;
    border: 15px solid var(--white);
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: var(--white);
    max-width: 600px;
    margin-left: auto;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 25px;
    transform: scale(1.05);
    /* Scale up to hide corners */
    transition: transform 0.3s ease;
}

.overlay-card {
    position: absolute;
    bottom: 30px;
    left: -60px;
    width: 320px;
    z-index: 5;
    animation: float 4s ease-in-out infinite;
}

.stats-img {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
}

/* Background Image */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

/* --- Services Bar --- */
@keyframes ticker {
    0% {
        transform: translateX(0);
    }

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

.services-bar {
    background: linear-gradient(135deg, #a855f7 0%, #7c3aed 100%);
    color: var(--white);
    padding: 20px 0;
    /* Slightly increased padding */
    overflow: hidden;
}

.services-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 50px;
    /* Increased gap */
    font-weight: 700;
    font-size: 18px;
    /* Slightly increased font size */
    animation: ticker 25s linear infinite;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 15px;
    white-space: nowrap;
}

.service-item i {
    font-size: 14px;
    opacity: 0.8;
}

/* --- About Section --- */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

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

.about-media {
    position: relative;
}

.image-wrapper-about {
    position: relative;
    border-radius: 30px;
    overflow: visible;
    /* To allow overlays to pop out */
}

.about-img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(124, 58, 237, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(124, 58, 237, 0);
    }
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: var(--white);
    color: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.play-btn:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.about-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--white);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 250px;
    animation: float 4s ease-in-out infinite;
}

.circle-chart {
    width: 50px;
    height: 50px;
    border: 4px solid #edf2f7;
    border-top-color: var(--purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 12px;
}

.card-info p {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.card-info .growth {
    font-size: 11px;
    color: #10b981;
}

/* Right Content */
.subtitle-orange {
    color: var(--accent);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 20px;
}

.description {
    color: #718096;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: center;
    /* Align items vertically center */
}

.about-actions .btn-hero {
    margin-bottom: 0;
    /* Remove margin in this section */
}

.btn-outline {
    border: 2px solid #e2e8f0;
    padding: 13px 35px;
    /* Reduced to match height with border */
    border-radius: 35px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.btn-outline i {
    background: var(--accent);
    color: var(--white);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-outline:hover {
    border-color: var(--accent);
    background: #fff5f0;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.feature-item {
    font-size: 14px;
    font-weight: 600;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateX(5px);
    color: var(--purple);
}

.feature-item i {
    color: #10b981;
}

/* --- Services Section (Grid) --- */
.services-section {
    padding: 100px 0;
    background: #fdfbf7;
}

.services-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
}

.services-left {
    position: relative;
}

.illustration-wrapper {
    margin-top: 40px;
    max-width: 350px;
}

.services-ill-img {
    width: 100%;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    margin-top: 20px;
}

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

.service-card:hover .card-icon-circle {
    transform: rotate(15deg) scale(1.1);
}

.service-card:hover .card-arrow {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
    transform: translateX(5px);
}

.card-icon-circle {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    position: absolute;
    top: -30px;
    left: 30px;
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin: 15px 0 15px 0;
}

.service-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-arrow {
    width: 35px;
    height: 35px;
    border: 1px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    font-size: 12px;
    transition: all 0.3s ease;
}

.card-arrow:hover {
    background: var(--purple);
    color: var(--white);
    border-color: var(--purple);
}

/* --- Company Services Section (Grid of 6) --- */
.company-services-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-title-center {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 20px;
}

.description-center {
    color: #718096;
    font-size: 15px;
    line-height: 1.6;
}

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

.company-service-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.company-service-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.item-icon-box {
    width: 70px;
    height: 70px;
    background: #f7f5ff;
    color: var(--purple);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.company-service-item:hover .item-icon-box {
    background: var(--purple);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    border-radius: 50%;
    /* Smoothly turn into circle */
}

.company-service-item:hover h3 {
    color: var(--purple);
}

.company-service-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.company-service-item p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    max-width: 300px;
}

/* Decorative Shapes */
@keyframes floatPlane {
    0% {
        transform: rotate(-20deg) translateY(0px);
    }

    50% {
        transform: rotate(-20deg) translateY(-15px);
    }

    100% {
        transform: rotate(-20deg) translateY(0px);
    }
}

.plane-icon {
    position: absolute;
    top: 20%;
    left: 5%;
    font-size: 40px;
    color: #cbd5e1;
    opacity: 0.5;
    animation: floatPlane 5s ease-in-out infinite;
}

/* --- Video Banner Section --- */
.video-banner-section {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-banner-container {
    position: relative;
    width: 100%;
    height: 600px;
    /* Increased height as requested */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    /* For zoom effect */
}

.video-banner-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

.video-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s ease;
}

.video-banner-container:hover .video-banner-img {
    transform: scale(1.05);
}

.video-play-btn {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--purple);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    z-index: 2;
    /* Above overlay */
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: var(--primary);
    /* Change color on hover */
}

/* --- Case Studies Section --- */
.case-studies-section {
    padding: 100px 0;
    background: var(--white);
}

.filter-menu {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    background: transparent;
    border: 1px solid #e2e8f0;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    color: #4a5568;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
}

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

.case-study-card {
    text-align: left;
}

.card-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-image-wrapper img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: all 0.3s ease;
}

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

.card-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--purple);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
}

.case-study-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-top: 10px;
}

/* --- Testimonial Section --- */
.testimonial-section {
    padding: 100px 0;
    background: #fdfbf7;
}

.testimonial-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px 80px;
    /* Added row gap */
    align-items: center;
}

.testimonial-header {
    grid-column: 1 / -1;
    /* Span full width */
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: flex-end;
}

/* Left Column: Rating Card */
.rating-card {
    background: var(--accent);
    color: var(--white);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(var(--accent-rgb), 0.2);
}

.big-rating {
    font-size: 72px;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.stars-orange {
    color: #ffb703;
    font-size: 18px;
    margin-bottom: 10px;
}

.reviews-count {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
    margin-bottom: 30px;
}

.rating-card .card-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 40px;
    color: var(--white);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.avatar-small {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--white);
}

.footer-text {
    text-align: left;
}

.footer-text .platform {
    font-weight: 700;
    display: block;
}

.footer-text .rating-summary {
    font-size: 12px;
    opacity: 0.8;
}

/* Right Column: Content */
.testimonial-content-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    position: relative;
    margin-top: 30px;
}

.testimonial-item {
    display: none;
}

@keyframes slideInFade {
    0% {
        opacity: 0;
        transform: translateX(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.testimonial-item.active {
    display: block;
    animation: slideInFade 0.6s ease;
}

.content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.platform-logo {
    font-weight: 700;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 5px;
}

.platform-logo i {
    color: #4285f4;
}

.quote {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 12px;
    color: #718096;
}

.carousel-dots {
    display: flex;
    gap: 10px;
    position: absolute;
    bottom: 40px;
    right: 40px;
}

.dot {
    width: 10px;
    height: 10px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background: var(--accent);
}

/* --- Value Section --- */
.value-section {
    background: #581c87;
    /* Darker purple to match image background */
    padding: 40px 0;
    /* Further reduced padding */
    position: relative;
    overflow: hidden;
}

.value-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

.value-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.value-left {
    position: relative;
}

.image-wrapper-value {
    position: relative;
    height: 400px;
    /* Fixed height for section control */
}

.value-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Shows full image without cropping */
}

@keyframes floatCard {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.value-card {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    width: 250px;
    animation: floatCard 4s ease-in-out infinite;
}

.value-card .card-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.value-card .progress-bar {
    width: 100%;
    height: 6px;
    background: #edf2f7;
    border-radius: 3px;
    margin-bottom: 10px;
    overflow: hidden;
}

.value-card .progress-fill {
    height: 100%;
    background: var(--purple);
}

.card-footer-value {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: #718096;
}

.card-footer-value .value-num {
    font-weight: 700;
    color: var(--purple);
}

/* Right Column */
.subtitle-white {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-title-white {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.description-white {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-orange {
    background: var(--accent);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 35px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.3);
    transition: all 0.3s ease;
}

.btn-orange i {
    background: var(--white);
    color: var(--accent);
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(var(--accent-rgb), 0.4);
}

@keyframes floatPlaneValue {
    0% {
        transform: translate(0, 0) rotate(15deg);
    }

    50% {
        transform: translate(-10px, -15px) rotate(10deg);
    }

    100% {
        transform: translate(0, 0) rotate(15deg);
    }
}

.plane-icon-white {
    position: absolute;
    bottom: 10%;
    right: 5%;
    font-size: 40px;
    color: rgba(255, 255, 255, 0.2);
    transform: rotate(15deg);
    animation: floatPlaneValue 6s ease-in-out infinite;
}

/* --- Counters & How It Works Section --- */
.counters-section {
    padding: 40px 0 100px 0;
    /* Reduced top padding */
    background: var(--white);
}

/* Counters */
.counters-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.counter-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.counter-icon {
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orange-icon {
    color: #ff6b35;
}

.blue-icon {
    color: #6366f1;
}

.yellow-icon {
    color: #eab308;
}

.green-icon {
    color: #10b981;
}

.counter-num {
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
}

/* Colored numbers and suffixes */
.counter-item:nth-child(1) .counter-num-wrapper {
    color: #ff6b35;
}

.counter-item:nth-child(2) .counter-num-wrapper {
    color: #6366f1;
}

.counter-item:nth-child(3) .counter-num-wrapper {
    color: #eab308;
}

.counter-item:nth-child(4) .counter-num-wrapper {
    color: #10b981;
}

.counter-text h4 {
    font-weight: 800;
    color: var(--primary);
    display: block;
    line-height: 1;
    margin-bottom: 5px;
}

.counter-text p {
    font-size: 14px;
    color: #718096;
    font-weight: 600;
    margin: 5px 0 0 0;
}

/* How It Works */
.how-it-works-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}

.how-left {
    max-width: 400px;
}

.how-left .btn-hero {
    margin-top: 30px;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.step-pink {
    background: #fff1f2;
}

.step-green {
    background: #f0fdf4;
}

.step-purple {
    background: #f5f3ff;
}

.step-content {
    max-width: 70%;
}

.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.step-card p {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
}

.step-num {
    font-size: 90px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.15);
    line-height: 1;
}

.step-num-left {
    font-size: 90px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.15);
    line-height: 1;
    margin-right: 30px;
}

/* --- Marquee Section --- */
.marquee-section {
    background: var(--white);
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 50px;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    font-size: 48px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px #cbd5e1;
    letter-spacing: 2px;
}

.marquee-content i {
    color: var(--accent);
    font-size: 14px;
}

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

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

/* --- Blog Section --- */
.blog-section {
    padding: 100px 0;
    background: #fdfbf7;
}

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

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    font-size: 12px;
    color: #718096;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-meta i {
    color: var(--accent);
}

.blog-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 20px;
    min-height: 50px;
}

.blog-content .card-arrow {
    margin-top: auto;
}

/* --- Get In Touch Section (Contact Us) --- */
.get-in-touch-section {
    padding: 120px 0;
    background-color: #f3f6fa;
    position: relative;
    overflow: hidden;
}

.get-in-touch-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
}

/* Left Side Content */
.contact-info-panel {
    display: flex;
    flex-direction: column;
}

.subtitle-connect {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
    text-transform: capitalize;
}

.curved-arrow {
    display: inline-block;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.contact-info-panel:hover .curved-arrow {
    transform: translate(3px, -2px);
}

.contact-main-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-desc {
    font-size: 16px;
    color: #5a6578;
    line-height: 1.7;
    margin-bottom: 45px;
    max-width: 550px;
}

/* Contact Methods */
.contact-methods-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

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

.method-icon-circle {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-method-card.theme-purple .method-icon-circle {
    background-color: rgba(145, 28, 243, 0.1);
    color: var(--purple);
}

.contact-method-card.theme-purple:hover .method-icon-circle {
    background-color: var(--purple);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-method-card.theme-orange .method-icon-circle {
    background-color: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
}

.contact-method-card.theme-orange:hover .method-icon-circle {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.method-details h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.method-details p {
    font-size: 14px;
    color: #65748b;
    line-height: 1.5;
    margin-bottom: 12px;
}

.method-link {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.method-link i {
    font-size: 14px;
}

.contact-method-card.theme-purple .method-link:hover {
    color: var(--purple);
}

.contact-method-card.theme-orange .method-link:hover {
    color: var(--accent);
}

.contact-method-card.theme-purple .fa-phone-alt {
    display: inline-block;
    transform: scaleX(-1);
}

/* Right Side: Form Panel */
.contact-form-panel {
    width: 100%;
}

.contact-form-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(226, 232, 240, 0.8);
}

.contact-form-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.4;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: var(--primary);
    background-color: var(--white);
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(145, 28, 243, 0.08);
}

.form-group textarea {
    resize: none;
}

/* Mock reCAPTCHA style */
.recaptcha-mock-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9fafb;
    border: 1px solid #d1d5db;
    border-radius: 3px;
    padding: 10px 15px;
    width: 100%;
    max-width: 300px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.recaptcha-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recaptcha-checkbox-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
}

.recaptcha-checkbox-wrapper input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.recaptcha-checkbox {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 2px solid #c1c1c1;
    border-radius: 2px;
    cursor: pointer;
}

.recaptcha-checkbox-wrapper input[type="checkbox"]:checked~.recaptcha-checkbox {
    background-color: #fff;
    border-color: #c1c1c1;
}

.recaptcha-checkbox-wrapper input[type="checkbox"]:checked~.recaptcha-checkbox::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 3px;
    width: 5px;
    height: 11px;
    border: solid #09b83e;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

.recaptcha-text {
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    user-select: none;
}

.recaptcha-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.recaptcha-logo {
    width: 32px;
    height: 32px;
}

.recaptcha-privacy-terms {
    font-size: 8px;
    color: #555;
    line-height: 1;
}

.recaptcha-privacy-terms a {
    color: #555;
    text-decoration: none;
}

.recaptcha-privacy-terms a:hover {
    text-decoration: underline;
}

/* Submit Button */
.contact-submit-btn {
    width: 100%;
    padding: 16px;
    background-color: var(--purple);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
    box-shadow: 0 4px 14px rgba(145, 28, 243, 0.2);
}

.contact-submit-btn:hover {
    background-color: var(--accent);
    box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.3);
    transform: translateY(-2px);
}

.contact-submit-btn:active {
    transform: translateY(0);
}

/* --- Footer Section --- */
.footer-cta-cards {
    background: linear-gradient(to bottom, #f3f6fa calc(100% - 100px), transparent calc(100% - 100px));
    margin-bottom: -100px;
    /* Overlap effect */
    position: relative;
    z-index: auto;
    /* Allows children to stack globally */
}

.cta-cards-container {
    display: grid;
    grid-template-columns: auto auto;
    gap: 30px;
    /* Reduced gap to 30px */
    justify-content: center;
    /* Center the cards together */
}

.cta-card {
    background: var(--white);
    border-radius: 20px;
    padding: 55px 40px;
    /* Reduced height slightly */
    display: flex;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    max-width: 550px;
    /* Increased width */
    width: 100%;
    position: relative;
    z-index: 20;
    /* Renders on top of rocket-man */
}

.cta-card.card-purple {
    border-left: 5px solid var(--purple);
}

.cta-card.card-orange {
    border-left: 5px solid var(--accent);
}

.card-icon {
    font-size: 30px;
    color: var(--purple);
    width: 60px;
    height: 60px;
    background: #f5f3ff;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-orange .card-icon {
    color: var(--accent);
    background: #fff5f0;
}

.cta-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.cta-card p {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-sm-purple,
.btn-sm-orange {
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-sm-purple {
    background: var(--purple);
    color: var(--white);
}

.btn-sm-orange {
    background: var(--accent);
    color: var(--white);
}

/* Main Footer */
.site-footer {
    background: #0b1426 url('assets/images/footer_bg_new.png') no-repeat left bottom;
    background-size: cover;
    color: #a0aec0;
    padding: 180px 0 30px 0;
    position: relative;
}

.footer-main-container {
    /* position: relative; */
}

.footer-illustration {
    position: absolute;
    top: -240px;
    right: 0;
    width: 300px;
    z-index: 10;
    animation: float 4s ease-in-out infinite;
    /* Floating effect */
}

.footer-illustration img {
    width: 100%;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

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

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

.footer-col ul li a {
    color: #a0aec0;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-logo {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-newsletter form {
    display: flex;
    background: #1a202c;
    border-radius: 30px;
    padding: 5px;
    margin-bottom: 25px;
}

.footer-newsletter input {
    background: transparent;
    border: none;
    padding: 10px 15px;
    color: var(--white);
    flex: 1;
    font-size: 14px;
}

.footer-newsletter input:focus {
    outline: none;
}

.footer-newsletter button {
    background: var(--purple);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.social-links a {
    color: #a0aec0;
    font-size: 16px;
    transition: color 0.3s ease;
}

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

/* Contact Col */
.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--accent);
    font-size: 18px;
    margin-top: 5px;
}

.contact-item span {
    display: block;
    font-size: 12px;
    color: #718096;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 14px;
    color: var(--white);
    font-weight: 600;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #1a202c;
    padding-top: 30px;
}

.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    color: #a0aec0;
}

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

/* --- Mega Menu Grid Type --- */
.mega-menu-content.mega-menu-grid-type {
    position: absolute;
    top: 100%;
    left: 20% !important;
    width: 60% !important;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    display: none;
    z-index: 999;
    padding: 24px;
    gap: 24px;
}

.mega-menu-item:hover .mega-menu-content.mega-menu-grid-type,
.mega-menu-content.mega-menu-grid-type.is-active {
    display: flex !important;
}

.mega-grid-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mega-grid-cards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.mega-grid-card {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 5px;
    border-radius: 12px;
    cursor: default;
}

.mega-grid-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background-color: rgba(145, 28, 243, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mega-grid-icon i {
    color: var(--purple);
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mega-grid-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
}

/* Premium Hover Transitions */
.mega-grid-card:hover {
    transform: translateX(5px);
}

.mega-grid-card:hover .mega-grid-icon {
    background-color: var(--purple);
}

.mega-grid-card:hover .mega-grid-icon i {
    color: var(--white);
    transform: scale(1.1);
}

.mega-grid-card:hover .mega-grid-title {
    color: var(--accent);
}

.mega-grid-right {
    width: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f4f8;
    padding-left: 40px;
}

.mega-grid-right img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    animation: floatIllustration 4s ease-in-out infinite;
}

@keyframes floatIllustration {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* --- Mega Menu Tech Grid Type --- */
.mega-menu-content.mega-menu-tech-type {
    position: absolute;
    top: 100%;
    left: 20% !important;
    width: 60% !important;
    background: var(--white);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    display: none;
    z-index: 999;
    padding: 35px 40px;
}

.mega-menu-item:hover .mega-menu-content.mega-menu-tech-type,
.mega-menu-content.mega-menu-tech-type.is-active {
    display: block !important;
}

.mega-tech-grid-container {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 25px 15px;
    justify-items: center;
    align-items: center;
}

.mega-tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    padding: 8px;
    border-radius: 12px;
    cursor: default;
    width: 100%;
}

.mega-tech-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mega-tech-icon i {
    font-size: 32px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mega-tech-title {
    font-size: 13px;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.3s ease;
}

/* Premium Hover Transitions */
.mega-tech-card:hover {
    transform: translateY(-5px);
}

.mega-tech-card:hover .mega-tech-icon i {
    transform: scale(1.1);
}

.mega-tech-card:hover .mega-tech-title {
    color: var(--purple);
}

@media (max-width: 1400px) {
    .mega-tech-grid-container {
        grid-template-columns: repeat(7, 1fr);
    }
}

@media (max-width: 1200px) {
    .mega-tech-grid-container {
        grid-template-columns: repeat(6, 1fr);
        gap: 20px 12px;
    }
}

.menu-toggle {
    display: none;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-section {
        height: auto !important;
        padding: 100px 0 50px 0 !important;
        margin-top: 0 !important;
    }

    .hero-slide-item {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }

    .hero-media {
        display: none !important;
    }

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

    .about-content {
        text-align: center !important;
    }

    .feature-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .feature-item {
        justify-content: center !important;
    }

    .section-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    .about-actions {
        flex-direction: column !important;
        gap: 15px !important;
        align-items: stretch !important;
        max-width: 300px !important;
        margin-left: auto !important;
        margin-right: auto !important;
        display: flex !important;
    }

    .about-actions .btn-hero,
    .about-actions .btn-outline {
        justify-content: center !important;
        display: flex !important;
    }

    .services-container {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
    }

    .services-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .service-card {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .company-services-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .section-header-center {
        text-align: center !important;
    }

    .section-title-center {
        font-size: 28px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .description-center {
        text-align: center !important;
    }

    .video-banner-container {
        height: 300px !important;
    }

    .case-studies-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .case-study-card {
        text-align: center !important;
    }

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

    .testimonial-header {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        text-align: center !important;
    }

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

    .value-right {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .value-card {
        position: relative !important;
        bottom: auto !important;
        left: auto !important;
        margin: 20px auto 0 auto !important;
    }

    .counters-row {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .how-it-works-row {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .how-left {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        max-width: 100% !important;
    }

    .marquee-content span {
        font-size: 24px !important;
    }

    .marquee-content {
        gap: 30px !important;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

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

    .contact-info-panel {
        text-align: center !important;
        align-items: center !important;
    }

    .subtitle-connect {
        justify-content: center !important;
    }

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

    .contact-methods-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
    }

    .contact-method-card {
        align-items: center !important;
        text-align: center !important;
    }

    .method-link {
        justify-content: center !important;
    }

    .contact-form-card {
        padding: 30px 20px !important;
    }

    .form-row-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .recaptcha-mock-card {
        max-width: 100% !important;
    }

    .cta-cards-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

    .cta-card {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        max-width: 100% !important;
    }

    .footer-illustration {
        display: none !important;
    }

    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
        text-align: center !important;
    }

    .footer-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .bottom-container {
        flex-direction: column !important;
        gap: 15px !important;
        text-align: center !important;
    }

    .site-header.is-sticky {
        width: calc(100% - 40px) !important;
        max-width: 1560px !important;
        border-radius: 20px !important;
        margin: 20px auto !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .hero-title {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    .client-logos {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .client-logo-img {
        max-height: 20px !important;
    }

    .overlay-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -20px;
    }

    .top-bar {
        background: #fdfbf7;
        color: var(--primary);
    }

    .top-bar-right {
        color: var(--primary);
    }

    .top-bar-right a {
        color: var(--primary);
    }

    .social-icons a {
        color: var(--primary);
    }

    /* Menu Toggle Button */
    .menu-toggle {
        display: block !important;
        background: transparent !important;
        border: none;
        font-size: 24px;
        color: #1a202c !important;
        cursor: pointer;
        padding: 10px;
        z-index: 9999 !important;
        width: auto !important;
        height: auto !important;
        position: static !important;
    }

    .main-navigation {
        display: none;
        /* Hide by default on mobile */
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .main-navigation.is-open {
        display: block;
    }

    .main-navigation ul {
        display: block !important;
        padding: 20px;
    }

    .main-navigation ul li {
        margin: 0;
        border-bottom: 1px solid #f0f4f8;
    }

    .main-navigation ul li a {
        padding: 15px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* --- Standard Submenu Mobile Styles --- */
    .main-navigation ul ul.sub-menu {
        position: static !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
        background: transparent !important;
        padding: 5px 0 5px 20px !important;
        /* Nested indentation */
        display: none !important;
        /* Hidden by default */
        transition: none !important;
    }

    /* Show submenu when parent has .is-open class */
    .main-navigation ul li.is-open>ul.sub-menu {
        display: block !important;
    }

    .main-navigation ul ul.sub-menu li {
        border-bottom: none !important;
        padding: 0 !important;
    }

    .main-navigation ul ul.sub-menu li a {
        padding: 10px 0 !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: #4a5568 !important;
        border-radius: 0 !important;
        background: transparent !important;
    }

    .main-navigation ul ul.sub-menu li a:hover {
        color: var(--purple) !important;
        background: transparent !important;
        transform: none !important;
        /* Disable slide animation on mobile */
    }

    .mega-menu-content {
        position: static;
        width: 100%;
        box-shadow: none;
        padding: 15px;
        border: none;
        display: none !important;
        /* Controlled by toggle */
        flex-direction: column;
    }

    .mega-menu-item.is-open .mega-menu-content {
        display: flex !important;
    }

    .mega-menu-sidebar {
        width: 100%;
        border-right: none;
        padding-right: 0;
        margin-bottom: 15px;
    }

    .mega-menu-sidebar ul li {
        border-bottom: none;
    }

    .mega-menu-main-wrapper {
        padding-left: 0;
    }

    .mega-menu-grid {
        flex-direction: column;
    }

    .mega-menu-links {
        flex-direction: column;
        gap: 10px;
    }

    .mega-menu-image {
        display: none;
        /* Hide image on mobile */
    }

    .top-bar {
        display: none !important;
    }

    .header-right {
        display: none !important;
    }

    .nav-container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
    }

    .site-header {
        background: var(--white) !important;
        border-radius: 0 !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        margin: 0 !important;
        padding: 10px 15px !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
    }

    .logo-img {
        max-height: 40px !important;
        width: auto !important;
    }

    /* Mega Menu Grid Type Mobile Rules */
    .mega-menu-content.mega-menu-grid-type {
        display: none !important;
        flex-direction: column !important;
        gap: 15px !important;
        padding: 15px !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }

    .mega-menu-item.is-open .mega-menu-content.mega-menu-grid-type {
        display: flex !important;
    }

    .mega-grid-cards-container {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .mega-grid-right {
        display: none !important;
    }

    /* Mega Menu Tech Type Mobile Rules */
    .mega-menu-content.mega-menu-tech-type {
        display: none !important;
        padding: 20px !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        position: static !important;
        width: 100% !important;
        left: 0 !important;
    }

    .mega-menu-item.is-open .mega-menu-content.mega-menu-tech-type {
        display: block !important;
    }

    .mega-tech-grid-container {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px 10px !important;
        width: 100% !important;
    }

    .mega-tech-card {
        padding: 5px !important;
        width: 100% !important;
    }

    .mega-tech-icon i {
        font-size: 32px !important;
    }

    .mega-tech-title {
        font-size: 12px !important;
    }
}

/* ==========================================================================
   About Page Custom Styling & Layout System
   ========================================================================== */

.about-page-wrapper {
    background-color: var(--white);
    width: 100%;
    position: relative;
    overflow-x: clip;
}

/* --- Section 1: Hero Area --- */
.about-hero-section {
    position: relative;
    background-color: var(--light-bg);
    background-image: radial-gradient(rgba(11, 28, 57, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    background-position: center;
    padding: 175px 0 75px 0;
    min-height: 42vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}




/* Semi-circular decorative accent circle on the right border */
.about-hero-section::after {
    content: '';
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(145, 28, 243, 0.03);
    border: 2px solid rgba(145, 28, 243, 0.12);
    z-index: 1;
    pointer-events: none;
}

/* Glowing blur backdrops (Subtle glows for light theme) */
.about-hero-glow-1 {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 0%, rgba(var(--accent-rgb), 0) 70%);
    filter: blur(60px);
    pointer-events: none;
    z-index: 1;
}

.about-hero-glow-2 {
    position: absolute;
    bottom: 5%;
    right: 10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(145, 28, 243, 0.06) 0%, rgba(145, 28, 243, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.about-hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Left Hero Column content */
.about-hero-content {
    color: var(--text-color);
}

.about-hero-title {
    font-size: 46px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--primary);
    line-height: 1.15;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.about-hero-description {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-color);
    margin-bottom: 30px;
    max-width: 620px;
}

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

/* Solid Purple CTA Button (Theme Primary Color) */
.btn-about-blue {
    background: var(--purple);
    color: #ffffff !important;
    padding: 13px 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(145, 28, 243, 0.35);
    border: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-about-blue:hover {
    background: #7a14ce;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(145, 28, 243, 0.5);
    color: #ffffff !important;
}

/* Accent Orange Outline CTA Button (Theme Accent Color) */
.btn-about-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(var(--accent-rgb), 0.4);
    color: var(--accent) !important;
    padding: 13px 30px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: none;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-about-outline:hover {
    background: rgba(var(--accent-rgb), 0.08);
    border-color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(var(--accent-rgb), 0.25);
    color: var(--accent) !important;
}

/* Right Hero Column Image Container */
.about-hero-image-container {
    position: relative;
    border-radius: 28px;
    overflow: visible;
}

.about-hero-img {
    width: 100%;
    aspect-ratio: 16 / 10.5;
    /* Crops the vertical image horizontally to match the mockup exact horizontal layout */
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    display: block;
    box-shadow: 0 20px 40px rgba(11, 28, 57, 0.15);
    border: 1px solid rgba(11, 28, 57, 0.05);
    transition: transform 0.5s ease;
}

.about-hero-image-container:hover .about-hero-img {
    transform: scale(1.02);
}

/* Geometric circle overlays */
.about-media-circle-1 {
    position: absolute;
    top: -15px;
    left: -15px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px dashed rgba(11, 28, 57, 0.1);
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

.about-media-circle-2 {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(145, 28, 243, 0.05) 0%, rgba(145, 28, 243, 0) 70%);
    border: 1px solid rgba(11, 28, 57, 0.04);
    z-index: -1;
    animation: float 10s ease-in-out infinite alternate;
}

/* --- Section 2: Premium Core Values --- */
.about-values-section {
    padding: 120px 0;
    background-color: #fafbfc;
}

.about-section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px auto;
}

.about-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 800;
    color: var(--purple);
    display: block;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 20px;
}

.about-header-bar {
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--purple), var(--accent));
    margin: 0 auto;
    border-radius: 2px;
}

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

.value-glass-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 45px 35px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.015);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.value-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(145, 28, 243, 0.015) 0%, rgba(11, 28, 57, 0.005) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.value-glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(11, 28, 57, 0.06);
    border-color: rgba(145, 28, 243, 0.12);
}

.value-glass-card:hover::before {
    opacity: 1;
}

.value-icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-glass-card:hover .value-icon-wrapper {
    transform: scale(1.08) rotate(5deg);
}

/* Icon Wrapper Themes */
.value-icon-wrapper.theme-blue {
    background-color: rgba(0, 102, 204, 0.06);
    color: #0066cc;
}

.value-icon-wrapper.theme-purple {
    background-color: rgba(145, 28, 243, 0.06);
    color: var(--purple);
}

.value-icon-wrapper.theme-orange {
    background-color: rgba(var(--accent-rgb), 0.06);
    color: var(--accent);
}

.value-glass-card h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.value-glass-card p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

/* --- Section 3: Professional Statistics Counters --- */
.about-stats-section {
    padding: 100px 0;
    background-color: #090a15;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    position: relative;
    overflow: hidden;
}

.about-stats-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(145, 28, 243, 0.08) 0%, rgba(145, 28, 243, 0) 75%);
    filter: blur(90px);
    pointer-events: none;
    z-index: 1;
}

.about-stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.about-stat-item {
    text-align: center;
    padding: 45px 25px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.about-stat-item:hover {
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
}

.stat-icon-box {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.about-stat-item:hover .stat-icon-box {
    color: var(--purple);
    transform: scale(1.12);
}

.stat-number-wrapper {
    font-size: 46px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
}

.stat-suffix {
    color: var(--purple);
    margin-left: 2px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 1.3;
}

/* ==========================================================================
   About Page Media Queries (Responsive Adjustments)
   ========================================================================== */

@media (max-width: 1200px) {
    .about-hero-title {
        font-size: 40px;
    }

    .about-stats-row {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .about-hero-section {
        padding: 100px 0 50px 0;
    }

    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-hero-title {
        font-size: 34px;
    }

    .about-hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .about-hero-actions {
        justify-content: center;
    }

    .about-hero-media {
        max-width: 500px;
        margin: 0 auto;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .about-stats-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-section-title {
        font-size: 32px;
    }

    .about-values-section {
        padding: 80px 0;
    }

    .about-stats-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-actions {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }

    .btn-about-blue,
    .btn-about-outline {
        width: 100%;
        padding: 15px 25px;
    }

    .about-stats-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-stat-item {
        padding: 35px 20px;
    }
}

/* ==========================================================================
   Section 2: About Details & Statistics
   ========================================================================== */
.about-details-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--white);
    /* Alternate background format of the theme! */
    overflow: hidden;
}

.about-details-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left Column: Stats Grid and Shapes */
.stats-grid-column {
    position: relative;
    padding-left: 60px;
    /* Space for floating shapes */
}

.stats-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: #e2e8f0;
    /* Crisp 1px border lines */
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 28, 57, 0.02);
}

.stat-grid-card {
    background: var(--white);
    padding: 45px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
}

.stat-grid-card:hover {
    background: #fafbfc;
    z-index: 2;
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(11, 28, 57, 0.04);
}

.stat-card-number {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.stat-card-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 1.4;
}

/* Card Number Highlights */
.card-primary .stat-card-number {
    color: var(--primary);
}

.card-orange .stat-card-number {
    color: var(--accent);
}

.card-purple .stat-card-number {
    color: var(--purple);
}

/* Floating Shapes */
.decor-shape {
    position: absolute;
    pointer-events: none;
    z-index: 2;
    animation: float 6s ease-in-out infinite alternate;
}

.shape-red-dot {
    left: 20px;
    top: 15%;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #f43f5e;
    animation-duration: 5s;
}

.shape-cyan-dot {
    left: 35px;
    top: 32%;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: #06b6d4;
    animation-duration: 7s;
}

.shape-yellow-pill {
    left: -20px;
    top: 48%;
    width: 70px;
    height: 20px;
    border-radius: 10px;
    background-color: #fbbf24;
    transform: rotate(-25deg);
    animation-duration: 8s;
}

.shape-purple-dot {
    left: 30px;
    top: 68%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #a855f7;
    animation-duration: 6s;
}

.shape-cyan-loop {
    right: 40px;
    bottom: -45px;
    width: 120px;
    height: 120px;
    z-index: 1;
    animation-name: float-subtle;
    animation-duration: 9s;
}

/* Right Column: Details Content */
.details-content-column {
    padding-left: 20px;
}

.details-subtitle {
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
}

.subtitle-arrow-svg {
    margin-left: 12px;
    flex-shrink: 0;
}

.subtitle-arrow-svg path {
    stroke: var(--accent) !important;
}

.details-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.details-description p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 22px;
}

.details-description p:last-child {
    margin-bottom: 0;
}

/* Accolades Section */
.accolades-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(11, 28, 57, 0.08);
}

.accolades-title {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.clutch-badge-box {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 0;
}

.clutch-logo-svg {
    display: block;
}

.clutch-brand-text {
    font-family: 'Outfit', sans-serif;
    font-size: 44px;
    font-weight: 900;
    color: var(--primary);
    line-height: 1;
    letter-spacing: -1.5px;
    display: block;
    margin-bottom: 4px;
}

.clutch-rating-row {
    display: flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    gap: 4px;
}

.clutch-rating-star {
    color: #f43f5e;
    font-size: 18px;
    margin-right: 4px;
}

.clutch-rating-label {
    color: var(--text-color);
    font-weight: 600;
}

/* Responsive Design Rules */
@media (max-width: 992px) {
    .about-details-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .stats-grid-column {
        padding-left: 0;
        max-width: 540px;
        margin: 0 auto;
        width: 100%;
    }

    .decor-shape:not(.shape-cyan-loop) {
        display: none;
    }

    .details-content-column {
        padding-left: 0;
        text-align: center;
    }

    .details-subtitle {
        justify-content: center;
    }

    .clutch-badge-box {
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .about-details-section {
        padding: 80px 0;
    }

    .details-heading {
        font-size: 32px;
    }

    .stat-grid-card {
        padding: 35px 15px;
    }

    .stat-card-number {
        font-size: 32px;
    }
}

@keyframes float-subtle {
    0% {
        transform: translateY(0) rotate(0deg);
    }

    100% {
        transform: translateY(-8px) rotate(3deg);
    }
}

/* ==========================================================================
   Section 3: Passionate Team & Values
   ========================================================================== */
.about-values-team-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--light-bg);
    /* Alternate background format of the theme! */
    overflow: hidden;
}

.about-values-team-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Column: Core Values List */
.values-content-column {
    position: relative;
}

.values-section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.values-section-desc {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 45px;
}

.core-values-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.value-item-box {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.value-icon-box {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.value-item-box:hover .value-icon-box {
    transform: scale(1.1) rotate(5deg);
}

.value-icon-box.box-purple {
    background-color: rgba(145, 28, 243, 0.08);
    color: var(--purple);
}

.value-icon-box.box-orange {
    background-color: rgba(var(--accent-rgb), 0.08);
    color: var(--accent);
}

.value-icon-box.box-dark {
    background-color: rgba(11, 28, 57, 0.08);
    color: var(--primary);
}

.value-title {
    font-family: 'Outfit', sans-serif;
    font-size: 19px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.value-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-color);
    margin: 0;
}

/* Right Column: Values Side Image and Badges */
.values-media-column {
    display: flex;
    justify-content: center;
}

.media-container-values {
    position: relative;
    padding: 10px;
    display: block;
    width: 100%;
    max-width: 480px;
}

.values-side-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    display: block;
    box-shadow: 0 25px 55px rgba(11, 28, 57, 0.12);
}

.floating-check-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(11, 28, 57, 0.08);
    z-index: 15;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
}

.floating-check-badge:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 15px 35px rgba(11, 28, 57, 0.12);
}

.badge-1 {
    left: -60px;
    top: 15%;
}

.badge-2 {
    left: -90px;
    top: 45%;
}

.badge-3 {
    left: -60px;
    top: 75%;
}

.check-circle-icon {
    color: var(--purple);
    /* Theme's core purple styling */
    font-size: 20px;
    display: flex;
    align-items: center;
}

.badge-text {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

/* Responsive Design Rules */
@media (max-width: 1200px) {
    .badge-1 {
        left: -30px;
    }

    .badge-2 {
        left: -50px;
    }

    .badge-3 {
        left: -30px;
    }
}

@media (max-width: 992px) {
    .about-values-team-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .values-content-column {
        max-width: 680px;
        margin: 0 auto;
    }

    .values-media-column {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .media-container-values {
        max-width: 100%;
    }

    .badge-1 {
        left: -40px;
    }

    .badge-2 {
        left: -60px;
    }

    .badge-3 {
        left: -40px;
    }
}

@media (max-width: 768px) {
    .media-container-values {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .values-side-img {
        margin-bottom: 25px;
    }

    .floating-check-badge {
        position: static;
        width: 100%;
        max-width: 360px;
        margin-bottom: 12px;
        justify-content: flex-start;
        box-shadow: 0 5px 15px rgba(11, 28, 57, 0.04);
        border: 1px solid rgba(11, 28, 57, 0.06);
    }

    .floating-check-badge:hover {
        transform: translateY(-2px);
    }
}

@media (max-width: 576px) {
    .about-values-team-section {
        padding: 80px 0;
    }

    .values-section-title {
        font-size: 32px;
    }

    .value-item-box {
        gap: 16px;
    }

    .value-icon-box {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 12px;
        font-size: 16px;
    }
}

/* ==========================================================================
   Section 4: Our Services / Services For Your Business
   ========================================================================== */
.about-services-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--white);
    /* Alternate background format of the theme! */
    overflow: hidden;
}

.about-services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-services-header {
    max-width: 750px;
    margin: 0 auto 65px auto;
    text-align: center;
}

.about-services-subtitle {
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
}

.about-services-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-services-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.8;
    color: var(--text-color);
    margin: 0;
}

/* Services Grid */
.about-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card Panel Styling */
.service-panel-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 45px 35px;
    box-shadow: 0 15px 45px rgba(11, 28, 57, 0.03);
    border: 1px solid rgba(11, 28, 57, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-panel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(11, 28, 57, 0.08);
}

/* Icon Box Styling */
.service-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-panel-card:hover .service-icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Specific Service Colors */
.service-icon-box.bg-blue {
    background-color: var(--purple);
    /* Theme Purple */
    box-shadow: 0 8px 20px rgba(145, 28, 243, 0.25);
}

.service-icon-box.bg-rose {
    background-color: var(--accent);
    /* Theme Accent Orange */
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.25);
}

.service-icon-box.bg-dark {
    background-color: var(--primary);
    /* Theme Primary Dark Navy */
    box-shadow: 0 8px 20px rgba(11, 28, 57, 0.25);
}

.service-icon-box.bg-teal {
    background-color: var(--purple);
    /* Theme Purple */
    box-shadow: 0 8px 20px rgba(145, 28, 243, 0.25);
}

.service-icon-box.bg-blue-alt {
    background-color: var(--accent);
    /* Theme Accent Orange */
    box-shadow: 0 8px 20px rgba(var(--accent-rgb), 0.25);
}

.service-icon-box.bg-yellow {
    background-color: var(--primary);
    /* Theme Primary Dark Navy */
    box-shadow: 0 8px 20px rgba(11, 28, 57, 0.25);
}

/* Card Content Typography */
.service-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-color);
    margin-bottom: 30px;
    flex-grow: 1;
    /* Pushes the included block to the bottom for equal heights */
}

/* Included with Section */
.service-included-box {
    border-top: 1px solid rgba(11, 28, 57, 0.06);
    padding-top: 24px;
}

.included-label {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: capitalize;
}

.included-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.included-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.included-check {
    color: var(--purple);
    /* Theme's core purple styling */
    font-size: 15px;
    display: flex;
    align-items: center;
}

.included-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .about-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .about-services-section {
        padding: 100px 0;
    }

    .about-services-heading {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .about-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .service-panel-card {
        padding: 35px 25px;
    }
}

@media (max-width: 576px) {
    .about-services-section {
        padding: 80px 0;
    }

    .about-services-heading {
        font-size: 32px;
    }

    .about-services-header {
        margin-bottom: 45px;
    }
}

/* ==========================================================================
   Section 5: Work With Us / Join Our Team CTA
   ========================================================================== */
.about-cta-section {
    position: relative;
    padding: 110px 0;
    background-color: var(--primary);
    /* Deep navy/purple matching mockup background */
    overflow: hidden;
}

.about-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    position: relative;
    z-index: 10;
}

.about-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-cta-subtitle {
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    /* Theme orange accent color for perfect contrast and brand consistency */
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
}

.about-cta-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

.about-cta-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    /* Clean high-contrast white text */
    margin: 0 auto 40px auto;
}

/* Apply button styling */
.btn-cta-apply {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--purple);
    /* Theme's core purple button style */
    color: #ffffff !important;
    padding: 15px 38px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 10px 25px rgba(145, 28, 243, 0.3);
    border: none;
}

.btn-cta-apply:hover {
    background-color: #7a14ce;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(145, 28, 243, 0.45);
    color: #ffffff !important;
}

/* Corner Floating Shapes */
.cta-shape {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.cta-shape-yellow {
    top: -100px;
    left: -50px;
    width: 250px;
    height: 250px;
    background-color: var(--accent);
    /* Theme's accent orange color */
    animation: float-subtle 8s ease-in-out infinite alternate;
}

.cta-shape-purple {
    bottom: -120px;
    right: -60px;
    width: 300px;
    height: 300px;
    background-color: rgba(145, 28, 243, 0.15);
    /* Deep transparent theme purple backdrop */
    animation: float-subtle 10s ease-in-out infinite alternate-reverse;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .about-cta-heading {
        font-size: 32px;
    }

    .about-cta-desc {
        font-size: 15px;
    }

    .cta-shape-yellow {
        width: 180px;
        height: 180px;
        top: -60px;
        left: -40px;
    }

    .cta-shape-purple {
        width: 220px;
        height: 220px;
        bottom: -80px;
        right: -40px;
    }
}

@media (max-width: 576px) {
    .about-cta-section {
        padding: 80px 0;
    }

    .about-cta-heading {
        font-size: 26px;
    }

    .about-cta-desc {
        font-size: 14.5px;
        margin-bottom: 30px;
    }

    .btn-cta-apply {
        width: 100%;
        padding: 14px 28px;
    }

    .cta-shape-yellow {
        width: 120px;
        height: 120px;
        top: -40px;
        left: -30px;
    }

    .cta-shape-purple {
        width: 150px;
        height: 150px;
        bottom: -65px;
        right: -30px;
    }
}

/* ==========================================================================
   Section 6: Industries We Work For
   ========================================================================== */
.about-industries-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--light-bg);
    overflow: hidden;
}

.about-industries-container {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left Column: Image wrapper */
.industries-media-column {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.industries-image-wrapper {
    width: 100%;
    max-width: 480px;
}

.industries-side-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 55px rgba(11, 28, 57, 0.08);
    display: block;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.industries-side-img:hover {
    transform: scale(1.02);
}

/* Right Column: Content Header & Grid */
.industries-content-column {
    position: relative;
    z-index: 2;
}

.about-industries-header {
    margin-bottom: 45px;
}

.about-industries-subtitle {
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
}

.about-industries-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.about-industries-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text-color);
    margin: 0;
}

/* Badge Grid Layout */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.industry-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: var(--white);
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(11, 28, 57, 0.02);
    border: 1px solid rgba(11, 28, 57, 0.04);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.industry-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(11, 28, 57, 0.06);
    border-color: rgba(145, 28, 243, 0.1);
}

/* Icon Box Design */
.industry-icon-box {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
}

.industry-badge:hover .industry-icon-box {
    transform: scale(1.1);
}

/* Custom Light Background variables matching theme variables */
.industry-icon-box.bg-purple-light {
    background-color: rgba(145, 28, 243, 0.06);
    color: var(--purple);
}

.industry-icon-box.bg-accent-light {
    background-color: rgba(var(--accent-rgb), 0.06);
    color: var(--accent);
}

.industry-name {
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
}

/* Media Queries */
@media (max-width: 992px) {
    .about-industries-section {
        background-color: var(--light-bg);
        /* Smooth light background when split is stacked */
    }

    .about-industries-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .industries-media-column {
        order: 2;
        /* Put image under text badge grid for optimized mobile stack */
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .about-industries-heading {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .about-industries-section {
        padding: 80px 0;
    }

    .industries-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-industries-heading {
        font-size: 30px;
    }

    .industry-badge {
        padding: 14px 20px;
    }
}

/* ==========================================================================
   Section 7: Capabilities Section (#1 Software Developers Australia)
   ========================================================================== */
.about-capabilities-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--primary);
    /* Deep navy theme color for a rich contrast segment */
    overflow: hidden;
}

.about-capabilities-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.about-capabilities-header {
    max-width: 750px;
    margin: 0 auto 65px auto;
    text-align: center;
}

.about-capabilities-subtitle {
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    /* Orange brand color for superb contrast */
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
}

.about-capabilities-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.about-capabilities-desc {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Grid Configuration */
.about-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card Panel Styling */
.capability-card {
    background-color: rgba(255, 255, 255, 0.03);
    /* Translucent premium dark cards */
    border-radius: 24px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.capability-card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

/* Icon Box Design */
.capability-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.capability-card:hover .capability-icon-box {
    transform: scale(1.1) rotate(5deg);
}

/* Theme Brand Specific Colors */
.capability-icon-box.bg-purple {
    background-color: rgba(145, 28, 243, 0.15);
    color: #b25cff;
    /* Premium light glowing purple */
}

.capability-icon-box.bg-orange {
    background-color: rgba(var(--accent-rgb), 0.15);
    color: #ff804e;
    /* Premium light glowing orange */
}

/* Card Content Typography */
.capability-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.35;
    text-align: left;
}

.capability-card-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    text-align: left;
}

/* Responsive Rules */
@media (max-width: 1200px) {
    .about-capabilities-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 992px) {
    .about-capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .about-capabilities-section {
        padding: 100px 0;
    }

    .about-capabilities-heading {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .about-capabilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-capabilities-section {
        padding: 80px 0;
    }

    .about-capabilities-heading {
        font-size: 30px;
    }

    .capability-card {
        padding: 35px 25px;
    }
}

/* ==========================================================================
   Section 8: What Sets Us Apart Section
   ========================================================================== */
.about-apart-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--white);
    /* White background to alternate perfectly after navy */
    overflow: hidden;
}

.about-apart-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    /* Content on the right, image on the left */
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left Column: Image Wrapper */
.apart-media-column {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.apart-image-wrapper {
    width: 100%;
    max-width: 480px;
}

.apart-side-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 55px rgba(11, 28, 57, 0.08);
    display: block;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.apart-side-img:hover {
    transform: scale(1.02);
}

/* Right Column: Content */
.apart-content-column {
    position: relative;
    z-index: 2;
}

.about-apart-header {
    margin-bottom: 45px;
}

.about-apart-subtitle {
    display: inline-flex;
    align-items: center;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--text-color);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    position: relative;
}

.about-apart-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin-bottom: 22px;
    letter-spacing: -0.5px;
}

.about-apart-desc p {
    font-family: 'Inter', sans-serif;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--text-color);
    margin-bottom: 15px;
}

.about-apart-desc p:last-child {
    margin-bottom: 0;
}

/* Features Grid layout (2 Columns) */
.apart-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 30px;
}

.apart-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.apart-feature-item:hover {
    transform: translateX(4px);
}

.apart-check-circle {
    color: var(--purple);
    /* Signature theme purple checkmarks */
    font-size: 20px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.apart-feature-item:hover .apart-check-circle {
    transform: scale(1.15);
}

.apart-feature-text {
    font-family: 'Outfit', sans-serif;
    font-size: 15.5px;
    font-weight: 700;
    color: var(--primary);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    .about-apart-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .apart-media-column {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }

    .about-apart-heading {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .about-apart-section {
        padding: 80px 0;
    }

    .apart-features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .about-apart-heading {
        font-size: 30px;
    }
}

/* ==========================================================================
   Section 9: Trusted Brands Section
   ========================================================================== */
.about-brands-section {
    position: relative;
    padding: 100px 0;
    background-color: #f7f9fc;
    /* Soft off-white to alternate perfectly after white Apart section */
    overflow: hidden;
}

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

.about-brands-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-brands-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
    letter-spacing: -0.5px;
}

/* 6-Column Responsive Grid */
.about-brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-bottom: 45px;
}

/* Brand Card Design */
.brand-card {
    background-color: var(--white);
    border: 1px solid rgba(11, 28, 57, 0.06);
    border-radius: 12px;
    padding: 18px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(11, 28, 57, 0.03);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 80px;
}

.brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 28, 57, 0.07);
    border-color: rgba(145, 28, 243, 0.15);
    /* Accent highlight border on hover */
}

.brand-logo-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-svg-img {
    max-width: 100%;
    max-height: 44px;
    width: auto;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

/* Brand Logo Footer and Link */
.about-brands-footer {
    text-align: center;
}

.view-all-clients-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all-clients-link:hover {
    color: var(--purple);
}

.link-arrow {
    display: inline-flex;
    transition: transform 0.3s ease;
}

.view-all-clients-link:hover .link-arrow {
    transform: translateX(5px);
}

/* Responsive Media Queries */
@media (max-width: 1200px) {
    .about-brands-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 18px;
    }

    .about-brands-heading {
        font-size: 30px;
    }
}

@media (max-width: 992px) {
    .about-brands-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .about-brands-section {
        padding: 80px 0;
    }
}

@media (max-width: 576px) {
    .about-brands-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .about-brands-heading {
        font-size: 26px;
    }

    .brand-card {
        height: 70px;
        padding: 12px;
    }
}

/* ==========================================
   Section 10: Testimonials/Reviews Styles
   ========================================== */
.about-reviews-section {
    position: relative;
    padding: 110px 0;
    background-color: var(--white);
    overflow: hidden;
}

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

.about-reviews-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-reviews-heading {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
}

.about-reviews-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #5a6e7f;
    line-height: 1.6;
    margin: 0;
}

/* Reviews Stack Layout */
.about-reviews-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Card Design */
.review-card {
    background-color: var(--white);
    border: 1px solid rgba(11, 28, 57, 0.07);
    border-radius: 18px;
    padding: 35px 40px;
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 40px;
    box-shadow: 0 10px 40px rgba(11, 28, 57, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(11, 28, 57, 0.07);
    border-color: rgba(145, 28, 243, 0.18);
}

/* Platform Column */
.review-platform-column {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-right: 1px solid rgba(11, 28, 57, 0.08);
    padding-right: 30px;
}

.platform-logo-svg {
    max-width: 100%;
    max-height: 44px;
    width: auto;
    height: auto;
    display: block;
}

/* Content Column */
.review-content-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Card Header */
.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.review-client-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-client-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(145, 28, 243, 0.1);
    box-shadow: 0 4px 10px rgba(11, 28, 57, 0.05);
}

.review-client-badge {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 10px rgba(11, 28, 57, 0.05);
}

.bloom-text-under {
    position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Outfit', sans-serif;
    font-size: 7px;
    font-weight: 900;
    color: #ff1493;
    letter-spacing: 0.5px;
}

.review-client-info h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 3px 0;
}

.review-client-info span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #65748b;
    font-weight: 500;
}

/* Rating Stars */
.review-stars {
    display: flex;
    gap: 4px;
    color: #ffb400;
    font-size: 13px;
}

/* Review Text Body */
.review-body p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.65;
    margin: 0;
}

/* Responsive Styles for Testimonials */
@media (max-width: 992px) {
    .review-card {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 30px;
    }

    .review-platform-column {
        border-right: none;
        border-bottom: 1px solid rgba(11, 28, 57, 0.08);
        padding-right: 0;
        padding-bottom: 20px;
        justify-content: center;
    }

    .platform-logo-svg {
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    .about-reviews-section {
        padding: 80px 0;
    }

    .about-reviews-heading {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .about-reviews-heading {
        font-size: 26px;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .review-stars {
        align-self: flex-start;
    }

    .review-card {
        padding: 24px 20px;
        border-radius: 14px;
    }

    .review-client-info h4 {
        font-size: 16px;
    }

    .review-body p {
        font-size: 14px;
    }
}



/* ==========================================================================
   Service Page - Mastering Section Styles
   ========================================================================== */

.service-mastering-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.service-mastering-container {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Left Media Column */
.mastering-media-column {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mastering-image-wrapper {
    position: relative;
    max-width: 400px;
    width: 100%;
}

.mastering-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    border-radius: 50%;
    border: 1.5px dashed rgba(var(--accent-rgb), 0.3);
    /* Theme accent color */
    z-index: 0;
}

.mastering-main-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

/* Floating Badges */
.mastering-badge {
    position: absolute;
    background: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 3;
    min-width: 140px;
    transition: transform 0.3s ease;
}

.mastering-badge:hover {
    transform: translateY(-5px);
}

.badge-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 2px;
}

.badge-sub {
    font-size: 11px;
    color: #718096;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.text-green {
    color: #10b981;
}

.text-red {
    color: #ef4444;
}

.text-yellow {
    color: #f59e0b;
}

.badge-top {
    top: -20px;
    right: -10px;
}

.badge-left {
    top: 40%;
    left: -60px;
}

.badge-bottom {
    bottom: -30px;
    right: 20%;
}

/* Right Content Column */
.mastering-heading {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 40px;
}

.mastering-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 45px;
}

.mastering-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.mastering-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.btn-mastering-red {
    display: inline-block;
    background: linear-gradient(135deg, #b25cff 0%, #911cf3 100%);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.3);
}

.btn-mastering-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(var(--accent-rgb), 0.4);
    color: var(--white);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .service-mastering-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .mastering-media-column {
        order: -1;
    }

    .mastering-badge {
        padding: 10px 20px;
        min-width: 120px;
    }

    .badge-title {
        font-size: 16px;
    }

    .badge-sub {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .mastering-heading {
        font-size: 32px;
    }

    .badge-left {
        left: -20px;
    }
}

@media (max-width: 576px) {
    .mastering-heading {
        font-size: 28px;
    }

    .mastering-image-wrapper {
        max-width: 300px;
    }

    .mastering-badge {
        transform: scale(0.85);
    }

    .badge-left {
        left: -40px;
    }
}

/* ==========================================================================
   Service Page - Launches Section Styles
   ========================================================================== */

.service-launches-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.launches-header {
    max-width: 900px;
    margin: 0 auto 50px;
}

.launches-heading {
    font-size: 40px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.launches-desc {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.launches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.launch-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
    aspect-ratio: 4 / 3;
}

.launch-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}

.launch-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
    transition: transform 0.5s ease;
}

.launch-card:hover img {
    transform: scale(1.05);
}

/* Hover Overlay Styles */
.launch-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 41, 59, 0.95);
    /* Deep dark blue overlay */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 20px;
    z-index: 10;
}

.launch-card:hover .launch-card-overlay {
    opacity: 1;
    visibility: visible;
}

.launch-overlay-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    margin-bottom: 25px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.launch-overlay-title {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    transition-delay: 0.05s;
    font-family: 'Outfit', sans-serif;
}

.launch-overlay-desc {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    transition-delay: 0.1s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.launch-overlay-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 6px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    align-self: flex-start;
    transform: translateY(20px);
    transition: transform 0.4s ease;
    transition-delay: 0.15s;
}

.launch-card:hover .launch-overlay-icon,
.launch-card:hover .launch-overlay-title,
.launch-card:hover .launch-overlay-desc,
.launch-card:hover .launch-overlay-badge {
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .launches-heading {
        font-size: 36px;
    }
}

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

    .launches-heading {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .launches-heading {
        font-size: 28px;
    }
}

/* ==========================================================================
   Service Page - Industries Section Styles
   ========================================================================== */

.service-industries-section {
    padding: 100px 0 120px 0;
    background-color: #f8fafc;
    /* Very light subtle background */
    position: relative;
    overflow: hidden;
}

.service-industries-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.industries-header {
    max-width: 950px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.industries-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 25px;
    font-family: 'Outfit', sans-serif;
}

.industries-desc {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 2;
    max-width: 1250px;
    margin: 0 auto;
}

.industry-card {
    background-color: var(--white);
    padding: 35px 20px;
    border-radius: 12px;
    text-align: center;
    width: calc(20% - 16px);
    /* 5 columns grid trick */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.industry-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: #e6f8ef;
    /* Light green */
    color: #22c55e;
    /* Theme green */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon-wrapper {
    background-color: #22c55e;
    color: var(--white);
    transform: scale(1.05);
}

.industry-title {
    font-size: 15px;
    font-weight: 800;
    color: var(--primary);
    margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
    .industry-card {
        width: calc(25% - 15px);
        /* 4 columns */
    }
}

@media (max-width: 992px) {
    .industries-heading {
        font-size: 32px;
    }

    .industry-card {
        width: calc(33.333% - 14px);
        /* 3 columns */
    }
}

@media (max-width: 768px) {
    .industries-heading {
        font-size: 28px;
    }

    .industry-card {
        width: calc(50% - 10px);
        /* 2 columns */
    }
}

@media (max-width: 480px) {
    .industry-card {
        width: 100%;
        /* 1 column */
    }
}

/* Industries CTA Box */
.industries-cta-box {
    margin: 80px auto 0;
    max-width: 1250px;
    background-color: var(--primary);
    border-radius: 12px;
    padding: 35px 50px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(11, 28, 57, 0.2);
}

.industries-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.industries-cta-text {
    font-size: 22px;
    font-weight: 500;
    color: var(--white);
    margin: 0;
    letter-spacing: 0.3px;
}

.btn-industries-cta {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 35px;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-industries-cta:hover {
    background-color: #f1f5f9;
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .industries-cta-box {
        padding: 35px 30px;
    }

    .industries-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .industries-cta-text {
        font-size: 20px;
        line-height: 1.4;
    }
}

/* ==========================================================================
   Service Page - Process Section Styles
   ========================================================================== */

.service-process-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    /* Removed overflow: hidden; to allow sticky image to work */
}

.process-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.process-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.process-desc {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.process-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-media {
    flex: 1;
    position: sticky;
    top: 100px;
}

.process-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.process-timeline {
    flex: 1.2;
    position: relative;
    padding-left: 30px;
}

/* Vertical dashed line */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 25px;
    bottom: 25px;
    left: 54px;
    /* Align with center of the 50px icon box + 30px padding */
    width: 2px;
    border-left: 2px dashed #cbd5e1;
    z-index: 1;
}

.process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-icon-box {
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary);
    flex-shrink: 0;
    margin-right: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.process-step:hover .step-icon-box {
    border-color: #0284c7;
    /* Theme blue highlight */
    color: #0284c7;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(2, 132, 199, 0.1);
}

.step-content {
    flex: 1;
    padding-top: 2px;
}

.step-label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #0284c7;
    margin-bottom: 6px;
}

.step-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 992px) {
    .process-content-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .process-media {
        position: static;
        margin-bottom: 50px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .process-heading {
        font-size: 32px;
    }

    .process-timeline::before {
        left: 44px;
    }

    .step-icon-box {
        margin-right: 20px;
    }
}

@media (max-width: 576px) {
    .process-timeline {
        padding-left: 0;
    }

    .process-timeline::before {
        display: none;
    }

    .process-step {
        flex-direction: column;
    }

    .step-icon-box {
        margin-bottom: 15px;
    }
}

/* ==========================================================================
   Service Page - Tech Stack Section Styles
   ========================================================================== */

.service-tech-stack-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

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

.tech-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.tech-desc {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
}

.tech-box {
    background-color: var(--white);
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1250px;
    margin: 0 auto;
}

.tech-box-left {
    flex: 2;
}

.tech-icons-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 20px;
    justify-content: center;
}

.tech-item {
    width: calc(14.28% - 18px);
    /* Approximate 7 items per row depending on width */
    min-width: 90px;
    text-align: center;
}

.tech-icon {
    font-size: 32px;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.3s ease;
}

.tech-item:hover .tech-icon {
    transform: translateY(-5px) scale(1.1);
}

.tech-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: block;
}

.tech-box-right {
    flex: 1;
    min-width: 350px;
}

.tech-services-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tech-service-item {
    background-color: #f8fafc;
    color: var(--primary);
    border: 1px solid #e2e8f0;
    padding: 18px 25px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.tech-service-item:hover {
    transform: translateX(5px);
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(11, 28, 57, 0.15);
}

.tech-service-item i {
    font-size: 20px;
    margin-right: 15px;
    color: var(--accent);
    transition: color 0.3s ease;
}

.tech-service-item:hover i {
    color: var(--white);
}

@media (max-width: 1100px) {
    .tech-box {
        flex-direction: column;
        padding: 50px 30px;
    }

    .tech-box-right {
        width: 100%;
        min-width: 100%;
    }

    .tech-item {
        width: calc(20% - 16px);
    }
}

@media (max-width: 768px) {
    .tech-heading {
        font-size: 32px;
    }

    .tech-item {
        width: calc(33.333% - 14px);
    }

    .tech-service-item {
        padding: 15px 20px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .tech-item {
        width: calc(50% - 10px);
    }
}

/* ==========================================================================
   Service Page - Leverage Section Styles
   ========================================================================== */

.service-leverage-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.leverage-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.leverage-desc {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
}

.leverage-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
    max-width: 1250px;
    margin-left: auto;
    margin-right: auto;
}

.leverage-text-content {
    flex: 1.2;
}

.benefit-block {
    margin-bottom: 30px;
}

.benefit-block:last-child {
    margin-bottom: 0;
}

.benefit-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.leverage-media {
    flex: 1;
    text-align: center;
}

.leverage-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Bottom CTA Banner */
.leverage-cta-box {
    background-color: var(--primary);
    border-radius: 16px;
    padding: 50px 40px;
    margin: 80px auto 0;
    max-width: 1100px;
    box-shadow: 0 20px 40px rgba(11, 28, 57, 0.15);
    position: relative;
    overflow: hidden;
}

.leverage-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

.leverage-cta-content {
    position: relative;
    z-index: 2;
}

.leverage-cta-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.btn-leverage-cta {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    padding: 15px 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-leverage-cta:hover {
    background-color: #7b14d1;
    /* Darker purple hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(var(--accent-rgb), 0.3);
    color: var(--white);
}

@media (max-width: 992px) {
    .leverage-content-wrapper {
        flex-direction: column-reverse;
    }

    .leverage-media {
        margin-bottom: 40px;
    }

    .leverage-cta-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .leverage-heading {
        font-size: 32px;
    }

    .leverage-cta-box {
        padding: 40px 20px;
    }
}

/* ==========================================================================
   Service Page - FAQ Section Styles
   ========================================================================== */

.service-faq-section {
    padding: 100px 0;
    background-color: #f8fafc;
}

.faq-header {
    max-width: 800px;
    margin: 0 auto 60px;
}

.faq-badge {
    display: inline-block;
    font-size: 16px;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.faq-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.faq-desc {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.faq-content-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    max-width: 1250px;
    margin: 0 auto;
}

.faq-media {
    flex: 1;
    position: sticky;
    top: 100px;
}

.faq-illustration {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 0 auto;
}

.faq-accordion-wrap {
    flex: 1.2;
}

/* Accordion Custom Styles */
.service-faq-section .accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 15px;
}

.service-faq-section .accordion-button {
    width: 100%;
    display: block;
    text-align: left;
    background-color: #f8fafc;
    /* Changed to match subtle bg */
    color: var(--primary);
    font-size: 16px;
    font-weight: 700;
    padding: 20px 70px 20px 25px;
    border-radius: 8px !important;
    border: none;
    box-shadow: none !important;
    position: relative;
    transition: all 0.3s ease;
}

.service-faq-section .accordion-button:hover {
    background-color: #f1f5f9;
}

.service-faq-section .accordion-button:not(.collapsed) {
    background-color: #f1f5f9;
    color: var(--primary);
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.service-faq-section .accordion-button::after {
    display: none;
    /* Hide default bootstrap arrow */
}

/* Custom + and - icon */
.service-faq-section .accordion-button::before {
    content: '\f067';
    /* FontAwesome Plus */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    transition: all 0.3s ease;
}

.service-faq-section .accordion-button:not(.collapsed)::before {
    content: '\f068';
    /* FontAwesome Minus */
    background-color: #cbd5e1;
    /* Gray background when open */
    color: var(--white);
    transform: translateY(-50%) rotate(180deg);
}

.service-faq-section .accordion-body {
    background-color: var(--white);
    padding: 25px;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
    border: 1px solid #eef2f6;
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.service-faq-section .accordion-collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.service-faq-section .accordion-collapse.show {
    /* Height will be set by JS dynamically for smooth animation */
}

@media (max-width: 992px) {
    .faq-content-wrapper {
        flex-direction: column;
    }

    .faq-media {
        position: static;
        margin-bottom: 40px;
        width: 100%;
    }
}

/* ==========================================================================
   Portfolio Page Styles
   ========================================================================== */

.portfolio-slider-section {
    position: relative;
    padding: 180px 0 60px;
    /* Reduced bottom padding to decrease spacing */
    z-index: 1;
}

.portfolio-bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: var(--white);
    z-index: -1;
}

.portfolio-bg-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background-color: var(--primary);
    /* Using theme primary color */
    z-index: -1;
}

.portfolio-slider-container {
    position: relative;
}

.portfolio-header {
    max-width: 800px;
    margin: 0 auto 50px;
    position: relative;
}

.portfolio-heading {
    font-size: 38px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.portfolio-desc {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.portfolio-nav-arrows {
    position: absolute;
    right: 15px;
    top: 30px;
    display: flex;
    gap: 15px;
    z-index: 10;
}

.nav-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.portfolio-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 500px;
}

.portfolio-slide {
    width: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.portfolio-card {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    min-height: 500px;
}

.portfolio-card-left {
    flex: 0 0 35%;
    padding: 60px 50px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

/* Dotted pattern */
.portfolio-card-left::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background-image: radial-gradient(#cbd5e1 2px, transparent 2px);
    background-size: 10px 10px;
    opacity: 0.6;
}

.port-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.port-subtitle {
    font-size: 16px;
    font-weight: 700;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.5;
}

.port-desc {
    font-size: 15px;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 30px;
}

.port-link {
    font-size: 16px;
    font-weight: 700;
    color: #f87171;
    /* Soft red/coral */
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
}

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

.portfolio-card-right {
    flex: 1;
    background-color: #21214e;
    /* Dark blue */
    display: flex;
    position: relative;
    overflow: hidden;
}

.port-right-content {
    flex: 0 0 45%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.port-logo-box {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 30px;
    margin-bottom: 25px;
}

.port-catchphrase {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.port-badge {
    display: inline-block;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
    align-self: flex-start;
}

.port-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.port-bullets li {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.9;
}

.port-bullets li::before {
    content: '';
    width: 5px;
    height: 5px;
    background-color: var(--white);
    border-radius: 50%;
}

.port-platforms {
    margin-top: auto;
}

.port-platforms span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    display: block;
    margin-bottom: 8px;
}

.platform-icons {
    display: flex;
    gap: 10px;
    font-size: 20px;
}

.port-right-image {
    flex: 1;
    position: relative;
}

.port-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
}

@media (max-width: 1200px) {
    .portfolio-nav-arrows {
        right: 0;
        top: 10px;
        bottom: auto;
    }
}

@media (max-width: 992px) {
    .portfolio-card {
        flex-direction: column;
    }

    .portfolio-card-left {
        flex: none;
        padding: 40px;
    }

    .port-right-content {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    .portfolio-card-right {
        flex-direction: column;
    }

    .port-right-image {
        min-height: 300px;
    }

    .portfolio-bg-bottom {
        height: 20%;
    }
}

/* Portfolio Grid Section */
.portfolio-grid-section {
    background-color: var(--primary);
    /* Using theme primary color */
    padding: 30px 0 100px;
    /* Reduced top padding to decrease spacing */
}

/* Constrain width of the portfolio sections to not be 1600px */
.portfolio-slider-container,
.portfolio-grid-section .container {
    max-width: 1240px;
    margin: 0 auto;
}

.portfolio-grid-header {
    margin-bottom: 60px;
}

.portfolio-badge {
    color: #a78bfa;
    /* Light purple */
    font-size: 18px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.portfolio-badge i {
    transform: rotate(45deg);
    /* Arrow angle matching the design */
    color: #10b981;
    /* Green color */
}

.portfolio-grid-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    font-family: 'Outfit', sans-serif;
}

.portfolio-grid-desc {
    font-size: 16px;
    color: #cbd5e1;
    max-width: 800px;
    line-height: 1.7;
}

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

.project-grid-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 10;
    /* Changed from 4/3 to make images shorter/more rectangular */
    transition: transform 0.3s ease;
    background-color: #2a2a5a;
}

.project-grid-card:hover {
    transform: translateY(-10px);
}

.project-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.btn-load-more {
    display: inline-block;
    padding: 12px 35px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
}

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

@media (max-width: 768px) {
    .portfolio-projects-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid-title {
        font-size: 32px;
    }
}

/* Project Card Hover Overlay */
.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #2a2b5a;
    /* Smooth solid dark blue */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 2;
}

.project-grid-card:hover .project-card-overlay {
    opacity: 1;
    visibility: visible;
}

.overlay-logo {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 20px;
}

.overlay-title {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.overlay-desc {
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
}

.overlay-badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

/* ==========================================================================
   Blog Page Styles
   ========================================================================== */

.blog-hero-section {
    background-color: var(--primary);
    padding: 180px 0 100px;
    /* Increased top padding to 180px to push heading down */
    position: relative;
    overflow: hidden;
}

.blog-hero-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    position: relative;
    z-index: 2;
}

/* Decorative circle */
.hero-circle-decorator {
    position: absolute;
    bottom: -150px;
    right: -50px;
    width: 300px;
    height: 300px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.blog-grid-section {
    padding: 80px 0;
    background-color: var(--white);
}

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

.blog-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-category {
    display: inline-block;
    padding: 4px 12px;
    background-color: #e0e7ff;
    color: #4338ca;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.blog-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.blog-title a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--accent);
}

.blog-excerpt {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 25px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    font-size: 24px;
    overflow: hidden;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
}

.post-date {
    font-size: 12px;
    color: #94a3b8;
}

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

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

    .blog-hero-title {
        font-size: 36px;
    }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */

.contact-page-wrapper {
    background-color: #f8fafc;
}

.contact-page-wrapper .container {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
}

.contact-hero-section {
    background-color: var(--primary);
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.contact-hero-section .row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    /* Set a clean, controlled gap */
}

.contact-hero-section .col-lg-6 {
    flex: 1;
    min-width: 300px;
}

.contact-hero-section .col-lg-6:first-child {
    max-width: 600px;
}

.contact-hero-section .col-lg-6:last-child {
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.contact-hero-title {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 20px;
}

.contact-hero-subtitle {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 35px;
}

.contact-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
}

.contact-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.5;
}

.contact-features-list .feature-icon {
    width: 28px;
    height: 28px;
    background-color: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #10b981;
    flex-shrink: 0;
    font-size: 12px;
    margin-top: 3px;
}

.contact-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    background-color: var(--white);
    padding: 10px 30px 10px 15px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-hero-phone .phone-circle {
    width: 50px;
    height: 50px;
    background-color: #911cf3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
}

.contact-hero-phone .phone-number {
    font-size: 28px;
    font-weight: 800;
    color: #911cf3;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s ease;
}

.contact-hero-phone .phone-number:hover {
    color: var(--accent);
}

/* Floating Mockup styling */
.contact-hero-image-wrapper {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.contact-hero-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.floating-bubble {
    position: absolute;
    width: 55px;
    height: 55px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    font-size: 20px;
    color: var(--primary);
    z-index: 10;
}

.bubble-phone {
    top: 50%;
    left: -27px;
    transform: translateY(-50%);
    background-color: var(--primary);
    color: var(--white);
}

.bubble-mail {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    font-size: 26px;
    background-color: var(--primary);
    color: var(--white);
    border: 4px solid var(--white);
}

.bubble-at {
    top: 50%;
    right: -27px;
    transform: translateY(-50%);
    background-color: var(--primary);
    color: var(--white);
}

/* Cards Section */
.contact-cards-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

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

.contact-cards-section .col-md-4 {
    flex: 1;
    min-width: 250px;
}

.contact-info-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease;
}

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

.contact-info-card .card-icon {
    font-size: 32px;
    color: #911cf3;
    margin-bottom: 25px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #911cf3;
    margin-bottom: 15px;
    font-family: 'Outfit', sans-serif;
}

.contact-info-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

.card-btn-link {
    font-size: 15px;
    font-weight: 700;
    color: #911cf3;
    text-decoration: none;
    border-bottom: 2px solid #911cf3;
    padding-bottom: 3px;
    transition: all 0.3s ease;
}

.card-btn-link:hover {
    color: var(--accent);
    border-color: var(--accent);
}

.card-btn-solid {
    display: inline-block;
    width: 100%;
    padding: 12px 0;
    background-color: #911cf3;
    color: var(--white);
    font-weight: 700;
    font-size: 15px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    /* Centered the text inside the button */
    transition: background-color 0.3s ease;
}

.card-btn-solid:hover {
    background-color: var(--accent);
    color: var(--white);
}

.card-btn-phone {
    font-size: 18px;
    font-weight: 800;
    color: #911cf3;
    text-decoration: none;
    font-family: 'Outfit', sans-serif;
    transition: color 0.3s ease;
}

.card-btn-phone:hover {
    color: var(--accent);
}

/* Form and Address Section */


.contact-form-section {
    padding: 80px 0 100px;
    background-color: #f3f6fa;
}

.contact-form-section>.container>.row {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.contact-form-section .col-lg-5 {
    flex: 0 0 calc(41.66% - 20px);
}

.contact-form-section .col-lg-7 {
    flex: 0 0 calc(58.33% - 20px);
}

.location-detail-card {
    background-color: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.skyline-image-wrapper {
    margin-bottom: 25px;
    text-align: center;
    width: 100%;
}

.skyline-img {
    max-width: 180px;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.85);
}

.country-name {
    font-size: 24px;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
}

.location-detail-card .divider {
    width: 60px;
    height: 2px;
    background-color: #cbd5e1;
    margin: 10px 0 25px 0;
}

.company-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 15px;
}

.company-address {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 20px;
}

.company-phone a {
    font-size: 18px;
    font-weight: 800;
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.company-phone a:hover {
    color: #7b14d1;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: var(--accent);
    text-decoration: none;
    margin-top: 25px;
    transition: color 0.3s ease;
}

.map-link:hover {
    color: #7b14d1;
}

/* Contact Form Box styling */
.contact-form-box {
    padding-left: 20px;
}

.form-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--accent);
    font-family: 'Outfit', sans-serif;
    margin-bottom: 15px;
}

.form-subtitle {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 35px;
}

.consultation-form .row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.consultation-form .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    padding-right: 12px;
    padding-left: 12px;
    box-sizing: border-box;
}

@media (max-width: 767px) {
    .consultation-form .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
    }
}

.consultation-form .form-group {
    margin-bottom: 24px;
}

.consultation-form .form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    color: #334155;
    background-color: var(--white);
    text-align: left;
    transition: all 0.3s ease;
}

.consultation-form .form-control::placeholder {
    color: #94a3b8;
}

.consultation-form .form-control:focus {
    border-color: var(--accent);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(145, 28, 243, 0.1);
    outline: none;
}

/* Dummy Recaptcha Styling */
.recaptcha-placeholder-box {
    border: 1px solid #d1d5db;
    background-color: #f9fafb;
    border-radius: 4px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 300px;
    margin: 0 auto 30px auto;
}

.recaptcha-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.recaptcha-inner input {
    width: 24px;
    height: 24px;
    cursor: pointer;
}

.recaptcha-inner label {
    font-size: 14px;
    font-weight: 500;
    color: #4b5563;
    margin: 0;
    cursor: pointer;
}

.recaptcha-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    color: #9ca3af;
}

.recaptcha-logo span {
    font-size: 8px;
    margin-top: 3px;
    font-weight: bold;
}

.btn-submit-consultation {
    display: block;
    width: 100%;
    padding: 16px 0;
    background-color: var(--accent);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-submit-consultation:hover {
    background-color: #7b14d1;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--accent-rgb), 0.3);
}

@media (max-width: 991px) {
    .contact-hero-section .row {
        flex-direction: column;
        align-items: stretch;
        gap: 50px;
    }

    .contact-hero-section .col-lg-6 {
        max-width: 100% !important;
        width: 100%;
    }

    .contact-hero-image-wrapper {
        margin-top: 40px;
    }

    .contact-form-box {
        padding-left: 0;
        margin-top: 50px;
    }

    .contact-form-section .row {
        flex-direction: column;
        gap: 40px;
    }

    .contact-form-section .col-lg-5,
    .contact-form-section .col-lg-7 {
        flex: 1 1 100%;
        max-width: 100% !important;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-cards-section .row {
        flex-direction: column;
        gap: 20px;
    }
}