:root {
    --color-primary: #e2a926;
    --color-primary-dark: #cfa018;
    --color-dark: #121212;
    --color-dark-lighter: #1a1a1a;
    --color-gray: #f5f5f5;
    --color-text: #333333;
    --color-text-light: #777777;
    --color-white: #ffffff;
    --font-primary: 'Kanit', sans-serif;
    --font-secondary: 'Kanit', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html,
body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

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

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

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

@media(max-width: 900px) {

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

h1 {
    font-size: 5rem;
    letter-spacing: -2px;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 1.5rem;
}

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

.text-stroke {
    -webkit-text-stroke: 1px var(--color-text);
    color: transparent;
}

.italic-text {
    font-style: italic;
    font-family: var(--font-primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    gap: 10px;
}

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

.btn-primary:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-dark);
    box-shadow: 0 10px 20px rgba(226, 169, 38, 0.3);
    transform: translateY(-3px);
}

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

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

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

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

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

.btn.outlined:hover {
    background: var(--color-dark);
    color: var(--color-white);
}

.blob-btn {
    z-index: 1;
    position: relative;
    padding: 12px 30px;
    text-align: center;
    text-transform: uppercase;
    color: var(--color-dark);
    font-size: 0.9rem;
    font-weight: 700;
    outline: none;
    border: none;
    transition: color 0.5s;
    cursor: pointer;
    border-radius: 30px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    white-space: nowrap;
}

.blob-btn:before {
    content: "";
    z-index: 1;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-dark);
    border-radius: 30px;
    transition: border-color 0.5s;
    pointer-events: none;
}

.blob-btn:hover {
    color: var(--color-dark);
    border-radius: 30px;
}

.blob-btn:hover:before {
    border-color: var(--color-primary);
}

.blob-btn__inner {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
    background: transparent;
}

.blob-btn__blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
}

.blob-btn__blob {
    position: absolute;
    top: 0;
    width: 25%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1);
    transition: transform 0.45s;
}

@supports(filter: url('#goo')) {
    .blob-btn__blob {
        transform: translate3d(0, 150%, 0) scale(1.4);
    }
}

.blob-btn__blob:nth-child(1) {
    left: 0%;
    transition-delay: 0s;
}

.blob-btn__blob:nth-child(2) {
    left: 30%;
    transition-delay: 0.08s;
}

.blob-btn__blob:nth-child(3) {
    left: 60%;
    transition-delay: 0.16s;
}

.blob-btn__blob:nth-child(4) {
    left: 90%;
    transition-delay: 0.24s;
}

.blob-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(2.2);
}

@supports(filter: url('#goo')) {
    .blob-btn:hover .blob-btn__blob {
        transform: translateZ(0) scale(1.9);
    }
}

/* Blob Button Dark Variant */
.blob-btn-dark {
    color: var(--color-primary);
}

.blob-btn-dark .blob-btn__inner {
    background-color: var(--color-dark-lighter);
}

.blob-btn-dark:before {
    border-color: var(--color-primary);
}

.blob-btn-dark:hover {
    color: var(--color-dark);
}

/* Blob Button White Variant */
.blob-btn-white {
    color: var(--color-dark);
}

.blob-btn-white .blob-btn__inner {
    background-color: var(--color-white);
}

.blob-btn-white:before {
    border-color: var(--color-white);
}

.blob-btn-white:hover {
    color: var(--color-dark);
}

/* Header */
.site-header {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    display: inline-block;
}

.custom-logo-link img,
.site-branding img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
}

.sp-text {
    display: block;
}

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

.menu-toggle {
    display: none;
}

.nav-menu {
    display: flex;
    gap: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu>li {
    position: relative;
    padding: 15px 0;
}

.nav-menu li a {
    display: block;
    transition: var(--transition);
}

.nav-menu li a:hover {
    color: var(--color-primary);
}

/* Submenu Styles */
.nav-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-white);
    min-width: 240px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-top: 3px solid var(--color-primary);
    border-radius: 0 0 8px 8px;
    padding: 15px 0;
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Submenu visibility on hover */
.nav-menu li:hover>.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .sub-menu li {
    padding: 0;
    position: relative;
    width: 100%;
}

.nav-menu .sub-menu a {
    padding: 12px 25px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    text-transform: none;
    /* Submenus look cleaner without uppercase sometimes, or keep it */
    text-transform: uppercase;
}

.nav-menu .sub-menu a:hover {
    color: var(--color-primary);
    background-color: var(--color-gray);
    padding-left: 30px;
}

/* Support for Multi-level Dropdowns (Deep nesting) */
.nav-menu .sub-menu .sub-menu {
    top: -3px;
    /* Align with parent menu item */
    left: 100%;
    border-top: none;
    border-left: 3px solid var(--color-primary);
    border-radius: 0 8px 8px 8px;
}

/* Hero Section */
.hero-section {
    padding: 150px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: radial-gradient(circle at 75% 50%, rgba(23, 23, 37, 0.4) 0%, rgba(8, 8, 12, 0.5) 100%), url('http://localhost/spacemanstudios/wp-content/uploads/2026/02/space_texture_1772082870634.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}

.hero-side-text {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.75rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    z-index: 10;
    writing-mode: vertical-rl;
    white-space: nowrap;
}

.hero-side-text a {
    white-space: nowrap;
}

.hero-side-text a:hover {
    color: var(--color-primary);
}

.hero-side-text .sep {
    width: 1px;
    height: 60px;
    background-color: var(--color-primary);
}

.left-side {
    left: 20px;
    transform: translateY(-50%) rotate(180deg);
}

.right-side {
    right: 30px;
    transform: translateY(-50%);
}

.subtitle {
    font-weight: 400;
    letter-spacing: 4px;
    font-size: 1.1rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.hero-title {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    line-height: 0.9;
}

.hero-title .text-stroke {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.7);
    color: transparent;
}

.hero-desc-box {
    max-width: 600px;
    padding-left: 20px;
    border-left: 3px solid var(--color-primary);
}

.hero-desc-box p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
}

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

.happy-clients {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-faces {
    display: flex;
}

.client-faces img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: 3px solid var(--color-white);
    margin-left: -20px;
    object-fit: cover;
}

.client-faces img:first-child {
    margin-left: 0;
}

.client-text {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-white);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-shape-gold {
    position: absolute;
    right: 15%;
    top: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(226, 169, 38, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
}

.astronaut-img {
    position: relative;
    z-index: 1;
    max-height: 120%;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.4));
}

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

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

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

/* Stats Section */
.stats-section {
    padding: 100px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.stats-content {
    min-width: 0;
}

.section-label {
    font-weight: 600;
    letter-spacing: 4px;
    font-size: 1.1rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* Stats Custom Header Nav */
.stats-carousel-header {
    display: flex;
    align-items: center;
    margin-top: 40px;
    margin-bottom: 30px;
    width: 100%;
}

.carousel-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-dark);
    margin-right: 20px;
    white-space: nowrap;
}

.carousel-line {
    flex-grow: 1;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.4);
    margin-right: 40px;
}

.carousel-nav {
    display: flex;
    gap: 25px;
    align-items: center;
}

