@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #E0B03B;
    --primary-hover: #C5982F;
    --secondary: #060918;
    /* Dark bluish matching logo navy */
    --accent: #F2E7C9;
    /* Cream buffer color for better premium feel */
    --bg-light: #0a0e1f;
    /* Slightly lighter dark blue */
    --white: #10162f;
    /* Bluish tinted card background */
    --text-dark: #E0B03B;
    --text-body: #A0AEC0;
    /* Softer bluish-gray text */
    --glass: rgba(6, 9, 24, 0.85);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--secondary);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

section {
    padding: 100px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #000;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 255, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline:hover {
    border-color: transparent;
    background-color: var(--primary);
    color: #000;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

header.sticky {
    background: var(--glass);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

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

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    font-weight: 500;
    color: #BBBBBB;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links a i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.nav-links li:hover>a i,
.nav-links li.active>a i {
    transform: rotate(180deg);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
    z-index: 1002;
}

/* Mega Menu Container */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 850px;
    background: #0a0e1f;
    border: 1px solid rgba(224, 176, 59, 0.2);
    border-radius: 16px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1001;
}

.nav-links li:hover .mega-menu,
.nav-links li.active .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(10px);
}

.nav-links li.active>a i {
    transform: rotate(180deg);
}

.mega-item {
    display: flex;
    gap: 15px;
    align-items: start;
    padding: 15px;
    border-radius: 8px;
    transition: var(--transition);
}

.mega-item:hover {
    background: rgba(224, 176, 59, 0.05);
}

.mega-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mega-info h5 {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 6px;
    transition: var(--transition);
}

.mega-item:hover h5 {
    color: var(--primary);
}

.mega-info p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0;
}

/* Thematic Icon Colors */
.mega-item .mega-icon {
    background: rgba(255, 255, 255, 0.03) !important;
    color: #ffffff;
    transition: var(--transition);
}

.mega-item:hover .mega-icon {
    background: var(--primary) !important;
    color: #060918 !important;
    border-color: var(--primary);
}

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

/* Mobile Only Utility */
.mobile-only {
    display: none;
}

@media (max-width: 992px) {
    .mobile-only {
        display: block;
    }

    .desktop-contact {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--secondary);
        flex-direction: column;
        padding: 100px 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1001;
        overflow-y: auto;
    }

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

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

    .nav-links a {
        font-size: 1.1rem;
        padding: 15px 0;
        justify-content: space-between;
    }

    .nav-links .mobile-contact-link {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        margin-top: 16px;
        padding: 13px 22px;
        border-radius: 50px;
        background: var(--primary);
        color: #060918;
        font-weight: 800;
    }

    .mega-menu {
        position: static;
        width: 100%;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        grid-template-columns: 1fr;
        padding: 0 0 20px 20px;
        background: transparent;
        border: none;
        box-shadow: none;
        gap: 10px;
    }

    .nav-links li.active .mega-menu {
        display: grid;
    }

    .mega-item {
        padding: 10px 0;
    }

    .mega-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .mega-info h5 {
        font-size: 1rem;
    }

    .mega-info p {
        display: none;
    }
}

/* Section Transitions */
.hero,
.tech-services,
.client-marquee,
.about,
.solutions,
.feature-items,
.process,
.tech-stack {
    position: relative;
}

section {
    position: relative;
    background-color: var(--secondary);
    mask-image: linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 90%, transparent 100%);
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 260px;
    padding-bottom: 120px;
    text-align: center;
    background-color: var(--secondary);
    overflow: hidden;
    min-height: 78vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Transitions handled by section mask */

.hero-glows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: moveGlow 20s linear infinite alternate;
}

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

.glow-2 {
    width: 500px;
    height: 500px;
    background: #4A90E2;
    bottom: 10%;
    right: 10%;
    animation-delay: -10s;
}

@keyframes moveGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(100px, 50px) scale(1.2);
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(224, 176, 59, 0.08);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(224, 176, 59, 0.2);
    margin-bottom: 30px;
    animation: fadeInDown 0.8s ease-out;
}

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

.badge-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary);
}

.hero h1 {
    font-size: 4.2rem;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.1;
    color: #fff;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 15px;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: revealWord 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

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

/* Staggered Delays for words */
.word:nth-child(1) {
    animation-delay: 0.1s;
}

.word:nth-child(2) {
    animation-delay: 0.2s;
}

.word:nth-child(3) {
    animation-delay: 0.3s;
}

.word:nth-child(4) {
    animation-delay: 0.4s;
}

.word:nth-child(5) {
    animation-delay: 0.5s;
}

.word:nth-child(6) {
    animation-delay: 0.6s;
}

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

.hero p {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 45px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Floating Asset Styling */
.floating-asset {
    position: absolute;
    z-index: 2;
    pointer-events: none;
    display: block;
}

.asset-1 {
    top: 15%;
    right: 8%;
    animation: floatAsset 8s ease-in-out infinite;
}

.asset-2 {
    top: 45%;
    left: 5%;
    animation: floatAsset 10s ease-in-out infinite reverse;
    animation-delay: -2s;
}

.asset-3 {
    top: 65%;
    right: 12%;
    animation: floatAsset 12s ease-in-out infinite;
    animation-delay: -4s;
}

.asset-4 {
    top: 75%;
    left: 8%;
    animation: floatAsset 9s ease-in-out infinite reverse;
    animation-delay: -1s;
}

.asset-5 {
    top: 19%;
    left: 40%;
    animation: floatAsset 11s ease-in-out infinite;
    animation-delay: -3s;
}

.asset-6 {
    top: 80%;
    right: 40%;
    animation: floatAsset 13s ease-in-out infinite reverse;
    animation-delay: -5s;
}

.floating-asset img {
    width: 90px;
    height: auto;
    filter: drop-shadow(0 0 35px rgba(224, 176, 59, 0.8));
    opacity: 0.6;
    transition: var(--transition);
}

@keyframes floatAsset {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(10px, -20px) rotate(3deg) scale(1.02);
    }

    66% {
        transform: translate(-10px, -45px) rotate(-3deg) scale(0.98);
    }

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

/* Hide on mobile for better focus on text */
@media (max-width: 992px) {
    .floating-asset {
        display: none;
    }
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

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

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

.grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

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

/* Component Styles */
.card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.15);
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
}

h1,
h2,
h3,
.metallic-text {
    color: var(--primary);
    font-weight: 500;
}

.solutions,
.tech-stack,
.process {
    background-color: var(--secondary);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    font-weight: 600;
}

.solutions .solution-card {
    background: #10162f;
    min-height: 380px;
    padding: 50px 42px;
    border-radius: 12px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
}

.solutions .solution-card .icon-box {
    width: 88px;
    height: 88px;
    margin-bottom: 34px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary);
    font-size: 2rem;
}

.solutions .solution-card:hover .icon-box {
    background: rgba(255, 255, 255, 0.08);
    color: var(--primary);
}

.solutions .solution-card h3 {
    color: var(--primary);
    font-size: 1.65rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.solutions .solution-card p {
    color: #aeb8cb;
    font-size: 1.08rem;
    font-weight: 500;
    line-height: 1.72;
    margin: 0 auto;
    max-width: 360px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.mission-vision-grid .card {
    background: #080c1a;
    border-left: 4px solid var(--primary);
    border-radius: 0;
    box-shadow: none;
    padding: 25px 30px;
    text-align: left;
}

.mission-vision-grid .card:hover {
    transform: none;
    box-shadow: none;
}

.mission-vision-grid h4 {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.mission-vision-grid h4 i {
    color: var(--primary);
}

.mission-vision-grid p {
    color: var(--text-body);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
}

.blue-stats-bar {
    background: #060918;
    padding: 120px 0 140px;
}

.stats-banner {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    gap: 40px;
    text-align: center;
}

.stat-box h3 {
    color: #ffffff;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    margin: 0 0 28px;
}

.stat-box p {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1.4;
    margin: 0;
    text-transform: uppercase;
}

.core-values .card p {
    color: rgba(255, 255, 255, 0.72);
}

.commitment-panel {
    background: #10162f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 34px 24px;
}

.commitment-panel h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 18px;
}

.commitment-panel .commitment-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.commitment-panel .commitment-list li {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.commitment-panel .commitment-list i {
    color: var(--primary);
    flex: 0 0 18px;
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 2px;
    text-align: center;
}

.commitment-panel .commitment-list div {
    flex: 1;
    min-width: 0;
}

.commitment-panel .commitment-list h5 {
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
}

.commitment-panel .commitment-list p {
    color: var(--text-body);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.feature-items {
    position: relative;
}

/* Feature Project Cards */
.project-card {
    padding: 0;
    overflow: hidden;
    text-align: left;
}

.project-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.project-info {
    padding: 25px;
}

.feature-items .project-card h3 {
    color: var(--primary);
}

.feature-items .project-card p {
    color: #f5f7ff;
    font-weight: 500;
    line-height: 1.65;
}

.rating {
    color: #FFC107;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.about {
    position: relative;
}

/* Process Section */
.process {
    background-color: var(--secondary);
}

.process-step {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
}

.step-num {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Tech Circle */
.tech-circle-container {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 80px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}

.tech-icons-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: orbitRevolution 40s linear infinite;
}

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

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

.tech-center {
    width: 155px;
    height: 155px;
    background: #10162f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 44px rgba(224, 176, 59, 0.45);
    border: 3px solid var(--primary);
    z-index: 10;
    position: relative;
    animation: pulseLogo 3s ease-in-out infinite;
}

.tech-center img {
    width: 72%;
    height: auto;
    transition: var(--transition);
}

@keyframes pulseLogo {
    0% {
        box-shadow: 0 0 20px rgba(224, 176, 59, 0.3);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 50px rgba(224, 176, 59, 0.6);
        transform: scale(1.05);
    }

    100% {
        box-shadow: 0 0 20px rgba(224, 176, 59, 0.3);
        transform: scale(1);
    }
}

.tech-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(224, 176, 59, 0.2);
    font-size: 1.8rem;
    color: var(--accent);
    transform: rotate(var(--angle)) translate(200px) rotate(calc(-1 * var(--angle)));
    transition: var(--transition);
    border: 1px solid rgba(224, 176, 59, 0.3);
    z-index: 5;
}

.tech-icon i {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: keepUpright 40s linear infinite;
}

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

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

.tech-icon:hover {
    background-color: var(--primary);
    color: #000;
    transform: rotate(var(--angle)) translate(200px) rotate(calc(-1 * var(--angle))) scale(1.25);
    box-shadow: 0 0 30px rgba(224, 176, 59, 0.6);
    border-color: var(--primary);
}

/* Footer Styles */
footer {
    background-color: #04060f;
    /* Even darker navy for footer */
    color: rgba(203, 213, 225, 0.6);
    padding: 80px 0 30px;
    word-break: break-word;
    overflow-wrap: break-word;
}

footer .grid-5 {
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: start;
}

footer .grid-4 {
    grid-template-columns: minmax(260px, 1.15fr) repeat(3, minmax(150px, 0.62fr));
    gap: 34px;
    align-items: start;
}

footer .footer-about {
    max-width: 360px;
}

footer .footer-about p {
    max-width: 100%;
}

footer .footer-about .social-links {
    justify-content: flex-start;
}

footer .grid-4 .footer-links {
    justify-self: end;
    min-width: 150px;
}

footer h3,
footer h4 {
    color: #4A90E2;
    /* Professional logo blue */
    margin-bottom: 25px;
    font-weight: 600;
    text-align: left;
}

footer ul {
    text-align: left;
    padding: 0;
}

footer ul li {
    margin-bottom: 12px;
}

footer ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* responsive */
@media (max-width: 1200px) {
    .container {
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    section {
        padding: 70px 0;
    }

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

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

    footer .grid-5,
    footer .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }

    .footer-about {
        grid-column: span 2;
        text-align: center;
        max-width: 600px;
        margin: 0 auto 20px;
    }

    .footer-about .social-links {
        justify-content: center;
    }

    .hero {
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 3.2rem;
        max-width: 100%;
    }

    .about .grid-2 {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-img {
        max-width: 500px;
        margin: 0 auto 40px;
    }

}

@media (max-width: 768px) {

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

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .blue-stats-bar {
        padding: 80px 0;
    }

    .stats-banner {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    footer .grid-5,
    footer .grid-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .footer-about {
        grid-column: span 2;
    }

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

    footer h3,
    footer h4 {
        text-align: left;
        margin-bottom: 15px;
        font-size: 1.1rem;
    }

    footer ul {
        text-align: left;
    }
}

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .section-header h4 {
        font-size: 1.8rem !important;
    }

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

    .footer-about,
    .footer-links {
        grid-column: span 1;
        text-align: center;
    }

    footer h3,
    footer h4,
    footer ul {
        text-align: center;
    }
}

/* Tech Service Tiles Section */
.tech-services {
    position: relative;
    padding: 60px 0 100px;
    background: var(--secondary);
}

.tech-services::after,
.about::after,
.solutions::after,
.feature-items::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--secondary));
    z-index: 2;
    pointer-events: none;
}

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

@media (max-width: 1200px) {
    .service-tiles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 576px) {
    .service-tiles-grid {
        grid-template-columns: 1fr;
    }
}

.service-tile {
    background: #0a0e1f;
    padding: 30px 25px;
    border-radius: 16px;
    border: 1px solid rgba(224, 176, 59, 0.1);
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(224, 176, 59, 0.1);
    border-color: var(--primary);
    background: #0d1226;
}

.tile-icon {
    width: 50px;
    height: 50px;
    background: rgba(224, 176, 59, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
    border: 1px solid rgba(224, 176, 59, 0.1);
}

.service-tile:hover .tile-icon {
    background: var(--primary);
    color: #060918;
    transform: rotateY(360deg);
}

.service-tile h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.service-tile p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.tile-arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    margin-top: auto;
}

.service-load-more-wrap {
    display: none;
}

.service-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 12px 28px;
    border: 1px solid var(--primary);
    border-radius: 999px;
    background: var(--primary);
    color: #060918;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
}

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