.carousel-nav button {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-dark);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.carousel-nav button:hover {
    color: var(--color-primary);
    transform: scale(1.1);
}

.stats-grid {
    width: 100%;
}

.stats-grid.owl-carousel .owl-nav,
.stats-grid.owl-carousel .owl-dots {
    display: none !important;
}

.stat-item {
    background: var(--color-white);
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(226, 169, 38, 0.08), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(226, 169, 38, 0.12);
    border-color: rgba(226, 169, 38, 0.2);
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item h3 {
    font-size: 3.2rem;
    color: var(--color-dark);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: inline-block;
}

.stat-item:hover h3 {
    transform: scale(1.08) translateX(5px);
}

.stat-item p {
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--color-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.stat-item span {
    color: var(--color-text-light);
    font-size: 1rem;
    line-height: 1.6;
    display: block;
}

/* Rocket Image Composition */
.rocket-image-composition {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
    padding: 30px;
}

.rocket-shape-outline {
    position: absolute;
    top: 10px;
    left: 50px;
    width: calc(100% - 60px);
    height: 100%;
    border: 2px solid var(--color-primary);
    border-radius: 250px 250px 20px 20px;
    z-index: 1;
}

.main-rocket-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 250px 250px 20px 20px;
    /* Rocket/Arch Masking */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.floating-capsule-img {
    position: absolute;
    bottom: 40px;
    left: -50px;
    width: 250px;
    z-index: 3;
    border-radius: 200px 200px 20px 20px;
    /* Mirroring the rocket shape */
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.2);
    border: 6px solid var(--color-white);
    animation: float 6s ease-in-out infinite alternate;
}

@media(max-width: 900px) {
    .floating-capsule-img {
        width: 180px;
        left: -10px;
        bottom: 20px;
    }

    .main-rocket-img {
        height: 500px;
    }
}

/* Services Section */
.bg-light {
    background: var(--color-gray);
}

.services-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* Spacious gap between text blocks */
}

.section-header .section-label {
    margin-bottom: 0;
    min-width: 140px;
}

.section-header h2 {
    max-width: 600px;
    margin: 0;
    flex-grow: 1;
    /* Pushes the button to the right side if there's space */
}


.section-header.split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
}

@media(max-width: 900px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 50px;
    }
}

.section-header.split h2 {
    margin: 0;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    align-items: center;
    padding: 30px 40px;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
}

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

/* Base Text */
.service-text {
    flex-grow: 1;
    z-index: 2;
}

.service-text h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    transition: color 0.7s ease;
}

.service-text p {
    color: var(--color-text-light);
    font-size: 1rem;
    margin: 0;
    transition: color 0.7s ease;
}

/* Service Item Icons */
.service-icon-left {
    font-size: 2.2rem;
    color: var(--color-primary);
    width: 60px;
    flex-shrink: 0;
    transition: color 0.7s ease;
    z-index: 2;
}