.category-service-section {
    padding: 42px 0 70px;
}

.category-service-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
}

.category-service-card {
    position: relative;
    display: block;
    min-height: 430px;
    overflow: hidden;
    border-radius: 22px;
    background: #eef0f5;
    text-decoration: none;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    transition: var(--transition);
}

.category-service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

.category-service-media {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, rgba(224, 176, 59, 0.16), rgba(16, 22, 47, 0.08));
}

.category-service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-service-placeholder {
    width: 116px;
    height: 116px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background: #10162f;
    color: var(--primary);
    font-size: 3.2rem;
    font-weight: 900;
}

.category-service-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    min-height: 172px;
    padding: 34px 40px;
    border-radius: 18px 18px 0 0;
    background: rgba(6, 7, 72, 0.96);
    color: #fff;
}

.category-service-card:nth-child(2n) .category-service-content {
    background: rgba(112, 116, 153, 0.94);
}

.category-service-pill {
    display: inline-flex;
    max-width: 100%;
    margin-bottom: 14px;
    padding: 5px 14px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    color: #fff;
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.category-service-card h3 {
    margin: 0 0 10px;
    color: #fff;
    font-size: 1.75rem;
    line-height: 1.18;
}

.category-service-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.04rem;
    line-height: 1.55;
}

@media (max-width: 992px) {
    .category-service-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .category-service-card {
        min-height: 380px;
    }

    .category-service-content {
        padding: 26px 24px;
    }

    .category-service-card h3 {
        font-size: 1.35rem;
    }
}

/* Client Marquee Section */
.client-marquee {
    background: var(--secondary);
    padding: 60px 0;
    overflow: hidden;
    position: relative;
}

.client-marquee::before,
.client-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.client-marquee::before {
    left: 0;
    background: linear-gradient(to right, #060918, transparent);
}

.client-marquee::after {
    right: 0;
    background: linear-gradient(to left, #060918, transparent);
}

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

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

.client-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 4px;
    transition: var(--transition);
    cursor: default;
    user-select: none;
}

.client-logo:hover {
    color: var(--primary);
    opacity: 1;
}

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

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

/* Utility Classes for Refinement */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    font-weight: 500;
}

.section-title {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.img-premium {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

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

.mt-30 {
    margin-top: 30px;
}

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

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

.mb-50 {
    margin-bottom: 50px;
}

.max-w-600 {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(224, 176, 59, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    color: #000;
    transform: translateY(-3px);
}

.section-header p {
    max-width: 600px;
    margin: 15px auto;
    color: rgba(255, 255, 255, 0.7);
}

.img-premium {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

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

.feature-list li {
    margin-bottom: 15px;
}

.feature-list li i {
    color: var(--primary);
    margin-right: 15px;
}

.bg-glass {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.text-small-muted {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.grid-auto-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.section-alt {
    padding: 100px 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mt-100 {
    margin-top: 100px;
}


/* Product Card */
.product-card {
    background: var(--card-bg, #0d1b2e);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Image Container - Fixed Height */
.product-card__thumb {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.product-card__thumb a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Image Fill */
.product-card__thumb .fit-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.4s ease;
}

.product-card:hover .fit-image {
    transform: scale(1.05);
}

/* Content Area */
.product-card__content {
    padding: 16px;
    flex: 1;
}

/* Title */
.product-card__title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__title .link {
    color: #fff;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Rating Row */
.product-card__rating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.rating-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 3px;
}

.rating-list__item {
    color: var(--primary);
}

/* Meta Row - Category + Price */
.product-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: auto;
}

.product-card__price {
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    margin: 0;
}

.product-card__actions .flex-align {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #aaa;
    font-size: 0.85rem;
}

.category-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(249, 50, 44, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: #F9322C;
}

.item-category-name {
    font-size: 0.82rem;
    color: #aaa;
}

/* Live Preview Button */
.btn--gray {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: none;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    text-decoration: none;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn--gray:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
}

/* Flex helpers */
.flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* Product Details Page */
.product-details {
    background: var(--secondary);
}

.product-details__grid {
    align-items: flex-start;
}

.product-details__item {
    max-width: 100%;
}

.product-details__top {
    margin-bottom: 28px;
}

.product-details__breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    color: var(--text-body);
    font-size: 1rem;
    margin-bottom: 20px;
}

.product-details__breadcrumb a {
    color: var(--text-body);
}

.product-details__breadcrumb a:hover,
.product-details__breadcrumb strong {
    color: var(--primary);
    font-weight: 500;
}

.product-details__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.product-details__badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 42px;
    padding: 8px 16px;
    border: 1px solid rgba(224, 176, 59, 0.55);
    border-radius: 999px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.product-details__badge:first-child {
    color: var(--primary);
}

.product-details__title {
    color: var(--primary);
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: 0;
}

.product-details__summary {
    color: var(--text-body);
    max-width: 980px;
    font-size: 1.13rem;
    line-height: 1.75;
    margin-bottom: 28px;
}

.product-details__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    color: var(--text-body);
    margin-bottom: 28px;
}

.product-details__meta .product-info__rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.product-info__rating-text {
    color: var(--text-body);
}

.product-details__stat {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.product-details__stat i {
    color: var(--primary);
}

.product-details__thumb {
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
}

.product-details__thumb .fit-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.product-details__content {
    margin-top: 34px;
}

.product-info__category .flex-align {
    gap: 8px;
    text-decoration: none;
}

.product-info__sales {
    color: #aaa;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.product-info__sales .icon {
    color: var(--primary);
}

.sidebar-wrapper {
    display: flex;
    flex-direction: column;
    gap: 22px;
    position: sticky;
    top: 110px;
}

.sidebar {
    background: var(--white);
    border: 1px solid rgba(224, 176, 59, 0.16);
    border-radius: 8px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.sidebar__title {
    color: #fff;
    font-size: 1.35rem;
    margin-bottom: 22px;
}

.product-purchase-card__price {
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 18px;
}

.product-purchase-card__note {
    color: var(--text-body);
    font-size: 1rem;
    margin-bottom: 28px;
}

.sidebar__form {
    margin-top: 14px;
}

.btn--base {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--primary);
    color: #000;
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 14px 20px;
    font-weight: 700;
}

.btn--base:hover {
    background: var(--primary-hover);
    border-color: var(--primary-hover);
    color: #000;
}

.btn--outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 6px;
    padding: 14px 20px;
    font-weight: 700;
}

.btn--outline:hover {
    background: rgba(224, 176, 59, 0.12);
    color: var(--primary);
}

.webly-buy-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.webly-buy-modal.is-open {
    display: flex;
}

.webly-buy-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(3px);
}

.webly-buy-modal__dialog {
    position: relative;
    width: min(980px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    background: var(--white);
    border: 1px solid rgba(224, 176, 59, 0.25);
    border-radius: 10px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.55);
}

.webly-buy-modal__header,
.webly-buy-modal__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 34px;
}

.webly-buy-modal__header {
    border-bottom: 1px solid rgba(224, 176, 59, 0.14);
}

.webly-buy-modal__title-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.webly-buy-modal__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--primary);
    color: #000;
    font-size: 1.35rem;
}

.webly-buy-modal__header h3 {
    color: #fff;
    font-size: 1.6rem;
    margin: 0;
}

.webly-buy-modal__close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(224, 176, 59, 0.28);
    background: transparent;
    color: #fff;
}

.webly-buy-modal__body {
    padding: 30px 34px;
}

.webly-buy-modal__product {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
    color: var(--text-body);
}

.webly-buy-modal__product strong {
    color: #fff;
    text-align: right;
}

.webly-order-option,
.webly-support-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    border: 1px solid rgba(224, 176, 59, 0.32);
    border-radius: 8px;
    background: rgba(6, 9, 24, 0.34);
}

.webly-order-option.is-selected {
    border-color: var(--primary);
}

.webly-order-option h4 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.webly-order-option p,
.webly-order-note span,
.webly-support-option small {
    color: var(--text-body);
}

.webly-order-option p {
    margin: 0;
}

.webly-order-option strong {
    color: #fff;
    white-space: nowrap;
}

.webly-order-note {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 24px 0;
    color: var(--primary);
}

.webly-support-option {
    cursor: pointer;
    justify-content: flex-start;
}

.webly-support-option input {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: var(--primary);
}

.webly-support-option strong {
    display: block;
    color: #fff;
    margin-bottom: 5px;
}

.webly-buy-modal__footer {
    border-top: 1px solid rgba(224, 176, 59, 0.14);
}

.webly-buy-modal__footer span {
    display: block;
    color: var(--text-body);
    margin-bottom: 6px;
}

.webly-buy-modal__footer strong {
    color: var(--primary);
    font-size: 1.8rem;
    line-height: 1;
}

.webly-buy-modal__order {
    min-width: 170px;
}

body.modal-open {
    overflow: hidden;
}

.order-page {
    background: var(--secondary);
}

.order-page__header {
    margin-bottom: 34px;
}

.order-page__back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    margin-bottom: 18px;
}

.order-page__header h1 {
    color: #fff;
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.08;
    margin-bottom: 10px;
}

.order-page__header p {
    color: var(--text-body);
    font-size: 1.1rem;
}

.order-panel,
.order-summary {
    background: var(--white);
    border: 1px solid rgba(224, 176, 59, 0.18);
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--shadow);
}