.service-icon-right {
    font-size: 1.2rem;
    color: var(--color-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
    transition: background 0.7s ease, color 0.7s ease, transform 0.7s ease;
    z-index: 2;
}

/* Hover Content Physics */
.service-item:hover h3,
.service-item:hover p,
.service-item:hover .service-icon-left {
    color: var(--color-white);
}

.service-item:hover .service-icon-right {
    background: rgba(255, 255, 255, 0.2);
    color: var(--color-white);
    transform: rotate(-45deg);
}

/* Blob Effects For Service Items */
.service-item .blob-btn__inner {
    border-radius: 10px;
    background: transparent;
}

.service-item .blob-btn__blob {
    background: var(--color-dark);
    /* Rises up as a dark shadow */
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover .blob-btn__blob {
    transform: translateZ(0) scale(1.7);
}

/* Mobile Responsive For Service Items */
@media(max-width: 768px) {
    .service-item {
        padding: 20px 15px;
        gap: 15px;
    }

    .service-icon-left {
        font-size: 1.6rem;
        width: 40px;
        text-align: center;
    }

    .service-text h3 {
        font-size: 1.05rem;
        margin-bottom: 2px;
    }

    .service-text p {
        font-size: 0.85rem;
        line-height: 1.4;
    }

    .service-icon-right {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Brands Section (Honeycomb) */
.brands-section {
    padding: 0px 20px 80px 20px;
    background: var(--color-gray);
}

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

.brands-header-custom {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 60px;
}

.brands-header-custom h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #111;
    text-align: center;
}

.brands-header-custom h2 span {
    color: var(--color-primary);
}

@media (max-width: 768px) {
    .brands-header-custom {
        margin: 0 auto 20px;
    }

    .brands-header-custom h2 {
        font-size: 2.2rem !important;
    }
}

.honeycomb-custom-grid {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 30px 0 50px;
    display: flex;
    justify-content: center;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.honeycomb-custom-grid::-webkit-scrollbar {
    display: none;
}

.custom-honeycomb-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: max-content;
    padding: 0 20px;
}

.custom-hex-row {
    display: flex;
    justify-content: center;
}

.custom-hex-row+.custom-hex-row {
    margin-top: -21px;
}

.custom-hex-row .hex-wrap {
    margin: 0 6px;
    transition: transform 0.4s ease;
}

@media (max-width: 1000px) {
    .honeycomb-custom-grid {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .custom-hex-row .hex {
        width: 80px;
        height: 92px;
    }

    .custom-hex-row .hex-wrap {
        margin: 0 4px;
    }

    .custom-hex-row+.custom-hex-row {
        margin-top: -15px;
    }

    .honeycomb-custom-grid {
        padding: 20px 0 40px;
    }
}

.honeycomb-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* max-width: 1200px; */
    margin: 0 auto;
    padding: 0;
}

.honeycomb-side {
    display: flex;
    flex-direction: column;
}

.side-left {
    align-items: flex-end;
    /* right-align left cluster */
    margin-right: 22px;
    z-index: 1;
}

.side-right {
    align-items: flex-start;
    /* left-align right cluster */
    margin-left: 22px;
    z-index: 1;
}

/* Base Hexagon Cell */
.hex-row {
    display: flex;
    gap: 12px;
    /* Horizontal gap */
}

/* Offset positioning to create interlocking honeycomb. */
.hex-row+.hex-row {
    margin-top: -21px;
    /* Overlaps vertically to precisely match 12px diagonal gap */
}

/* Offset the middle row by exactly half a hex (width/2 + gap/2) = (110+12)/2 = 61px */
.side-left .offset-left {
    margin-right: 61px;
}

.side-right .offset-right {
    margin-left: 61px;
}

.hex-wrap {
    filter: drop-shadow(0px 8px 12px rgba(0, 0, 0, 0.06));
    transition: transform 0.4s ease;
}

.hex-wrap:hover {
    transform: translateY(-5px) scale(1.05);
    z-index: 5;
}

.hex {
    width: 110px;
    height: 126px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 110 126' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50.4 3.7C52.6 2.4 55.4 2.4 57.6 3.7L104.9 31C107.1 32.3 108.5 34.7 108.5 37.3V90.7C108.5 93.3 107.1 95.7 104.9 97L57.6 124.3C55.4 125.6 52.6 125.6 50.4 124.3L3.1 97C0.9 95.7 -0.5 93.3 -0.5 90.7V37.3C-0.5 34.7 0.9 32.3 3.1 31L50.4 3.7Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 110 126' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50.4 3.7C52.6 2.4 55.4 2.4 57.6 3.7L104.9 31C107.1 32.3 108.5 34.7 108.5 37.3V90.7C108.5 93.3 107.1 95.7 104.9 97L57.6 124.3C55.4 125.6 52.6 125.6 50.4 124.3L3.1 97C0.9 95.7 -0.5 93.3 -0.5 90.7V37.3C-0.5 34.7 0.9 32.3 3.1 31L50.4 3.7Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex img {
    max-width: 65%;
    max-height: 65%;
    object-fit: contain;
}

/* The giant center piece */
.honeycomb-center {
    z-index: 10;
    position: relative;
}

.hex-large-wrap {
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.25));
}

.hex-large {
    width: 250px;
    height: 288px;
    background: linear-gradient(180deg, #d2a4f6, #7a3e9c 60%, #e2a926);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 110 126' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50.4 3.7C52.6 2.4 55.4 2.4 57.6 3.7L104.9 31C107.1 32.3 108.5 34.7 108.5 37.3V90.7C108.5 93.3 107.1 95.7 104.9 97L57.6 124.3C55.4 125.6 52.6 125.6 50.4 124.3L3.1 97C0.9 95.7 -0.5 93.3 -0.5 90.7V37.3C-0.5 34.7 0.9 32.3 3.1 31L50.4 3.7Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 110 126' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50.4 3.7C52.6 2.4 55.4 2.4 57.6 3.7L104.9 31C107.1 32.3 108.5 34.7 108.5 37.3V90.7C108.5 93.3 107.1 95.7 104.9 97L57.6 124.3C55.4 125.6 52.6 125.6 50.4 124.3L3.1 97C0.9 95.7 -0.5 93.3 -0.5 90.7V37.3C-0.5 34.7 0.9 32.3 3.1 31L50.4 3.7Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex-large-inner {
    width: 236px;
    height: 272px;
    background: radial-gradient(circle at bottom, #2b1338, #0a0a0f 80%);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 110 126' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50.4 3.7C52.6 2.4 55.4 2.4 57.6 3.7L104.9 31C107.1 32.3 108.5 34.7 108.5 37.3V90.7C108.5 93.3 107.1 95.7 104.9 97L57.6 124.3C55.4 125.6 52.6 125.6 50.4 124.3L3.1 97C0.9 95.7 -0.5 93.3 -0.5 90.7V37.3C-0.5 34.7 0.9 32.3 3.1 31L50.4 3.7Z' fill='white'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 110 126' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50.4 3.7C52.6 2.4 55.4 2.4 57.6 3.7L104.9 31C107.1 32.3 108.5 34.7 108.5 37.3V90.7C108.5 93.3 107.1 95.7 104.9 97L57.6 124.3C55.4 125.6 52.6 125.6 50.4 124.3L3.1 97C0.9 95.7 -0.5 93.3 -0.5 90.7V37.3C-0.5 34.7 0.9 32.3 3.1 31L50.4 3.7Z' fill='white'/%3E%3C/svg%3E");
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    /* Colored glowing border trick */
    box-shadow: inset 0 -20px 40px rgba(226, 169, 38, 0.2), inset 0 20px 40px rgba(122, 62, 156, 0.2);
}

.hex-large-inner span {
    font-size: 6rem;
    font-weight: 900;
    color: transparent;
    background: linear-gradient(180deg, #b76cda 20%, #e2a926 80%);
    -webkit-background-clip: text;
    background-clip: text;
}

/* Mobile Responsive Column Stack */
@media(max-width: 1000px) {
    .brands-section {
        overflow-x: hidden;
    }

    .brands-wrapper-card {
        padding: 40px 15px;
    }
}

@media(max-width: 600px) {
    .brands-section {
        padding: 0px 5px 30px 5px;
    }

    .brands-wrapper-card {
        padding: 30px 5px 0 5px;
    }
}

/* Modern Why Choose Us Section */
.choose-us-section {
    padding: 80px 20px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Background floating elements */
.choose-us-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(122, 62, 156, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -200px;
    border-radius: 50%;
    z-index: 0;
}

.choose-us-container {
    position: relative;
    z-index: 1;
    align-items: center;
    gap: 60px;
}

/* Image Wrapper with Experience Badge */
.choose-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.choose-image-bg {
    position: absolute;
    width: 80%;
    height: 90%;
    background: linear-gradient(135deg, #f0eef5, #fdfcff);
    border-radius: 30px;
    z-index: -1;
    transform: rotate(-3deg);
    transition: transform 0.6s ease;
}

.choose-image-wrapper:hover .choose-image-bg {
    transform: rotate(0deg) scale(1.02);
}

.floating-img {
    border-radius: 20px;
    max-width: 90%;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    animation: float 6s ease-in-out infinite;
}

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

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

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

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 10px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(122, 62, 156, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 5px solid #7a3e9c;
    animation: bounce-slow 4s ease-in-out infinite alternate;
}

@keyframes bounce-slow {
    0% {
        transform: translateY(0px);
    }

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

.exp-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
    background: linear-gradient(135deg, #7a3e9c, #e2a926);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.exp-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
    line-height: 1.3;
}

/* Content Area */
.choose-content-header {
    text-align: center;
}

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

.text-uppercase {
    text-transform: uppercase;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(122, 62, 156, 0.1);
    color: #7a3e9c;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 30px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.modern-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #111;
}

.text-gradient {
    background: linear-gradient(135deg, #7a3e9c, #e2a926);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.choose-content .desc-text {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Features List Modern */
.features-list-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

.feature-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(to right, rgba(122, 62, 156, 0.03), rgba(226, 169, 38, 0.03));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.feature-card.active,
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(122, 62, 156, 0.08);
    border-color: rgba(122, 62, 156, 0.1);
}

.feature-card.active::after,
.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon.gradient-1 {
    background: linear-gradient(135deg, #8146a8, #5a287d);
    box-shadow: 0 8px 20px rgba(129, 70, 168, 0.3);
}

.feature-icon.gradient-2 {
    background: linear-gradient(135deg, #e2a926, #c28b18);
    box-shadow: 0 8px 20px rgba(226, 169, 38, 0.3);
}

.feature-icon.gradient-3 {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 8px 20px rgba(79, 172, 254, 0.3);
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

@media(max-width: 900px) {
    .choose-us-container {
        grid-template-columns: 1fr;
    }

    .experience-badge {
        bottom: -20px;
        right: 50%;
        transform: translateX(50%);
        animation: none;
    }

    .features-list-modern {
        grid-template-columns: 1fr;
    }

    .modern-heading {
        font-size: 2.3rem;
    }
}

/* Gallery Section */
.dark-bg {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 100px 0;
}

.gallery-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    justify-content: center;
}

.filter-btn {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-dark);
    border-color: var(--color-primary);
}

.filter-btn:hover {
    color: var(--color-dark);
    border-color: var(--color-primary);
    background: transparent;
    /* Allows blobs to show through */
}

/* Connect the blob inner logic */
.filter-btn .blob-btn__inner {
    border-radius: 30px;
}

/* Trigger blob scales on filter-btn hover */
.filter-btn:hover .blob-btn__blob {
    transform: translateZ(0) scale(2.2);
}

@supports(filter: url('#goo')) {
    .filter-btn:hover .blob-btn__blob {
        transform: translateZ(0) scale(1.9);
    }
}

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

.g-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.g-item:hover img {
    transform: scale(1.1);
}

.g-item.span-2 {
    grid-column: span 2;
}

.g-item.tall {
    grid-row: span 2;
    height: 620px;
}

/* Mobile Responsive For Gallery */
@media(max-width: 991px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width: 768px) {
    .gallery-filters {
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
        /* Hide scrollbar for a cleaner look */
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .gallery-filters::-webkit-scrollbar {
        display: none;
    }

    .filter-btn {
        flex-shrink: 0;
        font-size: 0.75rem;
        padding: 8px 16px;
    }

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

    .g-item,
    .g-item.tall {
        height: 350px;
        /* Standardize height for all items on mobile */
        grid-column: span 1;
        grid-row: span 1;
    }

    .g-item.span-2 {
        grid-column: span 1;
        height: 250px;
    }
}

/* Workforce */
.workforce-section {
    padding: 100px 0;
}

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

.team-member {
    text-align: center;
    background: var(--color-white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.team-member img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 20px;
    height: 250px;
    object-fit: cover;
}

.member-info h5 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.member-info p {
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Footer */
.modern-footer {
    background: #f4f4f4;
    color: #222;
    padding-top: 80px;
    font-size: 0.95rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top-row {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 20px;
}

.footer-left-col {
    flex: 1 1 50%;
    padding-right: 20px;
}

.footer-right-col {
    flex: 1 1 40%;
    display: flex;
    flex-direction: column;
}

.footer-logo {
    max-width: 250px;
    margin-bottom: 20px;
}

.footer-main-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.6;
    max-width: 500px;
    font-weight: 400;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
    border-left: 4px solid #e2a926;
    padding-left: 15px;
    display: inline-block;
    letter-spacing: 0.5px;
}

.footer-contact-block {
    display: flex;
    gap: 30px;
    margin-top: 50px;
    align-items: flex-start;
}

.contact-info-wrap {
    flex: 1;
}

.contact-map-wrap {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    mix-blend-mode: multiply;
}

.footer-map {
    max-width: 300px;
    width: 100%;
    object-fit: contain;
    filter: grayscale(1) contrast(1.2) brightness(1.1);
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    color: #333;
    font-weight: 400;
    align-items: flex-start;
}

.contact-list i {
    color: #111;
    font-size: 1.2rem;
    margin-top: 3px;
}

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

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

.footer-links li {
    margin-bottom: 18px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-divider-hz {
    height: 1px;
    background: #ccc;
    margin: 40px 0;
    width: 100%;
}

.footer-social-block .social-sq-links {
    display: flex;
    gap: 12px;
}

.sq-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #dfb230;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.sq-social-btn:hover {
    background: #c99c1b;
    color: white;
}

.footer-bottom {
    border-top: 1px solid #ddd;
    padding: 25px 0;
    margin-top: 40px;
    position: relative;
    background: #ebebeb;
}

.footer-bottom .bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    margin: 0;
    color: #333;
    font-weight: 600;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: 600;
}

.legal-links a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #e2a926;
}

.legal-links .sep {
    color: #999;
}

#backToTop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: #dfb230;
    color: white;
    border-radius: 4px;
    margin-left: 20px;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

#backToTop:hover {
    background: #c99c1b;
}

@media(max-width: 900px) {
    .footer-top-row {
        flex-direction: column;
    }

    .footer-contact-block {
        flex-direction: column;
    }

    .contact-map-wrap {
        justify-content: flex-start;
    }

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

    #backToTop {
        position: absolute;
        top: -60px;
        right: 20px;
    }
}

.header-drawer {
    display: contents;
}

/* =======================================
   Responsive / Mobile Optimizations
======================================= */

@media(max-width: 991px) {
    .header-container {
        flex-wrap: wrap;
    }

    /* Hamburger Menu Toggle */
    .menu-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 10px 0;
        z-index: 1050;
    }

    .hamburger-box {
        display: inline-block;
        width: 30px;
        height: 20px;
        position: relative;
    }

    .hamburger-inner,
    .hamburger-inner::before,
    .hamburger-inner::after {
        content: '';
        display: block;
        width: 100%;
        height: 3px;
        background-color: var(--color-dark);
        border-radius: 4px;
        position: absolute;
        transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease, opacity 0.2s ease, background-color 0s 0.1s;
    }

    .hamburger-inner {
        top: 50%;
        transform: translateY(-50%);
    }

    .hamburger-inner::before {
        top: -8px;
    }

    .hamburger-inner::after {
        bottom: -8px;
    }

    /* Active Hamburger Pattern */
    .menu-toggle.is-active .hamburger-inner {
        background-color: transparent;
    }

    .menu-toggle.is-active .hamburger-inner::before {
        top: 0;
        transform: rotate(45deg);
    }

    .menu-toggle.is-active .hamburger-inner::after {
        bottom: 0;
        transform: rotate(-45deg);
    }

    /* Side Drawer Layout */
    .header-drawer {
        position: fixed;
        top: 0;
        right: -80%;
        width: 70%;
        height: 100vh;
        /* Better mobile viewport support */
        background-color: var(--color-white);
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 80px 30px 40px;
        transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1040;
        gap: 20px;
        overflow-y: auto;
    }

    .header-drawer.is-open {
        right: 0;
    }

    .main-navigation {
        width: 100%;
    }

    /* Override Desktop Nav Menu */
    .nav-menu {
        display: flex !important;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        gap: 0;
        /* Reduced immense gap between items */
        padding: 0;
    }

    .nav-menu>li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-menu>li:last-child {
        border-bottom: none;
    }

    .nav-menu li a {
        padding: 12px 0;
        display: block;
        font-size: 1.1rem;
    }

    /* Submenus explicitly formatted for drawer */
    .nav-menu .sub-menu {
        position: static;
        box-shadow: none;
        display: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        border-top: none;
        padding: 0 0 10px 15px;
        background: transparent;
    }

    .nav-menu .sub-menu a {
        padding: 8px 0;
        font-size: 0.95rem;
    }

    .nav-menu li:hover>.sub-menu,
    .nav-menu li.menu-item-has-children:active>.sub-menu {
        display: block;
    }

    /* Drawer Call to action at bottom */
    .header-drawer .header-cta {
        display: block;
        margin-top: auto;
        width: 100%;
        padding-top: 30px;
    }

    .header-drawer .header-cta .blob-btn {
        width: 100%;
    }

    /* Hero Section Responsive */
    h1,
    .hero-title {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-image {
        display: none;
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .hero-actions .blob-btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .hero-side-text {
        display: none;
    }
}

@media(max-width: 576px) {

    .site-branding img,
    .custom-logo-link img {
        max-height: 60px;
    }

    h1,
    .hero-title {
        font-size: 2.8rem;
    }

    h2 {
        font-size: 2rem;
    }
}

/* About Page Specific Styles */
.about-page-header {
    padding: 120px 0 40px;
    background-color: var(--color-gray);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.header-left {
    display: flex;
    flex-direction: column;
}

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

.chevron-large {
    font-size: 3rem;
    color: var(--color-primary);
}

.dots-wrapper {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-left: 10px;
}

.header-dot {
    background-color: rgba(226, 169, 38, 0.4);
    border-radius: 50%;
    display: inline-block;
}

.header-dot.dot-1 {
    width: 15px;
    height: 15px;
}

.header-dot.dot-2 {
    width: 10px;
    height: 10px;
}

.header-dot.dot-3 {
    width: 6px;
    height: 6px;
}

.section-padding-lg {
    padding: 100px 0;
}

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

.text-uppercase {
    text-transform: uppercase;
}

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

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

.text-muted {
    color: var(--color-text-light) !important;
}

.text-white {
    color: #fff !important;
}

.bg-white {
    background-color: #fff !important;
}

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

.fw-900 {
    font-weight: 900 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

/* Margins & Paddings Layout */
.mt-1 {
    margin-top: 5px;
}

.mt-2 {
    margin-top: 10px;
}

.mt-3 {
    margin-top: 15px;
}

.mt-4 {
    margin-top: 20px;
}

.mt-5 {
    margin-top: 40px;
}

.mb-0 {
    margin-bottom: 0px !important;
}

.mb-1 {
    margin-bottom: 5px;
}

.mb-2 {
    margin-bottom: 10px;
}

.mb-3 {
    margin-bottom: 15px;
}

.mb-4 {
    margin-bottom: 20px;
}

.mb-5 {
    margin-bottom: 40px;
}

.pt-4 {
    padding-top: 20px;
}

.pt-5 {
    padding-top: 40px;
}

.pb-3 {
    padding-bottom: 15px;
}

.pb-4 {
    padding-bottom: 20px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-2 {
    margin-left: 10px;
    margin-right: 10px;
}

.mx-3 {
    margin-left: 15px;
    margin-right: 15px;
}

.pl-4 {
    padding-left: 20px;
}

.pr-4 {
    padding-right: 20px;
}

.pr-3 {
    padding-right: 15px;
}

.px-2 {
    padding-left: 10px;
    padding-right: 10px;
}

.px-3 {
    padding-left: 15px;
    padding-right: 15px;
}

.px-4 {
    padding-left: 20px;
    padding-right: 20px;
}

.px-5 {
    padding-left: 40px;
    padding-right: 40px;
}

.py-2 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.py-3 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.d-flex {
    display: flex;
}

.d-inline-block {
    display: inline-block;
}

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

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

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

.w-100 {
    width: 100% !important;
}

.h-100 {
    height: 100% !important;
}

.object-fit-cover {
    object-fit: cover;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.border {
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.border-0 {
    border: none !important;
}

.border-bottom {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1) !important;
}

.bg-transparent {
    background: transparent !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.list-unstyled {
    list-style: none;
}

.shadow {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.stat-box {
    position: relative;
}

.about-gallery img {
    transition: transform 0.4s ease;
    cursor: pointer;
}

.about-gallery img:hover {
    transform: scale(1.02);
}

.brands-industry-grid {
    gap: 30px;
}

.industry-column {
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
}

.industry-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.industry-column ol li {
    position: relative;
    display: flex;
    align-items: flex-start;
}

.industry-column ol li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    margin-right: 10px;
    font-size: 1.2rem;
    line-height: 1;
    margin-top: 2px;
}

.team-avatar-box {
    transition: all 0.3s ease;
}

.team-avatar-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.avatar-img-wrap img {
    filter: grayscale(20%);
    transition: all 0.4s ease;
}

.team-avatar-box:hover .avatar-img-wrap img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.about-contact-form input::placeholder {
    color: #aaa;
    font-weight: 400;
    font-family: var(--font-primary);
    font-size: 0.9rem;
}

.about-contact-form input:focus {
    border-color: var(--color-primary) !important;
}

.btn-circle-action {
    background: var(--color-primary);
    color: var(--color-dark);
    border-radius: 50%;
    width: 130px;
    height: 130px;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 10px 20px rgba(226, 169, 38, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-circle-action:hover {
    transform: scale(1.05);
    background: var(--color-dark);
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 900px) {
    .header-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .about-hero-section .grid-2,
    .about-gallery-stats .grid-2 {
        grid-template-columns: 1fr;
    }

    .about-dreamers-content {
        padding-left: 0 !important;
        margin-top: 40px;
    }
}

/* About Page Hero Specific Tweaks */
.about-page .stats-section .rocket-image-composition {
    max-width: 400px;
    margin-right: 0;
    margin-left: auto;
}

.about-page .stats-section .main-rocket-img {
    height: 480px;
}

.about-page .stats-section .rocket-shape-outline {
    border-radius: 170px 170px 20px 20px;
}

/* How We Think Section (About Page) */
.how-we-think-section {
    padding: 80px 0;
    background-color: var(--color-dark);
}

.hwt-title {
    font-size: 4rem;
    color: #fff;
    letter-spacing: -1.5px;
    line-height: 1.1;
    font-weight: 700;
    text-transform: uppercase;
}

.hwt-title span {
    color: var(--color-primary);
}

.hwt-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.hwt-block {
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    text-align: left;
    height: 100%;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.hwt-block:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hwt-icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.hwt-icon-wrap.primary {
    background: rgba(226, 169, 38, 0.1);
    border: 1px solid rgba(226, 169, 38, 0.2);
    color: var(--color-primary);
}

.hwt-icon-wrap.light {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.hwt-icon-wrap i {
    font-size: 1.25rem;
}

.hwt-block h4 {
    font-size: 1.2rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hwt-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bbb;
    font-weight: 400;
    margin-bottom: 15px;
}

.hwt-block p:last-child {
    margin-bottom: 0;
}

/* Meet the Crew Section (Owl Carousel) */
.meet-the-crew {
    overflow: hidden;
}

.crew-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 480px;
    background: #111;
}

.crew-card img {
    width: 100% !important;
    height: 100%;
    object-fit: cover;
    display: block;
}

.crew-info-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px;
    background: transparent;
    color: #fff;
    z-index: 1;
    transition: opacity 0.4s ease;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.crew-info-bottom h5 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.crew-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: var(--color-dark) !important;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
    overflow: hidden;
}

/* Base states for content within the overlay */
.crew-overlay h5,
.crew-overlay p {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.crew-card:hover .crew-overlay h5,
.crew-card:hover .crew-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.crew-card:hover .crew-info-bottom {
    opacity: 0;
}

.crew-overlay h5 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 800;
    /* Bolder to match contrast */
    color: var(--color-dark);
    transition-delay: 0.1s;
}

.crew-overlay p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    color: var(--color-dark);
    font-weight: 400;
    transition-delay: 0.2s;
}

/* Background Blob Effects */
.crew-blob-wrapper {
    z-index: -1;
    overflow: hidden;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: transparent;
}

.crew-blobs {
    position: relative;
    display: block;
    height: 100%;
    filter: url('#goo');
}

.crew-blob {
    position: absolute;
    top: 0;
    width: 35%;
    height: 100%;
    background: var(--color-primary);
    border-radius: 100%;
    transform: translate3d(0, 150%, 0) scale(1);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.crew-blob:nth-child(1) {
    left: -15%;
    transition-delay: 0s;
}

.crew-blob:nth-child(2) {
    left: 15%;
    transition-delay: 0.08s;
}

.crew-blob:nth-child(3) {
    left: 45%;
    transition-delay: 0.16s;
}

.crew-blob:nth-child(4) {
    left: 75%;
    transition-delay: 0.24s;
}

.crew-card:hover .crew-blob {
    transform: translateZ(0) scale(1.6);
}

@supports(filter: url('#goo')) {
    .crew-blob {
        transform: translate3d(0, 150%, 0) scale(1.4);
    }

    .crew-card:hover .crew-blob {
        transform: translateZ(0) scale(1.8);
    }
}

/* Carousel Dots */
.crew-carousel .owl-dots {
    margin-top: 40px !important;
    text-align: center;
}

.crew-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 6px;
    background: rgba(255, 255, 255, 0.2) !important;
    display: block;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.crew-carousel .owl-dots .owl-dot:hover span,
.crew-carousel .owl-dots .owl-dot.active span {
    background: var(--color-primary) !important;
    width: 25px;
}

/* Carousel Nav Buttons */
.crew-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 3;
    margin: 0 !important;
}

.crew-carousel .owl-nav .owl-prev,
.crew-carousel .owl-nav .owl-next {
    position: absolute;
    pointer-events: auto;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    transition: all 0.3s ease;
}

.crew-carousel .owl-nav .owl-prev:hover,
.crew-carousel .owl-nav .owl-next:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.crew-carousel .owl-nav .owl-prev {
    left: -60px;
}

.crew-carousel .owl-nav .owl-next {
    right: -60px;
}

@media (max-width: 1400px) {
    .crew-carousel .owl-nav .owl-prev {
        left: -15px;
    }

    .crew-carousel .owl-nav .owl-next {
        right: -15px;
    }
}

/* Services Page Styles */
:root {
    --color-space-dark: #060814;
    --color-card-bg: rgba(255, 255, 255, 0.03);
    --color-card-border: rgba(255, 255, 255, 0.1);
}

body.page-template-page-services-php {
    background-color: var(--color-space-dark) !important;
}

/* Override Header for Dark Page */
.page-template-page-services-php .site-header {
    background: rgba(6, 8, 20, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.page-template-page-services-php .nav-menu li a {
    color: #fff !important;
}

.page-template-page-services-php .nav-menu li a:hover {
    color: var(--color-primary) !important;
}

/* Make sure dropdown text stays dark */
.page-template-page-services-php .nav-menu .sub-menu a {
    color: var(--color-text) !important;
}

.page-template-page-services-php .nav-menu .sub-menu a:hover {
    color: var(--color-primary) !important;
}

/* Modify blob button for dark header */
.page-template-page-services-php .site-header .blob-btn {
    color: #fff !important;
}

.page-template-page-services-php .site-header .blob-btn:before {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.page-template-page-services-php .site-header .blob-btn:hover {
    color: var(--color-dark) !important;
}

.services-page {
    font-family: 'Kanit', sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Starfield Background */
.starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image:
        radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.8), rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 50px 160px, rgba(255, 255, 255, 0.6), rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 90px 40px, rgba(255, 255, 255, 0.9), rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 130px 80px, #ffffff, rgba(0, 0, 0, 0)),
        radial-gradient(2px 2px at 160px 120px, rgba(255, 255, 255, 0.5), rgba(0, 0, 0, 0));
    background-repeat: repeat;
    background-size: 200px 200px;
    opacity: 0.15;
}

/* Floating Planets/Glows */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

.glow-1 {
    top: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--color-primary);
}

.glow-2 {
    bottom: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: var(--color-primary);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Interactive Services Section */
.services-interactive-section {
    padding: 200px 0 100px;
    min-height: 100vh;
}

/* Header Styling */
.services-interactive-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
    gap: 40px;
}

@media (max-width: 991px) {
    .services-interactive-header {
        flex-direction: column;
        gap: 20px;
    }
}

.header-label {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-label .dot {
    width: 10px;
    height: 10px;
    background-color: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
}

.header-title {
    flex: 2;
}

.header-title h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin: 0;
    text-transform: none;
    letter-spacing: -1px;
}

.header-desc {
    flex: 2;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    line-height: 1.6;
}

/* Grid Layout for Interactive Content */
.services-interactive-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr 1fr;
    gap: 30px;
    min-height: 550px;
}

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

    .services-images {
        display: none !important;
        /* Hide image column on smaller screens */
    }
}

@media (max-width: 768px) {
    .services-interactive-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-tabs {
        border-left: none !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 20px;
    }
}

/* Tabs list */
.services-tabs {
    display: flex;
    flex-direction: column;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.tab-item {
    padding: 25px 30px;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.4);
    transition: 0.3s all ease;
    position: relative;
    border-radius: 0 20px 20px 0;
    display: flex;
    align-items: center;
}

.tab-item::before {
    content: '';
    position: absolute;
    left: -1px;
    /* Align with border-left */
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: var(--color-primary);
    transform: scaleY(0);
    transition: 0.3s all ease;
    transform-origin: center;
}

.tab-item:hover {
    color: rgba(255, 255, 255, 0.8);
}

.tab-item.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.03);
}

.tab-item.active::before {
    transform: scaleY(1);
}

/* Detail Card */
.services-details {
    background: #0a0a0f;
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item {
    display: none;
    animation: fadeIn 0.4s ease forwards;
    height: 100%;
    flex-direction: column;
}

.detail-item.active {
    display: flex;
}

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

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

.detail-icon-wrap {
    margin-bottom: 25px;
}

.detail-icon-wrap img {
    width: 50px;
    /* Adjust size based on design, using fontawesome as fallback */
    height: auto;
}

.detail-icon-wrap i {
    font-size: 3rem;
    color: transparent;
    -webkit-text-stroke: 1px #fff;
}

.detail-item>p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.7;
}

.detail-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
    flex-grow: 1;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    /* Changed from center due to multi-line text */
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.5;
}

.feature-item i {
    color: var(--color-primary);
    font-size: 0.8rem;
    margin-top: 5px;
    /* Aligns dot with first line of text */
}

/* Blob Button Overrides for Dark Service Card */
.action-row {
    margin-top: auto;
    /* Push to bottom */
}

.blob-btn-service {
    color: #fff;
    text-transform: none;
    /* like in design */
    font-weight: 600;
    letter-spacing: 0;
    padding: 10px 25px;
}

.blob-btn-service:before {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.blob-btn-service:hover {
    color: var(--color-dark);
}

.blob-btn-service i.circle-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    background-color: var(--color-primary);
    border-radius: 50%;
    color: var(--color-dark);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* Image Column */
.services-images {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.image-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s all ease;
}

.image-item.active {
    opacity: 1;
    visibility: visible;
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: 0.5s all ease;
}

.image-item.active img:hover {
    filter: grayscale(0%);
}

/* Bonus Capabilities Section */
.bonus-capabilities {
    padding: 80px 0 120px;
    background: linear-gradient(to bottom, rgba(6, 8, 20, 0), rgba(255, 255, 255, 0.02));
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    background-color: var(--color-space-dark);
    position: relative;
    z-index: 2;
}

.bonus-capabilities h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
}

.bonus-capabilities p.lead {
    color: #aaa;
    font-size: 1.2rem;
    margin-bottom: 60px;
}

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

.capability-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: 0.4s all ease;
    position: relative;
    overflow: hidden;
}

.capability-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
}

.capability-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.capability-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.capability-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 0;
}

/* Feature Text Differentiation */
.page-template-page-services-php .feature-text {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.page-template-page-services-php .feature-title {
    color: #fff;
    font-weight: 600;
    margin-right: 5px;
}

/* Mobile Hamburger Icon Color */
.page-template-page-services-php .hamburger-inner,
.page-template-page-services-php .hamburger-inner::before,
.page-template-page-services-php .hamburger-inner::after {
    background-color: #fff !important;
}

.page-template-page-services-php .menu-toggle.is-active .hamburger-inner::before,
.page-template-page-services-php .menu-toggle.is-active .hamburger-inner::after {
    background-color: var(--color-dark) !important;
}
/* Media Buying Page Styles */
.page-template-page-media-buying body,
.single-services body {
    background-color: #0c0c12 !important;
    color: #ffffff;
}

.page-template-page-media-buying .sub-hero,
.single-services .sub-hero {
    padding: 180px 0 100px;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    text-align: center;
}

.page-template-page-media-buying .sub-hero h1,
.single-services .sub-hero h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
}

.page-template-page-media-buying .breadcrumb,
.single-services .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.page-template-page-media-buying .breadcrumb a,
.single-services .breadcrumb a {
    transition: color 0.3s ease;
}

.page-template-page-media-buying .breadcrumb a:hover,
.single-services .breadcrumb a:hover {
    color: var(--color-primary);
}

.page-template-page-media-buying .service-content-section,
.single-services .service-content-section {
    padding: 60px 0 60px;
    background: #0c0c12;
}

.page-template-page-media-buying .container-content,
.single-services .container-content {
    max-width: 1000px;
}

.page-template-page-media-buying .content-featured-image,
.single-services .content-featured-image {
    margin-bottom: 50px;
}

.page-template-page-media-buying .content-featured-image img,
.single-services .content-featured-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    height: 500px;
}

.page-template-page-media-buying .content-header-info,
.single-services .content-header-info,
.single-services .agency-heading-info {
    margin-bottom: 30px;
}

.page-template-page-media-buying .content-header-info h3,
.single-services .content-header-info h3,
.single-services .agency-tag {
    font-size: 1.1rem;
    color: var(--color-primary) !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: inline-block;
}

.page-template-page-media-buying .content-header-info h2,
.single-services .content-header-info h2,
.single-services .agency-heading-info h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff !important;
}

.page-template-page-media-buying .content-body-text,
.single-services .content-body-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.page-template-page-media-buying .strong-highlight,
.single-services .strong-highlight {
    margin-top: 30px;
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    padding-left: 20px;
    border-left: 4px solid var(--color-primary);
}

.page-template-page-media-buying .section-subtitle,
.single-services .section-subtitle {
    font-size: 2rem;
    font-weight: 800;
    margin: 60px 0 30px;
    text-transform: uppercase;
    color: #fff;
}

/* Accordion Styles */
.page-template-page-media-buying .offer-accordion,
.single-services .offer-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-template-page-media-buying .offer-accordion-item,
.single-services .offer-accordion-item {
    background: #1a1a24;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.page-template-page-media-buying .offer-accordion-header,
.single-services .offer-accordion-header {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    transition: color 0.3s ease;
    color: #fff;
}

.page-template-page-media-buying .offer-accordion-item:hover .offer-accordion-header,
.single-services .offer-accordion-item:hover .offer-accordion-header {
    color: var(--color-primary);
}

.page-template-page-media-buying .offer-accordion-toggle,
.single-services .offer-accordion-toggle {
    width: 35px;
    height: 35px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.page-template-page-media-buying .offer-accordion-content,
.single-services .offer-accordion-content {
    max-height: 0;
    padding: 0 30px;
    transition: all 0.4s ease;
    opacity: 0;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    overflow: hidden;
}

.page-template-page-media-buying .offer-accordion-item.active .offer-accordion-content,
.single-services .offer-accordion-item.active .offer-accordion-content {
    max-height: 1000px;
    padding-bottom: 30px;
    opacity: 1;
}

.page-template-page-media-buying .offer-accordion-item.active .offer-accordion-toggle,
.single-services .offer-accordion-item.active .offer-accordion-toggle {
    background: #fff;
}

.page-template-page-media-buying .list-dots,
.single-services .list-dots {
    margin: 20px 0;
    padding-left: 20px;
}

.page-template-page-media-buying .list-dots li,
.single-services .list-dots li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.page-template-page-media-buying .list-dots li::before,
.single-services .list-dots li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
}

/* Process Timeline Section - Reference Inspired */
.page-template-page-media-buying .content-process-timeline,
.single-services .content-process-timeline {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.page-template-page-media-buying .process-header,
.single-services .process-header {
    margin-bottom: 80px;
}

.page-template-page-media-buying .process-label,
.single-services .process-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.page-template-page-media-buying .dot-blink,
.single-services .dot-blink {
    width: 8px;
    height: 8px;
    background: #b6f321;
    /* Neon Lime similar to image */
    border-radius: 50%;
    box-shadow: 0 0 10px #b6f321;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.page-template-page-media-buying .section-desc,
.single-services .section-desc {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.page-template-page-media-buying .timeline-container,
.single-services .timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 0;
    perspective: 1500px;
    /* Essential for 3D door effect */
}

.page-template-page-media-buying .timeline-spine,
.single-services .timeline-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-50%);
}

.page-template-page-media-buying .timeline-progress,
.single-services .timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary);
    transition: height 0.1s linear;
}

.page-template-page-media-buying .timeline-item,
.single-services .timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 60px;
    margin-bottom: 60px;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.page-template-page-media-buying .timeline-item.in-view,
.single-services .timeline-item.in-view {
    opacity: 1;
}

.page-template-page-media-buying .timeline-item.right,
.single-services .timeline-item.right {
    margin-left: 50%;
}

.page-template-page-media-buying .timeline-item.left,
.single-services .timeline-item.left {
    margin-left: 0;
    text-align: right;
}

.page-template-page-media-buying .timeline-marker,
.single-services .timeline-marker {
    position: absolute;
    top: 35px;
    width: 44px;
    height: 44px;
    background: #15151e;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 900;
    font-size: 1.1rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-template-page-media-buying .timeline-item.in-view .timeline-marker,
.single-services .timeline-item.in-view .timeline-marker {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: #000;
    box-shadow: 0 0 20px rgba(var(--color-primary-rgb, 182, 243, 33), 0.5);
    transform: scale(1.15);
}

.page-template-page-media-buying .timeline-item.right .timeline-marker,
.single-services .timeline-item.right .timeline-marker {
    left: -22px;
}

.page-template-page-media-buying .timeline-item.left .timeline-marker,
.single-services .timeline-item.left .timeline-marker {
    right: -22px;
}

/* Door Open Animation */
.page-template-page-media-buying .timeline-card,
.single-services .timeline-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
}

.page-template-page-media-buying .timeline-item.right .timeline-card,
.single-services .timeline-item.right .timeline-card {
    transform-origin: left center;
    transform: rotateY(-35deg) translateZ(-50px);
}

.page-template-page-media-buying .timeline-item.left .timeline-card,
.single-services .timeline-item.left .timeline-card {
    transform-origin: right center;
    transform: rotateY(35deg) translateZ(-50px);
}

.page-template-page-media-buying .timeline-item.in-view .timeline-card,
.single-services .timeline-item.in-view .timeline-card {
    opacity: 1;
    transform: rotateY(0deg) translateZ(0);
}

.page-template-page-media-buying .timeline-card:hover,
.single-services .timeline-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
}

.page-template-page-media-buying .timeline-card-header,
.single-services .timeline-card-header {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.page-template-page-media-buying .timeline-item.left .timeline-card-header,
.single-services .timeline-item.left .timeline-card-header {
    justify-content: flex-end;
}

.page-template-page-media-buying .step-num,
.single-services .step-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.1);
    transition: color 0.6s ease;
}

.page-template-page-media-buying .timeline-item.in-view .step-num,
.single-services .timeline-item.in-view .step-num {
    color: var(--color-primary);
    opacity: 0.8;
}

.page-template-page-media-buying .timeline-card h4,
.single-services .timeline-card h4 {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    color: #fff;
}

.page-template-page-media-buying .timeline-card p,
.single-services .timeline-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    .page-template-page-media-buying .sub-hero,
    .single-services .sub-hero {
        padding: 140px 0 60px;
    }

    .page-template-page-media-buying .sub-hero h1,
    .single-services .sub-hero h1 {
        font-size: 2.2rem;
    }

    .page-template-page-media-buying .agency-heading-info h2,
    .single-services .agency-heading-info h2 {
        font-size: 1.8rem;
    }

    .page-template-page-media-buying .offer-accordion-header,
    .single-services .offer-accordion-header {
        padding: 18px 20px;
        font-size: 1rem;
        gap: 15px;
    }

    .page-template-page-media-buying .offer-accordion-toggle,
    .single-services .offer-accordion-toggle {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .page-template-page-media-buying .timeline-spine,
    .single-services .timeline-spine {
        left: 20px;
    }

    .page-template-page-media-buying .timeline-item,
    .single-services .timeline-item {
        width: 100%;
        margin-left: 0 !important;
        padding-left: 60px;
        padding-right: 0;
        text-align: left !important;
    }

    .page-template-page-media-buying .timeline-marker,
    .single-services .timeline-marker {
        left: 0 !important;
        right: auto !important;
    }

    .page-template-page-media-buying .timeline-card-header,
    .single-services .timeline-card-header {
        justify-content: flex-start !important;
    }

    .page-template-page-media-buying .timeline-card-tag,
    .single-services .timeline-card-tag {
        position: static;
        display: inline-block;
        margin-bottom: 10px;
    }
}

/* Premium Call to Action - Redesign */
.page-template-page-media-buying .content-cta-wrap,
.single-services .content-cta-wrap {
    margin-top: 100px;
    padding-bottom: 60px;
}

.page-template-page-media-buying .cta-glass-card,
.single-services .cta-glass-card {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.8), rgba(6, 8, 20, 0.95));
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 100px 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 100px rgba(var(--color-primary-rgb, 182, 243, 33), 0.05);
}

.page-template-page-media-buying .cta-glass-card::before,
.single-services .cta-glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.page-template-page-media-buying .cta-floating-icon,
.single-services .cta-floating-icon {
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #000;
    box-shadow: 0 10px 30px rgba(var(--color-primary-rgb, 182, 243, 33), 0.3);
    animation: cta-float 3s ease-in-out infinite;
}

@keyframes cta-float {

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

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

.page-template-page-media-buying .cta-glass-card h2,
.single-services .cta-glass-card h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin: 20px 0 30px;
    text-transform: uppercase;
    color: #fff;
}

.page-template-page-media-buying .cta-main-text,
.single-services .cta-main-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.page-template-page-media-buying .cta-actions-wrap,
.single-services .cta-actions-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-template-page-media-buying .cta-footer-text,
.single-services .cta-footer-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.4);
    font-style: italic;
}