.order-panel h3 {
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.order-form label {
    display: block;
    color: var(--text-body);
    margin-bottom: 8px;
}

.order-form input,
.order-form textarea {
    width: 100%;
    border: 1px solid rgba(224, 176, 59, 0.22);
    border-radius: 6px;
    background: rgba(6, 9, 24, 0.5);
    color: #fff;
    padding: 13px 14px;
    outline: none;
}

.order-form input:focus,
.order-form textarea:focus {
    border-color: var(--primary);
}

.order-form input[readonly] {
    color: var(--text-body);
}

.order-form__submit {
    margin-top: 22px;
}

.order-page__errors,
.order-page__success {
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 18px;
}

.order-page__errors {
    background: rgba(220, 53, 69, 0.14);
    color: #ffb8c0;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.order-page__success {
    background: rgba(25, 135, 84, 0.14);
    color: #b8f2d4;
    border: 1px solid rgba(25, 135, 84, 0.3);
}

.order-summary {
    position: sticky;
    top: 110px;
}

.order-summary__top {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 26px;
}

.order-summary__top span:not(.webly-buy-modal__icon) {
    color: var(--text-body);
}

.order-summary__top h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 4px 0 0;
}

.order-summary__line,
.order-summary__total {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 0;
    border-top: 1px solid rgba(224, 176, 59, 0.14);
    color: var(--text-body);
}

.order-summary__line strong {
    color: #fff;
    white-space: nowrap;
}

.order-summary__note {
    display: flex;
    gap: 10px;
    color: var(--text-body);
    padding: 16px 0;
}

.order-summary__note i {
    color: var(--primary);
    margin-top: 4px;
}

.order-summary__total {
    margin-top: 10px;
    padding-top: 24px;
}

.order-summary__total strong {
    color: var(--primary);
    font-size: 2rem;
    line-height: 1;
}

.sidebar-product-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sidebar-product-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    color: var(--text-body);
}

.sidebar-product-info__title {
    color: var(--text-body);
    flex: 0 0 38%;
    min-width: 0;
}

.sidebar-product-info__desc {
    color: #fff;
    flex: 1 1 auto;
    min-width: 0;
    text-align: right;
    overflow-wrap: anywhere;
    word-break: break-word;
    line-height: 1.45;
}

.sidebar-product-info--tags {
    display: block;
}

.style-tag {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
    margin: 12px 0 0;
}

.text-list__link {
    display: inline-flex;
    max-width: 100%;
    padding: 6px 10px;
    border: 1px solid rgba(224, 176, 59, 0.24);
    border-radius: 999px;
    color: var(--text-body);
    overflow-wrap: anywhere;
}

.product-gallery__image,
.product-video-list video {
    width: 100%;
    border-radius: 10px;
}

.product-video-list {
    display: grid;
    gap: 15px;
    margin-top: 24px;
}