/* Nebula Glows */
.page-template-page-media-buying .cta-glow,
.single-services .cta-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.15;
}

.page-template-page-media-buying .cta-glow.glow-1,
.single-services .cta-glow.glow-1 {
    top: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
}

.page-template-page-media-buying .cta-glow.glow-2,
.single-services .cta-glow.glow-2 {
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: var(--color-primary);
}

@media (max-width: 768px) {
    .page-template-page-media-buying .cta-glass-card,
    .single-services .cta-glass-card {
        padding: 60px 30px;
        border-radius: 30px;
    }

    .page-template-page-media-buying .cta-glass-card h2,
    .single-services .cta-glass-card h2 {
        font-size: 2.2rem;
    }
}


/* Header Override for Media Buying Page */
.page-template-page-media-buying .site-header,
.single-services .site-header {
    background: rgba(6, 8, 20, 0.95) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.page-template-page-media-buying .nav-menu li a,
.single-services .nav-menu li a {
    color: #fff !important;
}

.single-services .nav-menu .sub-menu li a {
    color: #333 !important;
}

.page-template-page-media-buying .nav-menu li a:hover,
.single-services .nav-menu li a:hover {
    color: var(--color-primary) !important;
}

.page-template-page-media-buying .hamburger-inner,
.page-template-page-media-buying .hamburger-inner::before,
.page-template-page-media-buying .hamburger-inner::after,
.single-services .hamburger-inner,
.single-services .hamburger-inner::before,
.single-services .hamburger-inner::after {
    background-color: #fff !important;
}

.page-template-page-media-buying .menu-toggle.is-active .hamburger-inner::after,
.single-services .menu-toggle.is-active .hamburger-inner::after {
    background-color: var(--color-dark) !important;
}

/* Modify header button for dark theme */
.page-template-page-media-buying .site-header .blob-btn,
.single-services .site-header .blob-btn {
    color: #fff !important;
}

.page-template-page-media-buying .site-header .blob-btn:before,
.single-services .site-header .blob-btn:before {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.page-template-page-media-buying .site-header .blob-btn:hover,
.single-services .site-header .blob-btn:hover {
    color: var(--color-dark) !important;
}