.related-products {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.related-products h3 {
    color: #fff;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.related-products h3 span,
.product-card__placeholder i {
    color: var(--primary);
}

.product-card__placeholder {
    width: 100%;
    height: 200px;
    background: #1a2a3a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__placeholder i {
    font-size: 3rem;
}

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

.gap-2 {
    gap: 8px;
}

.gap-3 {
    gap: 16px;
}

.fs-13 {
    font-size: 13px;
}

.fs-14 {
    font-size: 14px;
}

.fs-16 {
    font-size: 16px;
}

.btn--md {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.py-120 {
    padding: 120px 0;
}

/* Item description headings */
.item-description__custom h2 {
    color: #fff;
    font-size: 1.4rem;
    margin: 35px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.item-description__custom p {
    color: #bbb;
    line-height: 1.9;
    margin-bottom: 15px;
}

.item-description__custom ul,
.item-description__custom ol {
    color: #bbb;
    padding-left: 20px;
    line-height: 2;
}

.item-description__custom img {
    border-radius: 10px;
    margin: 10px 0;
    max-width: 100%;
}

.item-description__custom a {
    color: var(--primary);
}

.item-description__custom strong {
    color: #fff;
}

.item-description__custom img {
    max-width: 100% !important;
    height: auto !important;
}

/* About page utilities imported from the source HTML/CSS */
.pt-100 { padding-top: 100px !important; }
.py-60 { padding: 60px 0 !important; }
.py-120 { padding: 120px 0 !important; }
.p-15 { padding: 15px !important; }
.p-30 { padding: 30px !important; }
.p-40 { padding: 40px !important; }
.pb-20 { padding-bottom: 20px !important; }
.pl-25 { padding-left: 25px !important; }
.px-45 { padding-left: 45px !important; padding-right: 45px !important; }
.py-18 { padding-top: 18px !important; padding-bottom: 18px !important; }

.m-0 { margin: 0 !important; }
.mt-5 { margin-top: 5px !important; }
.mt-15 { margin-top: 15px !important; }
.mt-40 { margin-top: 40px !important; }
.mb-5 { margin-bottom: 5px !important; }
.mb-10 { margin-bottom: 10px !important; }
.mb-15 { margin-bottom: 15px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mb-25 { margin-bottom: 25px !important; }
.mb-30 { margin-bottom: 30px !important; }
.mb-35 { margin-bottom: 35px !important; }
.mb-50 { margin-bottom: 50px !important; }
.mb-60 { margin-bottom: 60px !important; }
.mb-80 { margin-bottom: 80px !important; }
.mr-10 { margin-right: 10px !important; }
.mx-auto { margin-left: auto !important; margin-right: auto !important; }

.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.align-items-center { align-items: center !important; }
.align-items-start { align-items: flex-start !important; }
.justify-center { justify-content: center !important; }
.gap-15 { gap: 15px !important; }
.gap-20 { gap: 20px !important; }
.gap-30 { gap: 30px !important; }
.gap-40 { gap: 40px !important; }
.gap-50 { gap: 50px !important; }
.gap-60 { gap: 60px !important; }
.gap-80 { gap: 80px !important; }
.gap-100 { gap: 100px !important; }

.relative { position: relative !important; }
.overflow-hidden { overflow: hidden !important; }
.text-center { text-align: center !important; }
.list-none { list-style: none !important; }
.w-30 { width: 30px !important; }
.w-100 { width: 100% !important; }
.max-w-600 { max-width: 600px !important; }
.max-w-800 { max-width: 800px !important; }

.fs-0-8 { font-size: 0.8rem !important; }
.fs-0-9 { font-size: 0.9rem !important; }
.fs-0-95 { font-size: 0.95rem !important; }
.fs-1-1 { font-size: 1.1rem !important; }
.fs-1-2 { font-size: 1.2rem !important; }
.fs-1-5 { font-size: 1.5rem !important; }
.fs-1-8 { font-size: 1.8rem !important; }
.fs-2-5 { font-size: 2.5rem !important; }
.fs-3-5 { font-size: 3.5rem !important; }
.fs-4 { font-size: 4rem !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.lh-1-8 { line-height: 1.8 !important; }
.uppercase { text-transform: uppercase !important; }
.letter-spacing-1 { letter-spacing: 1px !important; }

.color-white { color: #fff !important; }
.color-primary { color: var(--primary) !important; }
.color-text-body { color: var(--text-body) !important; }
.opacity-0-8 { opacity: 0.8 !important; }

.br-10 { border-radius: 10px !important; }
.br-20 { border-radius: 20px !important; }
.bg-dark-gray { background: #0d1117 !important; }
.bg-glass { background: rgba(255, 255, 255, 0.03) !important; backdrop-filter: blur(10px); }
.bg-cta-gradient { background: linear-gradient(rgba(224, 176, 59, 0.05), transparent) !important; }
.bg-gradient-glow {
    background:
        radial-gradient(circle at 10% 20%, rgba(224, 176, 59, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(224, 176, 59, 0.03) 0%, transparent 50%) !important;
}
.border-glass { border: 1px solid rgba(255, 255, 255, 0.08) !important; }
.border-top-glass { border-top: 1px solid rgba(255, 255, 255, 0.08) !important; }
.border-bottom-glass { border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; }
.border-bottom-glass.pb-20 { border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important; }
.border-left-primary { border-left: 4px solid var(--primary) !important; }
.shadow-premium { box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35) !important; }

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(224, 176, 59, 0.1);
    padding: 8px 16px;
    border-radius: 50px;
    border: 1px solid rgba(224, 176, 59, 0.2);
}

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

.badge-text {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.collage-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(224, 176, 59, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.stats-counter {
    background: #060918;
}

.author-badge,
.glass-panel,
.location-card,
.time-content {
    background: rgba(255, 255, 255, 0.03);
}

.glass-panel {
    border-radius: 20px;
}

.tech-stack-detailed {
    background: var(--bg-light);
}

.angle-0 { --angle: 0deg; }
.angle-45 { --angle: 45deg; }
.angle-90 { --angle: 90deg; }
.angle-135 { --angle: 135deg; }
.angle-180 { --angle: 180deg; }
.angle-225 { --angle: 225deg; }
.angle-270 { --angle: 270deg; }
.angle-315 { --angle: 315deg; }

.timeline-container {
    max-width: 1050px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.timeline-left {
    justify-content: flex-start;
    padding-right: calc(50% + 80px);
}

.timeline-right {
    justify-content: flex-end;
    padding-left: calc(50% + 80px);
}

.time-marker {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    width: 90px;
    height: 30px;
    background: var(--primary);
    color: #000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transform: translate(-50%, -50%);
}

.time-content {
    max-width: 450px;
    width: 100%;
    text-align: left;
}

.leader-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 2px solid var(--primary);
}

.location-card i {
    display: block;
}

@media (max-width: 992px) {
    .gap-80,
    .gap-100 {
        gap: 50px !important;
    }

    .sidebar-wrapper {
        position: static;
    }

    .order-summary {
        position: static;
    }

    .fs-4,
    .fs-3-5 {
        font-size: 2.8rem !important;
    }

    .timeline-line {
        left: 20px;
    }

    .timeline-left,
    .timeline-right {
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 0;
    }

    .time-marker {
        left: 20px;
        width: 72px;
        transform: translate(-50%, -50%);
    }
}

@media (max-width: 576px) {
    .fs-4,
    .fs-3-5 {
        font-size: 2.2rem !important;
    }

    .p-40 {
        padding: 28px !important;
    }

    .timeline-left,
    .timeline-right {
        padding-left: 52px;
    }

    .sidebar {
        padding: 22px;
    }

    .webly-buy-modal {
        padding: 14px;
    }

    .webly-buy-modal__header,
    .webly-buy-modal__body,
    .webly-buy-modal__footer {
        padding: 22px;
    }

    .webly-buy-modal__footer,
    .webly-buy-modal__product,
    .webly-order-option {
        flex-direction: column;
    }

    .webly-buy-modal__product strong {
        text-align: left;
    }

    .webly-buy-modal__order {
        width: 100%;
    }

    .sidebar-product-info {
        flex-direction: column;
        gap: 4px;
    }

    .sidebar-product-info__title,
    .sidebar-product-info__desc {
        flex-basis: auto;
        width: 100%;
        text-align: left;
    }
}

/* Site-wide responsive hardening */
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body.mobile-menu-open {
    overflow: hidden;
}

input,
textarea,
select,
button {
    font: inherit;
    max-width: 100%;
}

iframe,
video,
canvas,
svg {
    max-width: 100%;
}

@media (max-width: 1200px) {
    .container {
        width: min(100% - 32px, 1120px);
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 992px) {
    header {
        padding: 14px 0;
    }

    header.sticky {
        padding: 10px 0;
    }

    nav {
        gap: 16px;
    }

    .nav-links {
        width: min(86vw, 360px);
        padding: 92px 26px 36px;
    }

    .nav-links a {
        min-width: 0;
    }

    .mega-menu {
        max-height: 58vh;
        overflow-y: auto;
    }

    .mega-item {
        min-width: 0;
    }

    .mega-info {
        min-width: 0;
    }

    .mega-info h5,
    .mega-info p {
        overflow-wrap: anywhere;
    }

    .hero {
        min-height: auto;
    }

    .section-title,
    .hero h1 {
        overflow-wrap: anywhere;
    }

    .tech-circle-container {
        width: min(430px, 100%);
        height: min(430px, calc(100vw - 44px));
    }

    .tech-center {
        width: 132px;
        height: 132px;
    }

    .tech-icon {
        width: 58px;
        height: 58px;
        font-size: 1.45rem;
    }

    .card,
    .solutions .solution-card,
    .order-panel,
    .order-summary,
    .sidebar,
    .commitment-panel,
    .glass-panel,
    .location-card,
    .time-content {
        padding: 28px;
    }

    .client-marquee::before,
    .client-marquee::after {
        width: 70px;
    }

    .marquee-track {
        gap: 48px;
    }

    .client-logo {
        font-size: 1.15rem;
        letter-spacing: 2px;
    }

    .product-details__grid,
    .order-page .grid-2 {
        grid-template-columns: 1fr !important;
    }

    [style*="grid-template-columns: repeat(4"],
    [style*="grid-template-columns: repeat(5"] {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    [style*="grid-template-columns: 1.2fr"],
    [style*="grid-template-columns: 1fr 1.2fr"],
    [style*="grid-template-columns: 0.8fr"],
    [style*="grid-template-columns: minmax("] {
        grid-template-columns: 1fr !important;
    }

    [style*="gap: 80px"] {
        gap: 40px !important;
    }
}

@media (max-width: 768px) {
    section,
    .section-alt,
    .py-120,
    [style*="padding: 100px 0"],
    [style*="padding: 120px 0"] {
        padding-top: 64px !important;
        padding-bottom: 64px !important;
    }

    .container {
        width: min(100% - 28px, 720px);
    }

    .hero {
        padding-top: 128px;
        padding-bottom: 64px;
    }

    .hero h1,
    [style*="font-size: 3.5rem"],
    [style*="font-size: 4rem"] {
        font-size: 2.35rem !important;
        line-height: 1.12 !important;
    }

    .section-title,
    h2,
    [style*="font-size: 2.8rem"],
    [style*="font-size: 3rem"] {
        font-size: 2rem !important;
        line-height: 1.18 !important;
    }

    p,
    [style*="font-size: 1.2rem"] {
        font-size: 1rem !important;
    }

    .hero p {
        line-height: 1.65;
        margin-bottom: 30px;
    }

    .hero-btns,
    [style*="display: flex"][style*="justify-content: center"],
    [style*="max-width: 500px"][style*="display: flex"] {
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    .btn,
    .btn--base,
    .btn--outline {
        min-height: 46px;
        white-space: normal;
        text-align: center;
    }

    .grid,
    .grid-2,
    .grid-3,
    .grid-4,
    .grid-5,
    .grid-auto-2,
    .mission-vision-grid,
    .stats-banner,
    .service-tiles-grid,
    .services-grid {
        grid-template-columns: 1fr !important;
    }

    [style*="display: grid"] {
        grid-template-columns: 1fr !important;
    }

    .card,
    .industry-card,
    .solutions .solution-card,
    .service-tile,
    .order-panel,
    .order-summary,
    .sidebar,
    .webly-buy-modal__dialog,
    .commitment-panel,
    .glass-panel,
    .location-card,
    [style*="padding: 40px"],
    [style*="padding: 50px"],
    [style*="padding: 60px"] {
        padding: 24px !important;
    }

    .section-header,
    .section-header.mb-50,
    .section-header.mb-80 {
        margin-bottom: 34px !important;
    }

    .about-img,
    .process-img,
    .feat-visual,
    .project-img,
    .product-card__thumb {
        max-width: 100% !important;
    }

    .product-card__meta,
    .flex-between,
    .webly-buy-modal__header,
    .webly-buy-modal__footer,
    .order-summary__line,
    .order-summary__total,
    .product-details__meta {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 12px;
    }

    .product-details__badges {
        gap: 8px;
    }

    .product-details__badge {
        min-height: 38px;
        padding: 7px 12px;
        font-size: 0.9rem;
    }

    .sidebar-wrapper,
    .order-summary {
        position: static !important;
    }

    .timeline-container,
    .timeline {
        max-width: 100% !important;
    }

    footer {
        padding-top: 56px;
    }
}

@media (max-width: 576px) {
    .container {
        width: min(100% - 24px, 540px);
    }

    .logo img {
        height: 34px;
    }

    .nav-links {
        width: min(92vw, 340px);
        padding: 82px 20px 30px;
    }

    .hero {
        padding-top: 112px;
        padding-bottom: 52px;
    }

    .hero h1,
    [style*="font-size: 3.5rem"],
    [style*="font-size: 4rem"] {
        font-size: 2rem !important;
    }

    .section-title,
    h2,
    [style*="font-size: 2.5rem"],
    [style*="font-size: 2.8rem"],
    [style*="font-size: 3rem"] {
        font-size: 1.72rem !important;
    }

    .section-subtitle,
    .badge-text {
        letter-spacing: 1px;
    }

    .hero-btns,
    .webly-buy-modal__footer,
    .webly-buy-modal__product,
    .webly-order-option,
    .product-details__meta,
    .order-summary__top,
    [style*="display: flex"][style*="justify-content: center"],
    [style*="max-width: 500px"][style*="display: flex"] {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .btn,
    .btn--base,
    .btn--outline,
    .hero-btns a,
    [style*="padding: 18px 45px"] {
        width: 100% !important;
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .card,
    .industry-card,
    .solutions .solution-card,
    .service-tile,
    .order-panel,
    .order-summary,
    .sidebar,
    .commitment-panel,
    .glass-panel,
    .location-card,
    [style*="padding: 30px"],
    [style*="padding: 40px"],
    [style*="padding: 50px"],
    [style*="padding: 60px"] {
        padding: 20px !important;
    }

    .tech-circle-container {
        width: 260px;
        height: 260px;
        margin: 28px auto 34px;
    }

    .tech-center {
        width: 84px;
        height: 84px;
        border-width: 2px;
        box-shadow: 0 0 24px rgba(224, 176, 59, 0.4);
    }

    .tech-icon {
        width: 38px;
        height: 38px;
        font-size: 0.92rem;
        box-shadow: 0 0 10px rgba(224, 176, 59, 0.22);
        transform: rotate(var(--angle)) translate(104px) rotate(calc(-1 * var(--angle)));
    }

    .tech-icon:hover {
        transform: rotate(var(--angle)) translate(104px) rotate(calc(-1 * var(--angle))) scale(1.1);
    }

    .tech-stack {
        padding-top: 14px !important;
        padding-bottom: 28px !important;
    }

    .tech-stack .section-header {
        margin-bottom: 12px !important;
    }

    .tech-stack .section-title {
        font-size: 1.55rem !important;
        line-height: 1.18 !important;
        margin-bottom: 12px;
    }

    .tech-stack .section-header p {
        max-width: 310px !important;
        margin-top: 8px;
        margin-bottom: 0;
        font-size: 0.95rem !important;
        line-height: 1.55;
    }

    .project-img,
    .product-card__thumb,
    .product-card__placeholder {
        height: 180px;
    }

    .webly-buy-modal {
        padding: 10px;
    }

    .webly-buy-modal__dialog {
        max-height: calc(100vh - 20px);
    }

    .timeline-left,
    .timeline-right {
        padding-left: 46px;
    }

    .time-marker {
        left: 16px;
        width: 64px;
        font-size: 0.78rem;
    }

    .timeline-line {
        left: 16px;
    }
}

@media (max-width: 380px) {
    .hero h1,
    [style*="font-size: 3.5rem"],
    [style*="font-size: 4rem"] {
        font-size: 1.8rem !important;
    }

    .section-title,
    h2,
    [style*="font-size: 2.5rem"],
    [style*="font-size: 2.8rem"],
    [style*="font-size: 3rem"] {
        font-size: 1.55rem !important;
    }

    .nav-links {
        width: 100vw;
    }

    .tech-circle-container {
        width: 235px;
        height: 235px;
    }

    .tech-icon {
        transform: rotate(var(--angle)) translate(94px) rotate(calc(-1 * var(--angle)));
    }

    .tech-icon:hover {
        transform: rotate(var(--angle)) translate(94px) rotate(calc(-1 * var(--angle))) scale(1.08);
    }
}

/* Mobile navigation readability fixes */
@media (max-width: 992px) {
    .nav-links {
        gap: 0;
        padding: 86px 22px 34px;
    }

    .nav-links > li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-links > li > a {
        min-height: 54px;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 0.98rem;
        font-weight: 700;
        line-height: 1.25;
        padding: 16px 0;
    }

    .nav-links > li > a i {
        flex: 0 0 auto;
        color: var(--primary);
        font-size: 0.78rem;
    }

    .mega-menu {
        width: 100% !important;
        max-height: none;
        overflow: visible;
        display: none !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        margin: 0 0 14px;
        padding: 4px 0 8px !important;
        transform: none !important;
    }

    .nav-links li.active > .mega-menu {
        display: grid !important;
    }

    .mega-menu .mega-item {
        width: 100%;
        min-height: auto;
        display: grid;
        grid-template-columns: 34px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        padding: 10px 12px !important;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(224, 176, 59, 0.08);
        border-radius: 8px;
    }

    .mega-menu .mega-icon {
        width: 34px;
        height: 34px;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .mega-menu .mega-info h5 {
        margin: 0;
        color: #fff;
        font-size: 0.88rem;
        font-weight: 700;
        line-height: 1.25;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .mega-menu .mega-info p {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .nav-links {
        width: min(86vw, 320px);
        padding-left: 18px;
        padding-right: 18px;
    }

    .nav-links > li > a {
        min-height: 50px;
        font-size: 0.92rem;
    }

    .mega-menu .mega-item {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 10px;
        padding: 9px 10px !important;
    }

    .mega-menu .mega-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }

    .mega-menu .mega-info h5 {
        font-size: 0.78rem;
    }

    .tech-services .service-tile.is-mobile-hidden {
        display: none !important;
    }

    .tech-services .service-tile {
        align-items: center;
        text-align: center;
    }

    .tech-services .tile-icon {
        margin-left: auto;
        margin-right: auto;
    }

    .tech-services .tile-arrow {
        margin-left: auto;
        margin-right: auto;
    }

    .service-load-more-wrap {
        display: flex;
        justify-content: center;
        margin-top: 26px;
    }

    .service-load-more {
        width: min(100%, 220px) !important;
    }
}

/* Mobile footer keeps the desktop-style grouped layout */
@media (max-width: 768px) {
    footer {
        padding: 44px 0 24px;
    }

    footer .grid-5,
    footer .grid-4 {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 34px 24px;
        align-items: start;
    }

    .footer-about {
        grid-column: 1 / -1 !important;
        max-width: 100%;
        margin: 0;
        text-align: left;
    }

    .footer-about img {
        height: 32px !important;
        margin: 0 0 16px !important;
    }

    .footer-about p {
        max-width: 300px;
        margin: 0;
        color: rgba(203, 213, 225, 0.72);
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }

    .footer-about .social-links {
        justify-content: flex-start;
        margin-top: 20px !important;
    }

    .footer-links {
        grid-column: span 1 !important;
        text-align: left !important;
    }

    footer h3,
    footer h4 {
        margin-bottom: 14px;
        color: var(--primary);
        font-size: 1.05rem;
        line-height: 1.25;
        text-align: left !important;
    }

    footer ul {
        text-align: left !important;
        margin: 0;
    }

    footer ul li {
        margin-bottom: 9px;
        line-height: 1.35;
    }

    footer ul li a {
        color: rgba(203, 213, 225, 0.72);
        font-size: 0.92rem;
    }

    .footer-bottom {
        margin-top: 36px;
        padding-top: 20px;
        text-align: left;
    }

    .footer-bottom p {
        margin: 0;
        color: rgba(203, 213, 225, 0.55);
        font-size: 0.85rem !important;
    }
}

@media (max-width: 390px) {
    footer .grid-5,
    footer .grid-4 {
        gap: 30px 18px;
    }

    footer h3,
    footer h4 {
        font-size: 0.98rem;
    }

    footer ul li a {
        font-size: 0.84rem;
    }
}
