/* Base Reset & Variables */
:root {
    --color-cyan: #00d2ff;
    --color-bg: #050608;
    --color-text: #ffffff;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-body); /* Enforce font globally */
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
    letter-spacing: -0.01em; /* Gemini style soft letter spacing */
}

h1, h2, h3, h4, h5, h6, .section-title, .cta-title, .hero-title, .feature-title, .blog-title {
    font-family: var(--font-heading) !important;
    font-weight: 400 !important;
    letter-spacing: -0.03em;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.skydreamix-header {
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    z-index: 100;
}

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

.skydreamix-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sd-logo-icon {
    position: relative;
    font-size: 2.2rem;
    color: var(--color-cyan);
}

.sd-code {
    position: absolute;
    font-size: 0.7rem;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-weight: bold;
    font-family: monospace;
}

.sd-logo-text {
    display: flex;
    flex-direction: column;
}

.sd-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.sd-sub {
    font-size: 0.7rem;
    color: var(--color-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Navigation */
.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.skydreamix-menu .navbar-link {
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.skydreamix-menu .navbar-link:hover,
.skydreamix-menu .navbar-link.active {
    color: var(--color-cyan);
}

.skydreamix-menu .navbar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--color-cyan);
    transition: width 0.3s ease;
}

.skydreamix-menu .navbar-link:hover::after,
.skydreamix-menu .navbar-link.active::after {
    width: 100%;
}

/* Dropdown Menu Styles */
.dropdown-container {
    padding: 25px 0;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    transform: translateY(15px);
    background: rgba(5, 6, 8, 0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
    padding: 40px 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 200;
}

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

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-radius: 8px;
    transition: background 0.3s ease;
    text-decoration: none;
}

.dropdown-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.dropdown-icon {
    font-size: 1.5rem;
    margin-top: 2px;
}

.dropdown-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.dropdown-text p {
    font-size: 0.75rem;
    color: #888;
    line-height: 1.4;
    text-transform: lowercase;
    margin: 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cyan {
    background-color: var(--color-cyan);
    color: #0b0c10;
    border: 2px solid var(--color-cyan);
    border-radius: 30px;
}

.btn-cyan:hover {
    background-color: transparent;
    color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.btn-outline-cyan {
    background-color: transparent;
    color: var(--color-cyan);
    border: 1px solid var(--color-cyan);
    border-radius: 30px;
    margin-left: 20px;
}

.btn-outline-cyan:hover {
    background-color: var(--color-cyan);
    color: #0b0c10;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.4);
}

.btn-outline-white {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
}

.btn-outline-white:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: #fff;
}

.rounded-pill {
    border-radius: 50px !important;
}

/* Mobile Toggle (Hidden by default) */
.menu-toggle {
    display: none;
}

/* Hero Section */
.skydreamix-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px; /* Offset for header */
    overflow: hidden;
}

.particles-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Wipro-Style Network Animation Canvas */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

/* Hero Content */
.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
}

.hero-content {
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.skydreamix-tagline {
    color: var(--color-cyan);
    font-size: 0.75rem;
    letter-spacing: 4px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    opacity: 0;
    animation: cinematicReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.skydreamix-tagline .line {
    height: 1px;
    width: 40px;
    background: var(--color-cyan);
}

.skydreamix-tagline .line-right {
    height: 1px;
    width: 40px;
    background: var(--color-cyan);
}

.skydreamix-title {
    font-size: clamp(1.8rem, 5vw, 6rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
    text-transform: none;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    letter-spacing: -2px;
    opacity: 0;
    animation: cinematicReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

.skydreamix-title .typed-text {
    color: #00d2ff;
    display: inline-block;
    white-space: nowrap;
}

.typed-cursor {
    color: #00d2ff;
    font-size: clamp(1.8rem, 5vw, 6rem);
    font-weight: 300;
}

@keyframes cinematicReveal {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.96);
        filter: blur(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}



.skydreamix-subtitle {
    color: #a0a0a0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0;
    animation: cinematicReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s;
}

.skydreamix-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: cinematicReveal 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
}

/* Explore Arrow Down */
.explore-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 2px;
    z-index: 3;
    animation: bounce 2s infinite;
}

.explore-arrow p {
    margin: 0;
}

.explore-arrow i {
    display: block;
    margin-top: 5px;
    color: var(--color-cyan);
    font-size: 1rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .globe-container {
        width: 600px;
        height: 600px;
        right: -5%;
    }
}

@media (max-width: 991px) {
    .skydreamix-title {
        font-size: 3.5rem;
    }
    .globe-container {
        width: 500px;
        height: 500px;
        right: -10%;
        opacity: 0.4;
        z-index: 0;
    }
    .hero-content {
        position: relative;
        z-index: 2;
    }
    .navbar-menu {
        display: none;
    }
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 21px;
        background: transparent;
        border: none;
        cursor: pointer;
    }
    .menu-toggle span {
        width: 100%;
        height: 3px;
        background-color: #fff;
        border-radius: 3px;
    }
}

@media (max-width: 768px) {
    .skydreamix-title {
        font-size: 2.8rem;
    }
    .skydreamix-subtitle {
        font-size: 1rem;
    }
    .globe-container {
        width: 400px;
        height: 400px;
        right: 50%;
        transform: translate(50%, -50%);
        opacity: 0.25;
    }
}

@media (max-width: 576px) {
    .skydreamix-title {
        font-size: 2.2rem;
    }
    .skydreamix-tagline {
        font-size: 0.6rem;
        letter-spacing: 2px;
    }
    .skydreamix-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .globe-container {
        width: 320px;
        height: 320px;
        opacity: 0.2;
    }
    .bg-bubble {
        transform: scale(0.6);
    }
}

@media (max-width: 360px) {
    .skydreamix-title {
        font-size: 1.8rem;
    }
    .skydreamix-subtitle {
        font-size: 0.9rem;
    }
    .globe-container {
        width: 250px;
        height: 250px;
        opacity: 0.15;
    }
}

/* Core Services Section */
.core-services-section {
    padding: 100px 0 60px;
    background-color: var(--color-bg);
}

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

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading p {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

.section-heading.text-left {
    text-align: left;
}

.section-subtitle {
    color: var(--color-cyan);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.services-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(360px, auto);
    gap: 20px;
    width: 100%;
}

.bento-card {
    position: relative;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Glassmorphism base */
    background-color: rgba(5, 6, 8, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
}

.bento-wide {
    grid-column: span 2;
}

.bento-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 210, 255, 0.4);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15), inset 0 0 0 1px rgba(0, 210, 255, 0.1);
}

.bento-content {
    position: relative;
    flex: 1;
    height: 100%;
    padding: 35px 35px 45px; /* Added extra padding at the bottom */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 100%);
}

.bento-top {
    display: flex;
    justify-content: flex-start;
}

.bento-num {
    color: var(--color-cyan);
    font-size: 1rem;
    font-weight: 800;
    opacity: 0.8;
}

.bento-title {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-top: auto;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.bento-desc {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 90%;
}

.bento-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.bento-features span {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.75rem;
    color: #e0e0e0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.bento-features span i {
    color: var(--color-cyan);
    font-size: 0.9rem;
}

.bento-card:hover .bento-features span {
    background: rgba(0, 210, 255, 0.1);
    border-color: rgba(0, 210, 255, 0.2);
    color: #fff;
}

.bento-link {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    opacity: 0.7;
}

.bento-link i {
    transition: transform 0.3s ease;
}

.bento-card:hover .bento-link {
    opacity: 1;
    color: var(--color-cyan);
}

.bento-card:hover .bento-link i {
    transform: translateX(5px);
}

/* Mobile Responsiveness for Bento Grid */
@media (max-width: 992px) {
    .services-bento-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .bento-wide {
        grid-column: span 1;
    }
    
    .bento-card {
        min-height: 350px;
    }
}

/* Tech Stack Marquee Section */
.tech-marquee-wrapper {
    background-color: #040506;
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    display: flex;
}

.tech-marquee-wrapper::before,
.tech-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.tech-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg) 0%, transparent 100%);
}

.tech-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg) 0%, transparent 100%);
}

.tech-marquee {
    display: inline-flex;
    animation: marquee 30s linear infinite;
}

.tech-item {
    color: #333;
    font-size: 2rem;
    font-weight: 800;
    margin: 0 40px;
    text-transform: uppercase;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
    cursor: default;
}

.tech-item:hover {
    color: #666;
}

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

/* Statistics Section */
.stats-section {
    padding: 80px 0 100px;
    background-color: var(--color-bg);
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-item.divider::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60px;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-number .plus {
    font-size: 2rem;
    color: #666;
    margin-top: 5px;
    margin-left: 5px;
}

.stat-label {
    color: #666;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.stats-badges {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge-pill {
    padding: 8px 24px;
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 50px;
    color: var(--color-cyan);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background-color: transparent;
    transition: all 0.3s ease;
    cursor: default;
}

.badge-pill:hover {
    background-color: rgba(0, 210, 255, 0.05);
    border-color: rgba(0, 210, 255, 0.5);
}

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background-color: var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.why-us-grid {
    display: flex;
    gap: 60px;
}

.why-us-left {
    flex: 0 0 35%;
    position: relative;
}

.sticky-content {
    position: sticky;
    top: 150px;
}

.section-subtitle {
    color: var(--color-cyan);
    font-size: 0.75rem;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: var(--font-heading);
}

.section-desc {
    color: #888;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 60px;
    font-weight: 300;
    max-width: 90%;
}

.scroll-indicator {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.indicator-line {
    width: 2px;
    height: 60px;
    background-color: var(--color-cyan);
}

.indicator-text {
    margin-bottom: 5px;
}

.current-step {
    color: #fff;
    font-size: 1.8rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.total-step {
    color: #555;
    font-size: 1rem;
    font-weight: 600;
}

.indicator-label {
    color: var(--color-cyan);
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 700;
    text-transform: uppercase;
}

.why-us-right {
    flex: 1;
}

.feature-item {
    padding: 35px 30px;
    margin-bottom: 15px;
    border-radius: 20px;
    border: 1px solid transparent;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0.4;
    transform: scale(0.98);
}

.feature-item.active {
    opacity: 1;
    transform: scale(1.02);
    background: rgba(0, 210, 255, 0.03);
    border: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.05), inset 0 0 0 1px rgba(0, 210, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

.feature-title {
    color: #888;
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.5s ease;
}

.feature-item.active .feature-title {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.feature-number {
    color: #222;
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-heading);
    transition: all 0.5s ease;
}

.feature-item.active .feature-number {
    color: var(--color-cyan);
    text-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
}

.feature-body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item.active .feature-body {
    grid-template-rows: 1fr;
}

.feature-body-content {
    overflow: hidden;
    display: flex;
    gap: 30px;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease, padding 0.3s ease;
    padding-top: 0;
}

.feature-item.active .feature-body-content {
    opacity: 1;
    padding-top: 30px;
    transition: opacity 0.5s ease 0.3s, padding 0.5s ease;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 210, 255, 0.05);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.feature-text {
    flex: 1;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.6;
    font-weight: 300;
}

.feature-stat {
    text-align: right;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background-color: #040506;
    overflow: hidden;
}

.glitch-text {
    position: relative;
    display: inline-block;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.8;
}

.glitch-text::before {
    left: 3px;
    text-shadow: -2px 0 var(--color-cyan);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -3px;
    text-shadow: -2px 0 #ff00ff;
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(20% 0 80% 0); transform: translate(2px, 1px); }
    20% { clip-path: inset(60% 0 10% 0); transform: translate(-2px, -1px); }
    40% { clip-path: inset(40% 0 50% 0); transform: translate(2px, 1px); }
    60% { clip-path: inset(80% 0 5% 0); transform: translate(-2px, -1px); }
    80% { clip-path: inset(10% 0 70% 0); transform: translate(2px, 1px); }
    100% { clip-path: inset(30% 0 50% 0); transform: translate(-2px, -1px); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(10% 0 60% 0); transform: translate(-2px, 1px); }
    20% { clip-path: inset(30% 0 20% 0); transform: translate(2px, -1px); }
    40% { clip-path: inset(70% 0 10% 0); transform: translate(-2px, 1px); }
    60% { clip-path: inset(20% 0 50% 0); transform: translate(2px, -1px); }
    80% { clip-path: inset(50% 0 30% 0); transform: translate(-2px, 1px); }
    100% { clip-path: inset(5% 0 80% 0); transform: translate(2px, -1px); }
}

.testimonials-slider {
    padding: 50px 0 80px;
}

.swiper-slide {
    transition: all 0.3s ease;
    height: auto;
}

.testimonial-card {
    background-color: #0d1117;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.swiper-slide:not(.swiper-slide-active) .testimonial-card {
    opacity: 0.6;
}

.stars {
    color: var(--color-cyan);
    font-size: 1.2rem;
    margin-bottom: 25px;
    display: flex;
    gap: 5px;
}

.quote {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-weight: 500;
    flex-grow: 1;
}

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

.client-avatar {
    width: 45px;
    height: 45px;
    background-color: #1f2937;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
}

.client-details h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.client-details span {
    color: var(--color-cyan);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.google-icon {
    margin-left: auto;
    font-size: 1.5rem;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.swiper-button-prev-custom,
.swiper-button-next-custom {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
    background-color: var(--color-cyan);
    border-color: var(--color-cyan);
    color: #000;
}

.swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    width: auto !important;
}

.swiper-pagination-bullet {
    background-color: rgba(255,255,255,0.2) !important;
    opacity: 1 !important;
    width: 6px !important;
    height: 6px !important;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background-color: var(--color-cyan) !important;
    width: 25px !important;
    border-radius: 10px !important;
}

@media (max-width: 768px) {
    .swiper-slide {
        width: 320px;
    }
    .quote {
        font-size: 0.95rem;
    }
}

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

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

.read-all-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.3s ease;
}

.read-all-btn:hover {
    color: var(--color-cyan);
}

.arrow-circle {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.read-all-btn:hover .arrow-circle {
    border-color: var(--color-cyan);
    background-color: rgba(0, 210, 255, 0.1);
}

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

.blog-card {
    background-color: rgba(255, 255, 255, 0.015);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 210, 255, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(0, 210, 255, 0.3);
    border-color: rgba(0, 210, 255, 0.3);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, var(--color-bg) 100%);
    pointer-events: none;
    z-index: 1;
}

.blog-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1) brightness(0.7);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transform: scale(1.05);
}

.blog-card:hover .blog-image {
    transform: scale(1.15) rotate(2deg);
    filter: grayscale(0%) contrast(1) brightness(1);
}

.blog-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 210, 255, 0.2);
    color: var(--color-cyan);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 2;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-tag {
    background-color: var(--color-cyan);
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.blog-content {
    padding: 0 35px 35px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
    margin-top: -20px; /* Overlap image gradient */
}

.blog-meta {
    display: flex;
    gap: 20px;
    color: #777;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.blog-meta span i {
    margin-right: 5px;
    color: var(--color-cyan);
}

.blog-title {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.4;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    flex-grow: 1;
}

.blog-card:hover .blog-title {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
}

.blog-author {
    color: #a0a0a0;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author i {
    color: #555;
}

.blog-read-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-read-arrow {
    background-color: var(--color-cyan);
    border-color: var(--color-cyan);
    color: #000;
    transform: rotate(-45deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3);
}

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

@media (max-width: 768px) {
    .blog-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* Call To Action Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(ellipse at bottom, #081e36 0%, #030405 70%);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid rgba(0, 210, 255, 0.1);
}

.cta-bg-graphic {
    position: absolute;
    top: 0;
    right: -5%;
    width: 600px;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="200" height="200" xmlns="http://www.w3.org/2000/svg"><path d="M0 100 L100 0 L200 100 L100 200 Z M100 0 L100 200 M0 100 L200 100 M50 50 L150 150 M50 150 L150 50" stroke="%23ffffff" stroke-opacity="0.05" stroke-width="1" fill="none"/></svg>');
    background-size: 200px 200px;
    background-repeat: repeat;
    opacity: 0.6;
    z-index: 0;
    pointer-events: none;
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
    mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-subtitle {
    color: var(--color-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.cta-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.cta-text {
    font-size: 1.05rem;
    color: #888;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cta-btn-glow {
    background-color: var(--color-cyan);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.4);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 30px;
    padding: 15px 35px;
    border: none;
    transition: all 0.3s ease;
}

.cta-btn-glow:hover {
    background-color: #fff;
    box-shadow: 0 0 35px rgba(255, 255, 255, 0.6);
}

.cta-btn-glow i {
    margin-left: 8px;
}

.btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    border-radius: 30px;
    padding: 15px 35px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #fff;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
    .cta-buttons {
        flex-direction: column;
    }
    .cta-bg-graphic {
        opacity: 0.2;
    }
}

/* Animated Background Bubbles */
.bg-bubble {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    opacity: 0.5;
    animation: float-bubble 20s infinite ease-in-out alternate;
}

.bubble-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,210,255,0.4) 0%, rgba(0,210,255,0) 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0,210,255,0.3) 0%, rgba(0,210,255,0) 70%);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.bubble-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(0,210,255,0.3) 0%, rgba(0,210,255,0) 70%);
    top: 40%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes float-bubble {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

@media (max-width: 991px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stats-grid {
        flex-wrap: wrap;
        gap: 40px 0;
    }
    .stat-item {
        flex: 0 0 50%;
    }
    .stat-item.divider:nth-child(3)::before {
        display: none;
    }
}

@media (max-width: 576px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    .stat-item {
        flex: 0 0 100%;
    }
    .stat-item.divider::before {
        display: none;
    }
}

/* Footer Section */
.site-footer {
    position: relative;
    background-color: #010203;
    overflow: hidden;
    border-top: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: inset 0 30px 60px rgba(0, 210, 255, 0.05), 0 -10px 30px rgba(0, 210, 255, 0.1);
}

.site-footer .bg-bubble {
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    padding: 80px 0 50px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-col.col-about { flex: 0 0 30%; }
.footer-col.col-links { flex: 0 0 16%; }
.footer-col.col-contact { flex: 0 0 26%; }

.footer-logo {
    display: block;
    margin-bottom: 25px;
}

.footer-logo img {
    height: 45px;
}

.footer-desc {
    color: #888;
    font-size: 0.8rem;
    line-height: 1.8;
    margin-bottom: 25px;
    font-weight: 500;
}

.iso-badge {
    display: inline-block;
    padding: 8px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    color: #666;
    font-size: 0.7rem;
    letter-spacing: 1px;
}

.footer-heading {
    color: #666;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

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

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

.footer-links a {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links a i {
    color: #444;
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-cyan);
    transform: translateX(5px);
}

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

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

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.contact-info i {
    color: var(--color-cyan);
    font-size: 1rem;
    margin-top: 3px;
}

.contact-info strong {
    display: block;
    color: #666;
    font-size: 0.7rem;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-info span {
    color: #a0a0a0;
    font-size: 0.85rem;
    font-weight: 500;
    word-break: break-word;
}

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

.social-links a {
    width: 38px;
    height: 38px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover, .social-links a.active {
    background-color: var(--color-cyan);
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

.footer-bottom {
    background-color: #010203;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: 1;
}

.bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: #555;
    font-size: 0.7rem;
    letter-spacing: 1px;
    font-weight: 600;
}

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

.bottom-links a {
    color: #555;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

.back-to-top {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: var(--color-cyan);
    color: #000;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
}

@media (max-width: 991px) {
    .footer-col.col-about,
    .footer-col.col-links,
    .footer-col.col-contact {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .footer-col.col-about,
    .footer-col.col-links,
    .footer-col.col-contact {
        flex: 0 0 100%;
    }
    .bottom-row {
        flex-direction: column;
        text-align: center;
    }
    .bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* Creative Banner Enhancements */
.gradient-text {
    background: linear-gradient(135deg, #fff 0%, var(--color-cyan) 40%, #a450ff 80%, #fff 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shineText 6s linear infinite;
    display: inline-block;
    padding-bottom: 5px;
}

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

.banner-glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,210,255,0.15) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: 0;
    animation: pulseOrb 4s infinite alternate ease-in-out;
}

@keyframes pulseOrb {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.5; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
}

.floating-ring {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.5;
    mix-blend-mode: screen;
}

.ring-1 {
    width: 400px;
    height: 400px;
    background: #00d2ff;
    top: -10%;
    left: 10%;
    animation: floatBlob1 15s infinite alternate ease-in-out;
}

.ring-2 {
    width: 500px;
    height: 500px;
    background: #8a2be2;
    bottom: -20%;
    right: -5%;
    animation: floatBlob2 18s infinite alternate-reverse ease-in-out;
}

.ring-3 {
    width: 300px;
    height: 300px;
    background: #ff007a;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: floatBlob3 12s infinite alternate ease-in-out;
}

@keyframes floatBlob1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(100px, 50px) scale(1.2); }
}

@keyframes floatBlob2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-80px, -60px) scale(1.1); }
}

@keyframes floatBlob3 {
    0% { transform: translate(-50%, -50%) scale(1); }
    100% { transform: translate(-30%, -70%) scale(1.3); }
}

/* Entry Animations */
.animate-pop-in {
    opacity: 0;
    transform: scale(0.8);
    animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpFade 0.8s ease-out 0.2s forwards;
}

.animate-slide-up-delayed {
    opacity: 0;
    transform: translateY(40px);
    animation: slideUpFade 0.8s ease-out 0.4s forwards;
}

@keyframes popIn {
    to { opacity: 1; transform: scale(1); }
}

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

/* About Journey Section */
.about-journey-section {
    padding: 120px 0;
    background-color: #020304;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

/* Background ambient glow */
.about-journey-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    z-index: 0;
}

.journey-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-journey {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid rgba(0, 210, 255, 0.5);
    border-radius: 30px;
    color: var(--color-cyan);
    background: linear-gradient(90deg, rgba(0, 210, 255, 0.1), rgba(0, 210, 255, 0.02));
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.2);
}

.animate-pulse {
    animation: badgePulse 2s infinite alternate;
}

@keyframes badgePulse {
    0% { box-shadow: 0 0 10px rgba(0, 210, 255, 0.1); border-color: rgba(0, 210, 255, 0.3); }
    100% { box-shadow: 0 0 25px rgba(0, 210, 255, 0.4); border-color: rgba(0, 210, 255, 0.8); }
}

.journey-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.highlight-text {
    background: linear-gradient(to right, #00d2ff, #3a7bd5);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    position: relative;
}

.journey-text {
    color: #a0a0a0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 95%;
    text-align: left;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

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

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(0, 210, 255, 0.05);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: 0 15px 30px rgba(0, 210, 255, 0.1);
}

.stat-icon {
    font-size: 1.5rem;
    color: var(--color-cyan);
    margin-bottom: 15px;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2);
    opacity: 1;
    text-shadow: 0 0 15px var(--color-cyan);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.65rem;
    color: #888;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

/* 3D Wireframe Globe Card */
.journey-graphic {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.graphic-card {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 600px;
    position: relative;
    width: 100%;
}

.globe-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
    animation: orbPulse 6s infinite alternate ease-in-out;
}

@keyframes orbPulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 1; }
}

.css-globe {
    position: relative;
    width: 550px;
    height: 550px;
    transform-style: preserve-3d;
    animation: rotateGlobe 40s linear infinite;
    z-index: 1;
}

.globe-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 1px dashed rgba(0, 210, 255, 0.4);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.15) inset;
}

.globe-ring.horizontal {
    border: 1px solid rgba(0, 210, 255, 0.2);
    box-shadow: none;
}

@keyframes rotateGlobe {
    0% { transform: rotateX(15deg) rotateY(0deg); }
    100% { transform: rotateX(15deg) rotateY(360deg); }
}

@media (max-width: 1200px) {
    .journey-grid { gap: 40px; }
    .journey-title { font-size: 2.8rem; }
    .css-globe { width: 350px; height: 350px; }
    .graphic-card { min-height: 500px; }
}

@media (max-width: 991px) {
    .journey-grid { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .journey-graphic { margin-top: 50px; }
    .css-globe { width: 300px; height: 300px; }
    .graphic-card { min-height: 400px; padding: 40px; }
}

/* Page Banner Styles (About, etc.) */
.page-banner {
    position: relative;
    padding: 220px 0 120px;
    background-color: #010203;
    text-align: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.page-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: radial-gradient(circle at center bottom, rgba(0, 210, 255, 0.05) 0%, transparent 60%);
}

.page-banner-content {
    position: relative;
    z-index: 1;
}

.breadcrumb {
    color: #555;
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 700;
}

.breadcrumb span {
    color: #fff;
}

.page-banner-title {
    font-size: 5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -3px;
    line-height: 1.1;
}

.page-banner-subtitle {
    font-size: 1.1rem;
    color: #888;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .page-banner {
        padding: 160px 0 80px;
    }
    .page-banner-title {
        font-size: 3rem;
        letter-spacing: -1px;
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 0 0 120px 0;
    background-color: #030405;
    position: relative;
    z-index: 2;
}

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

.mv-card {
    background-color: #06080a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Add a subtle top glow on hover */
.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: transparent;
    transition: all 0.4s ease;
}

.mission-card:hover::before {
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--color-cyan), transparent);
}

.vision-card:hover::before {
    width: 100%;
    background: linear-gradient(90deg, transparent, #fff, transparent);
}

.mv-icon {
    width: 55px;
    height: 55px;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    margin-bottom: 30px;
}

.mission-card .mv-icon {
    background-color: rgba(0, 210, 255, 0.1);
    color: var(--color-cyan);
    border: 1px solid rgba(0, 210, 255, 0.15);
}

.vision-card .mv-icon {
    background-color: rgba(255, 255, 255, 0.03);
    color: #ccc;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mv-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.mv-text {
    color: #999;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 991px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }
    .mv-card {
        padding: 40px 30px;
    }
}

/* Excellence Section */
.excellence-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #091221 0%, #0d0a1b 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.excellence-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.06) 0%, transparent 60%);
    z-index: -1;
    border-radius: 50%;
}

.excellence-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(223, 128, 255, 0.06) 0%, transparent 60%);
    z-index: -1;
    border-radius: 50%;
}

.excellence-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.excellence-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto 70px auto;
    line-height: 1.6;
}

.excellence-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.excel-card {
    width: 320px;
    padding: 50px 30px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.excel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: skewX(-20deg);
    transition: all 0.7s ease;
}

.excel-card:hover::before {
    left: 150%;
}

.card-blue {
    border-top-color: rgba(0, 210, 255, 0.3);
}

.card-blue:hover {
    transform: translateY(-15px);
    border-color: rgba(0, 210, 255, 0.5);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.15);
    background: rgba(0, 210, 255, 0.06);
}

.card-purple {
    border-top-color: rgba(223, 128, 255, 0.3);
}

.card-purple:hover {
    transform: translateY(-15px);
    border-color: rgba(223, 128, 255, 0.5);
    box-shadow: 0 20px 40px rgba(223, 128, 255, 0.15);
    background: rgba(223, 128, 255, 0.06);
}

.excel-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 30px auto;
    font-size: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.card-blue .excel-icon {
    color: #00d2ff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.15);
}

.card-purple .excel-icon {
    color: #df80ff;
    box-shadow: 0 0 20px rgba(223, 128, 255, 0.15);
}

.excel-card:hover .excel-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 255, 255, 0.1);
}

.excel-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

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

@media (max-width: 768px) {
    .excellence-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* Call To Action (CTA) Section */
.cta-section {
    padding: 80px 0;
    background-color: var(--color-bg);
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-bg-graphic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
}

.cta-compact-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 50px 60px;
    background: linear-gradient(135deg, #0d0f14 0%, var(--color-bg) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.02);
    margin: 20px 0;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.cta-content-left {
    flex: 1;
    min-width: 300px;
}

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

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--color-cyan);
    margin-bottom: 20px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-cyan);
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 15px;
    font-family: var(--font-heading);
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-highlight {
    color: var(--color-cyan);
}

.cta-text {
    font-size: 1rem;
    color: #999;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary.cta-btn-glow {
    background: var(--color-cyan);
    color: #000;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 210, 255, 0.3);
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary.cta-btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.5);
}

.btn-outline.cta-btn-outline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.btn-outline.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: #fff;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .cta-compact-wrapper {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }
    
    .cta-content-right {
        justify-content: center;
        width: 100%;
    }
    
    .cta-text {
        margin-left: auto;
        margin-right: auto;
    }
}}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.2rem;
    }
    .cta-text {
        font-size: 1rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

/* Service Web Banner Styles */
.service-web-banner, .service-custom-banner {
    padding: 180px 0 100px;
    background-color: #030508;
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.service-bg-glow {
    position: absolute;
    top: 50%;
    left: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 60%);
    transform: translateY(-50%);
    z-index: 1;
    border-radius: 50%;
}

.service-banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.breadcrumb span {
    color: var(--color-cyan);
}

.service-banner-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.service-banner-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 500px;
    line-height: 1.6;
}

.service-banner-buttons {
    display: flex;
    gap: 20px;
}

.btn-white {
    background: #fff;
    color: #000;
    border: none;
    border-radius: 50px;
}

.btn-glow-hover:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.btn-outline-dark {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
}

.btn-outline-dark:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-3px);
}

/* Graphic Animation CSS */
.abstract-graphic-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-dashed {
    position: absolute;
    border-radius: 50%;
    border: 2px dashed rgba(0, 210, 255, 0.4);
    animation: spinRotate 20s linear infinite;
}

.outer-circle {
    width: 350px;
    height: 350px;
    border-width: 2px;
    opacity: 0.3;
}

.inner-circle {
    width: 250px;
    height: 250px;
    border-width: 2px;
    animation-direction: reverse;
    opacity: 0.6;
}

.center-dot {
    width: 10px;
    height: 10px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--color-cyan);
    position: absolute;
    z-index: 5;
}

.wave-line {
    position: absolute;
    width: 120%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.animated-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: dashWave 4s ease-in-out infinite alternate;
}

@keyframes spinRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes dashWave {
    from { stroke-dashoffset: 400; }
    to { stroke-dashoffset: 0; }
}

/* Animations */
.animate-fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-fade-in-left {
    opacity: 0;
    animation: fadeInLeft 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@media (max-width: 991px) {
    .service-banner-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .service-banner-subtitle {
        margin: 0 auto 40px auto;
    }
    .service-banner-buttons {
        justify-content: center;
    }
    .abstract-graphic-container {
        margin-top: 50px;
    }
    }
}

/* Service Overview Section */
.service-overview-section {
    padding: 120px 0;
    background-color: #050608;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

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

.overview-subtitle {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-cyan);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.overview-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 50px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.overview-text-block {
    margin-bottom: 40px;
}

.text-block-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.text-block-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

.overview-approach-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.overview-approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--color-cyan);
}

.approach-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.approach-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.overview-stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.overview-stat-item {
    flex: 1;
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-cyan);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Overview Graphic Animation */
.overview-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
}

.graph-container {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 50%, transparent 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    border: 1px solid rgba(255,255,255,0.02);
}

.animated-graph-svg {
    width: 60%;
    height: 60%;
    filter: drop-shadow(0 0 10px rgba(0, 210, 255, 0.3));
}

.graph-line {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: drawLine 4s ease-in-out infinite;
}

.graph-dot {
    fill: #00d2ff;
    r: 4;
    opacity: 0.3;
}

.dot-1 { animation: popDot 4s infinite 0.2s; }
.dot-2 { animation: popDot 4s infinite 0.6s; }
.dot-3 { animation: popDot 4s infinite 1.0s; }
.dot-4 { animation: popDot 4s infinite 1.4s; }
.dot-5 { animation: popDot 4s infinite 1.8s; }

@keyframes drawLine {
    0% { stroke-dashoffset: 250; opacity: 0; }
    5% { opacity: 1; stroke-dashoffset: 250; }
    50%, 80% { stroke-dashoffset: 0; opacity: 1; }
    90%, 100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes popDot {
    0%, 10% { r: 4; opacity: 0.3; fill: #00d2ff; filter: none; }
    15%, 80% { r: 7; opacity: 1; fill: #fff; filter: drop-shadow(0 0 12px #00d2ff); }
    90%, 100% { r: 4; opacity: 0; filter: none; }
}

@media (max-width: 991px) {
    .overview-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .overview-stats {
        flex-wrap: wrap;
    }
    .graph-container {
        width: 350px;
        height: 350px;
    }
}

/* What We Offer Section */
.offer-section {
    padding: 120px 0;
    background-color: #030508;
}

.offer-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.offer-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}

.offer-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 450px;
    line-height: 1.6;
    margin: 0;
}

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

.offer-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transform-style: preserve-3d;
}

.offer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 210, 255, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.offer-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(-5deg);
    border-color: rgba(0, 210, 255, 0.3);
    box-shadow: -15px 25px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 210, 255, 0.15);
}

.offer-card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.offer-card:hover .card-icon {
    background: var(--color-cyan);
    color: #000;
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px var(--color-cyan);
}

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.card-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-cyan);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.card-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.card-link:hover {
    color: #fff;
}

.card-link:hover i {
    transform: translateY(3px);
}

@media (max-width: 991px) {
    .offer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }
    .offer-title {
        font-size: 2.8rem;
    }
}

/* Success Stories Section */
.success-stories-section {
    padding: 120px 0;
    background-color: #050608;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stories-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.stories-title-wrap {
    max-width: 600px;
}

.stories-title {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

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

.stories-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.scroll-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 10px;
}

.carousel-container {
    width: 100%;
    position: relative;
    padding-left: 5%;
}

.carousel-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scrollLeft 30s linear infinite;
    padding: 20px 0;
}

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

@keyframes scrollLeft {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 20px)); }
}

.project-card {
    width: 450px;
    border-radius: 24px;
    background: #fff;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 210, 255, 0.2);
}

.card-image-wrapper {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.project-card:hover .card-image-wrapper img {
    transform: scale(1.08);
}

.card-info {
    padding: 25px;
    text-align: center;
    background: #fff;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.project-name {
    font-size: 1.6rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.project-tags {
    display: inline-block;
    background: var(--color-cyan);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 4px;
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .stories-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    .project-card {
        width: 350px;
    }
    .card-image-wrapper {
        height: 220px;
    }
}

.project-tags i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.project-card:hover .project-tags i {
    transform: translateX(5px);
}

/* Workflow Section */
.workflow-section {
    padding: 120px 0;
    background-color: #030406;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.workflow-header {
    margin-bottom: 80px;
}

.workflow-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.workflow-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}

.workflow-timeline {
    position: relative;
    padding-top: 30px;
}

.timeline-line {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.2) 50%, transparent 50%);
    background-size: 20px 2px;
    background-repeat: repeat-x;
    animation: dashScroll 30s linear infinite;
    z-index: 1;
}

@keyframes dashScroll {
    to { background-position: -1000px 0; }
}

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

.workflow-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.step-node {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #030406;
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 30px;
    transition: all 0.4s ease;
    position: relative;
}

.workflow-step:hover .step-node {
    border-color: var(--color-cyan);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.3);
    transform: scale(1.1);
}

.step-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.step-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

/* Responsive Workflow */
@media (max-width: 1200px) {
    .workflow-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 60px;
    }
    .timeline-line {
        display: none;
    }
}
@media (max-width: 768px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }
    .workflow-step {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }
    .step-node {
        margin-bottom: 0;
        flex-shrink: 0;
    }
    .step-title {
        margin-bottom: 5px;
    }
    }
}

/* FAQ Section */
.faq-section {
    padding: 120px 0 80px 0;
    background-color: #030406;
}

.faq-header {
    margin-bottom: 60px;
}

.faq-subtitle {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--color-cyan);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.faq-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
    letter-spacing: -1px;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    padding: 25px 30px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.04);
}

.faq-icon {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-cyan);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 30px;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
    padding-bottom: 25px;
}

/* Custom Solutions Banner Theme */
.text-green {
    color: #2ecc71 !important;
}

.btn-glow-green {
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.4);
}

.btn-glow-green:hover {
    box-shadow: 0 0 30px rgba(46, 204, 113, 0.6);
}

.service-custom-banner .service-bg-glow {
    background: radial-gradient(circle, rgba(46, 204, 113, 0.08) 0%, transparent 60%);
}

.custom-graphic-theme .circle-dashed {
    border-color: rgba(46, 204, 113, 0.2);
}

.custom-graphic-theme .center-dot {
    background-color: #2ecc71;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.5);
}

.custom-theme.service-overview-section {
    padding-bottom: 80px;
}

.custom-theme .overview-approach-card::before {
    background: #2ecc71;
}

/* Custom Graphic Animations */
.custom-graphic-theme .graph-line {
    stroke-dasharray: 320;
    stroke-dashoffset: 320;
    animation: drawLineGreen 4s ease-in-out infinite;
}

.custom-graphic-theme .graph-dot {
    fill: #2ecc71;
}

.custom-graphic-theme .dot-1 { animation: popDotGreen 4s infinite 0.2s; }
.custom-graphic-theme .dot-2 { animation: popDotGreen 4s infinite 0.6s; }
.custom-graphic-theme .dot-3 { animation: popDotGreen 4s infinite 1.0s; }
.custom-graphic-theme .dot-4 { animation: popDotGreen 4s infinite 1.4s; }
.custom-graphic-theme .dot-5 { animation: popDotGreen 4s infinite 1.8s; }

@keyframes drawLineGreen {
    0% { stroke-dashoffset: 320; opacity: 0; }
    5% { opacity: 1; stroke-dashoffset: 320; }
    50%, 80% { stroke-dashoffset: 0; opacity: 1; }
    90%, 100% { stroke-dashoffset: 0; opacity: 0; }
}

@keyframes popDotGreen {
    0%, 10% { r: 4; opacity: 0.3; fill: #2ecc71; filter: none; }
    15%, 80% { r: 7; opacity: 1; fill: #fff; filter: drop-shadow(0 0 12px #2ecc71); }
    90%, 100% { r: 4; opacity: 0; filter: none; }
}

.custom-theme .card-link {
    color: #2ecc71;
}

.custom-theme .project-card:hover {
    box-shadow: 0 20px 40px rgba(46, 204, 113, 0.2);
}

.custom-theme .project-tags {
    background: #2ecc71;
    color: #fff;
}

.custom-theme .workflow-step:hover .step-node {
    border-color: #2ecc71;
    color: #fff;
    box-shadow: 0 0 20px rgba(46, 204, 113, 0.3);
}

.custom-theme .faq-item.active {
    border-left: 4px solid #2ecc71;
}

.custom-theme .faq-item.active .faq-question {
    color: #2ecc71;
}

.custom-theme .faq-item.active .faq-icon {
    color: #2ecc71;
}

/* Custom Smooth Cursor */
body, a, button, .service-panel, .bento-card {
    cursor: none !important; /* Hide default cursor */
}

.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background-color: var(--color-cyan);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.custom-cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border: 1px solid rgba(0, 210, 255, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s;
}

/* Hover States for Cursor */
.custom-cursor.hover {
    width: 0px;
    height: 0px;
}

.custom-cursor-follower.hover {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 210, 255, 0.1);
    border-color: var(--color-cyan);
    backdrop-filter: blur(2px);
}

/* Glass Card for Clean Animated Look */
.glass-card {
    background-color: rgba(5, 6, 8, 0.6) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass-card:hover {
    transform: translateY(-8px) !important;
    border-color: rgba(0, 210, 255, 0.4) !important;
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.15), inset 0 0 0 1px rgba(0, 210, 255, 0.1) !important;
}

/* ==========================================================================
   Service Pages Styles
   ========================================================================== */

/* Animations */
.animate-fade-in-up { opacity: 0; }
.animate-fade-in-left { opacity: 0; }

.start-anim.animate-fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.start-anim.animate-fade-in-left {
    animation: fadeInLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInUp {
    0% { opacity: 0; transform: translateY(40px); }
    100% { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    0% { opacity: 0; transform: translateX(-40px); }
    100% { opacity: 1; transform: translateX(0); }
}

/* Service Banner */
.service-banner {
    position: relative;
    padding: 180px 0 100px;
    background-color: #010203;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.service-bg-glow {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: floatOrb 10s infinite alternate ease-in-out;
}

.service-bg-glow-2 {
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    filter: blur(60px);
    z-index: 0;
    animation: floatOrb 12s infinite alternate-reverse ease-in-out;
}

@keyframes floatOrb {
    0% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(-60px, 40px) scale(1.2); opacity: 0.9; }
    100% { transform: translate(30px, -30px) scale(0.9); opacity: 0.6; }
}

.service-banner-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.service-banner-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.service-banner-subtitle {
    font-size: 1.2rem;
    color: #a0a0a0;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.service-banner-buttons { display: flex; gap: 20px; }

.btn-white {
    background: #fff;
    color: #000;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 700;
}
.btn-glow-hover:hover { box-shadow: 0 0 20px rgba(255, 255, 255, 0.4); }

.btn-outline-dark {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
}
.btn-outline-dark:hover { background: rgba(255, 255, 255, 0.05); }

/* Abstract Graphic */
.abstract-graphic-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circle-dashed {
    position: absolute;
    border: 1px dashed rgba(0, 210, 255, 0.4);
    border-radius: 50%;
}

.outer-circle { width: 100%; height: 100%; animation: spin 30s linear infinite; }
.inner-circle { width: 60%; height: 60%; border-color: rgba(138, 43, 226, 0.5); animation: spin-reverse 20s linear infinite; }
.center-dot {
    width: 20px; height: 20px; background: var(--color-cyan); border-radius: 50%;
    box-shadow: 0 0 30px var(--color-cyan); animation: pulse 2s infinite alternate;
}

.wave-line { position: absolute; width: 120%; height: 100px; }
.animated-path {
    stroke-dasharray: 400; stroke-dashoffset: 400;
    animation: drawPath 4s infinite linear;
}

@keyframes spin { 100% { transform: rotate(360deg); } }
@keyframes spin-reverse { 100% { transform: rotate(-360deg); } }
@keyframes drawPath { 0% { stroke-dashoffset: 400; } 50% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: -400; } }

/* Overview Section */
.service-overview-section { padding: 100px 0; background: #030405; }
.overview-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.overview-subtitle { color: var(--color-cyan); letter-spacing: 3px; font-size: 0.8rem; margin-bottom: 15px; font-weight: 700; text-transform: uppercase;}
.overview-title { font-size: 3rem; color: #fff; margin-bottom: 40px; font-weight: 800;}
.overview-text-block { margin-bottom: 30px; }
.text-block-title { font-size: 1.5rem; color: #fff; margin-bottom: 15px; }
.text-block-desc { color: #888; line-height: 1.7; }

.overview-approach-card {
    background: rgba(255, 255, 255, 0.03); padding: 30px; border-radius: 15px;
    border-left: 3px solid var(--color-cyan); margin-bottom: 40px;
}
.approach-title { color: #fff; margin-bottom: 10px; }
.approach-desc { color: #a0a0a0; font-size: 0.95rem; line-height: 1.6; }

.overview-stats { display: flex; gap: 40px; }
.overview-stat-item { text-align: left; }
.stat-value { font-size: 3rem; color: #fff; font-weight: 800; margin-bottom: 5px; }
.stat-label { color: var(--color-cyan); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

/* Graph Animation */
.animated-graph-svg { width: 100%; max-width: 400px; filter: drop-shadow(0 0 20px rgba(0, 210, 255, 0.2)); }
.graph-line { stroke-dasharray: 300; stroke-dashoffset: 300; animation: drawGraphLine 3s infinite alternate ease-in-out; }
.graph-dot { fill: #fff; r: 4; animation: pulseDot 2s infinite alternate; }

@keyframes drawGraphLine { to { stroke-dashoffset: 0; } }
@keyframes pulseDot { to { r: 6; fill: var(--color-cyan); filter: drop-shadow(0 0 10px var(--color-cyan)); } }


/* Workflow Section */
.workflow-section { padding: 100px 0; background: #010203; }
.workflow-header { text-align: center; margin-bottom: 60px; }
.workflow-subtitle { color: var(--color-cyan); letter-spacing: 3px; margin-bottom: 10px; font-weight: 700; text-transform: uppercase;}
.workflow-title { font-size: 3rem; color: #fff; font-weight: 800;}
.workflow-timeline { position: relative; max-width: 1000px; margin: 0 auto; }
.timeline-line {
    position: absolute; top: 29px; left: 10%; width: 80%; height: 2px;
    background: linear-gradient(to right, rgba(0, 210, 255, 0.6) 50%, rgba(255, 255, 255, 0.1) 50%);
    background-size: 16px 2px;
    z-index: 0;
    animation: flowDashes 1s linear infinite;
}

@keyframes flowDashes {
    0% { background-position: 0 0; }
    100% { background-position: 16px 0; }
}

.workflow-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; position: relative; z-index: 1; }
.workflow-step { 
    display: flex; flex-direction: column; align-items: center; text-align: center; 
}
.step-node {
    width: 60px; height: 60px; background: #010203; border: 2px solid var(--color-cyan);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; color: #fff; font-weight: 800; margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
    position: relative; z-index: 2;
    animation: pulseNodeGlow 2s infinite alternate;
}

@keyframes pulseNodeGlow {
    from { box-shadow: 0 0 10px rgba(0, 210, 255, 0.1); }
    to { box-shadow: 0 0 25px rgba(0, 210, 255, 0.8), inset 0 0 10px rgba(0, 210, 255, 0.3); }
}

.step-title { font-size: 1.2rem; color: #fff; margin-bottom: 10px; }
.step-desc { color: #888; font-size: 0.85rem; }

/* FAQ Section */
.faq-section { padding: 100px 0; background: #030405; }
.faq-header { margin-bottom: 50px; }
.faq-subtitle { color: var(--color-cyan); letter-spacing: 3px; margin-bottom: 10px; font-weight: 700; text-transform: uppercase;}
.faq-title { font-size: 3rem; color: #fff; font-weight: 800;}
.faq-accordion { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px; margin-bottom: 15px; overflow: hidden;
}
.faq-question {
    width: 100%; padding: 25px; display: flex; justify-content: space-between; align-items: center;
    background: none; border: none; color: #fff; font-size: 1.1rem; font-weight: 600; cursor: pointer; text-align: left;
}
.faq-icon { transition: transform 0.3s ease; color: var(--color-cyan); }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 25px 25px; color: #a0a0a0; line-height: 1.7; margin: 0; }

/* Excellence Section */
.excellence-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, #070a12 0%, #010203 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

/* Call To Action (CTA) Section */
.cta-section { padding: 100px 0; position: relative; background: #020304; overflow: hidden; }
.cta-bg-graphic {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 100%; height: 100%; background: radial-gradient(circle, rgba(0, 210, 255, 0.05) 0%, transparent 60%); z-index: 0;
}
.cta-content { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; text-align: center; }
.cta-content .cta-subtitle { color: var(--color-cyan); letter-spacing: 3px; margin-bottom: 20px; font-weight: 700; text-transform: uppercase; font-size: 0.9rem; }
.cta-content .cta-title { font-size: 3.5rem; color: #fff; font-weight: 700 !important; margin-bottom: 25px; line-height: 1.2; letter-spacing: 1px; }
.cta-content .cta-highlight { color: var(--color-cyan); }
.cta-content .cta-text { color: #a0a0a0; font-size: 1.1rem; line-height: 1.8; margin: 0 auto 40px auto; max-width: 650px; text-align: center; }
.cta-content .cta-buttons { display: flex; justify-content: center; align-items: center; gap: 20px; }
.cta-content .cta-buttons .btn { padding: 15px 40px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; }

/* Global Heading Font Weight & Text Transform Override */
h1, h2, h3, h4, h5, h6,
.hero-title, .cta-title, .service-banner-title, .section-title,
.overview-title, .workflow-title, .faq-title, .excellence-title, .journey-title,
.text-block-title, .approach-title, .step-title, .offer-title {
    font-weight: 700 !important;
    text-transform: capitalize !important;
}

@media (max-width: 992px) {
    .service-banner-grid, .overview-grid { grid-template-columns: 1fr; }
    .offer-grid { grid-template-columns: repeat(2, 1fr); }
    .workflow-grid { grid-template-columns: 1fr; gap: 40px; }
    .timeline-line { display: none; }
    .step-node { margin-bottom: 15px; }
}
@media (max-width: 768px) {
    .offer-grid { grid-template-columns: 1fr; }
    .overview-stats { flex-direction: column; gap: 20px; }
    .service-banner-buttons { flex-direction: column; }
}

/* =========================================
   PORTFOLIO PAGE STYLES
   ========================================= */

/* Portfolio Banner */
.portfolio-banner {
    padding: 160px 0 100px;
    background: #020304;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-banner-title {
    font-size: 4.5rem;
    font-weight: 900 !important;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 2;
}

.portfolio-banner-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Portfolio Filter */
.portfolio-filter-section {
    padding: 40px 0;
    background: #050608;
    position: sticky;
    top: 0;
    z-index: 90;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.filter-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #a0a0a0;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.filter-btn.active {
    background: var(--color-cyan);
    color: #000;
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.filter-btn.active[data-filter="web"] {
    background: var(--color-cyan);
    border-color: var(--color-cyan);
    box-shadow: 0 0 15px rgba(0, 210, 255, 0.3);
}

.filter-btn.active[data-filter="app"] {
    background: #df80ff;
    border-color: #df80ff;
    box-shadow: 0 0 15px rgba(223, 128, 255, 0.3);
}

.filter-btn.active[data-filter="custom"] {
    background: #2ecc71;
    border-color: #2ecc71;
    box-shadow: 0 0 15px rgba(46, 204, 113, 0.3);
}

/* Portfolio Grid */
.portfolio-grid-section {
    padding: 80px 0 120px;
    background: #020304;
    min-height: 800px;
}

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

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    .portfolio-banner-title {
        font-size: 3rem;
    }
}

/* Portfolio Card */
.portfolio-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #111;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1;
    transform: scale(1);
}

.portfolio-card.hidden {
    display: none;
}

.portfolio-card:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

/* Hover Overlay */
.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-category {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.portfolio-card[data-category="web"] .portfolio-category { color: var(--color-cyan); }
.portfolio-card[data-category="app"] .portfolio-category { color: #df80ff; }
.portfolio-card[data-category="custom"] .portfolio-category { color: #2ecc71; }

.portfolio-card-title {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.portfolio-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.portfolio-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.portfolio-link-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.portfolio-card:hover .portfolio-link-btn {
    gap: 15px;
}

.portfolio-card[data-category="web"]:hover { box-shadow: 0 20px 50px rgba(0, 210, 255, 0.15); border: 1px solid rgba(0, 210, 255, 0.3); }
.portfolio-card[data-category="app"]:hover { box-shadow: 0 20px 50px rgba(223, 128, 255, 0.15); border: 1px solid rgba(223, 128, 255, 0.3); }
.portfolio-card[data-category="custom"]:hover { box-shadow: 0 20px 50px rgba(46, 204, 113, 0.15); border: 1px solid rgba(46, 204, 113, 0.3); }

/* =========================================
   BLOG PAGE STYLES
   ========================================= */

/* Blog Banner */
.blog-banner {
    padding: 160px 0 80px;
    background: #020304;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.blog-banner-title {
    font-size: 4rem;
    font-weight: 900 !important;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    position: relative;
    z-index: 2;
}

.blog-banner-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

/* Featured Post */
.featured-post-section {
    padding: 80px 0 40px;
    background: #050608;
}

.featured-post-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #111;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.featured-post-card:hover {
    box-shadow: 0 20px 60px rgba(0, 210, 255, 0.1);
    border-color: rgba(0, 210, 255, 0.2);
    transform: translateY(-5px);
}

.featured-post-image-wrapper {
    overflow: hidden;
    height: 100%;
    min-height: 400px;
}

.featured-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.featured-post-card:hover .featured-post-image {
    transform: scale(1.05);
}

.featured-post-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.post-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: #888;
}

.post-category {
    background: rgba(0, 210, 255, 0.1);
    color: var(--color-cyan);
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-category.cat-design {
    background: rgba(223, 128, 255, 0.1);
    color: #df80ff;
}

.post-category.cat-business {
    background: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
}

.featured-post-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.featured-post-excerpt {
    color: #a0a0a0;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 30px;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    transition: gap 0.3s ease;
}

.featured-post-card:hover .read-more-btn,
.blog-card:hover .read-more-btn {
    gap: 15px;
    color: var(--color-cyan);
}

/* Blog Grid */
.blog-grid-section {
    padding: 40px 0 120px;
    background: #050608;
}

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

.blog-card {
    background: #111;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: all 0.4s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.1);
}

.blog-card-image-wrapper {
    overflow: hidden;
    height: 240px;
}

.blog-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image {
    transform: scale(1.08);
}

.blog-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.blog-card-excerpt {
    color: #888;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .featured-post-card { grid-template-columns: 1fr; }
    .featured-post-image-wrapper { min-height: 300px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-banner-title { font-size: 2.8rem; }
    .featured-post-title { font-size: 1.8rem; }
    .featured-post-content { padding: 30px 20px; }
}

/* =========================================
   CONTACT PAGE STYLES
   ========================================= */

/* Contact Hero Banner */
.contact-banner {
    padding: 180px 0 60px;
    background: #020304;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-banner-title {
    font-size: 4.5rem;
    font-weight: 900 !important;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.contact-banner-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Main Section */
.contact-main-section {
    padding: 100px 0;
    background: #050608;
    position: relative;
    overflow: hidden;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 2;
}

/* Left Column: Glassmorphic Form */
.contact-form-container {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 50px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.form-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
}

.input-group {
    position: relative;
    margin-bottom: 30px;
}

.input-control {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    color: #fff;
    font-size: 1.1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-control:focus,
.input-control:valid {
    border-bottom-color: var(--color-cyan);
}

.input-label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #888;
    font-size: 1.1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.input-control:focus ~ .input-label,
.input-control:valid ~ .input-label {
    top: -20px;
    font-size: 0.85rem;
    color: var(--color-cyan);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 1px solid var(--color-cyan);
    color: var(--color-cyan);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
}

.submit-btn:hover {
    background: var(--color-cyan);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 210, 255, 0.4);
    transform: translateY(-3px);
}

/* Right Column: Direct Contact & Map */
.direct-contact-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.reply-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    color: var(--color-cyan);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 25px;
    width: fit-content;
}

.reply-badge::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--color-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-cyan);
    animation: blink 2s infinite;
}

.direct-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.direct-desc {
    color: #a0a0a0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 50px;
    max-width: 90%;
}

/* Glowing Orb Animation */
.glowing-orb {
    position: absolute;
    top: 30%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.01) 50%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    z-index: -1;
    pointer-events: none;
    animation: orb-pulse 8s infinite alternate ease-in-out;
}

@keyframes orb-pulse {
    0% { transform: scale(0.8) translate(0, 0); opacity: 0.5; }
    50% { transform: scale(1.1) translate(20px, -20px); opacity: 0.8; }
    100% { transform: scale(0.9) translate(-20px, 20px); opacity: 0.5; }
}

/* Contact Info Items */
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-bottom: 50px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #888;
    transition: all 0.3s ease;
}

.info-item:hover .info-icon {
    border-color: var(--color-cyan);
    color: var(--color-cyan);
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.2);
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--color-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
}

/* Office Hours Card */
.office-hours-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.hours-header i { color: var(--color-cyan); }

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.hours-row:last-child { border-bottom: none; }
.hours-day { color: #a0a0a0; }
.hours-time { color: #fff; font-weight: 700; }
.hours-closed { color: var(--color-cyan); font-weight: 800; }

/* Dark Map Embedded */
.map-container {
    width: 100%;
    height: 250px; /* Minimum height */
    flex-grow: 1; /* Stretch to fill empty vertical space */
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) contrast(1.2) sepia(20%) saturate(200%);
    transition: filter 0.3s ease;
}

.map-iframe:hover {
    filter: invert(90%) hue-rotate(180deg) contrast(1.2) sepia(0%) saturate(100%);
}

/* Social Footer Links */
.contact-social-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: auto;
}

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

.social-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-circle:hover {
    background: #fff;
    color: #000;
}

.whatsapp-link {
    color: #2ecc71;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.whatsapp-link:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(46, 204, 113, 0.5);
}

/* Mobile Toggle Styling Details (Desktop hidden) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 9999999 !important; /* Ensure it stays above the mobile drawer */
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background-color: var(--color-cyan);
}
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background-color: var(--color-cyan);
}

@media (max-width: 992px) {
    .contact-grid { grid-template-columns: 1fr; gap: 60px; }
    .contact-form-container { padding: 40px 30px; }
    .glowing-orb { left: 50%; transform: translateX(-50%); }
    
    /* Responsive Mobile Menu */
    .menu-toggle { display: flex; }
    
    /* Unique Full-Screen Mobile Menu Overlay */
    .navbar-menu {
        display: flex !important;
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(5, 6, 8, 0.98) !important;
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start; /* Start from top to avoid cutoff */
        padding: 120px 20px 40px; /* Large top padding to clear header */
        transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999999 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: scale(1.05);
        overflow-y: auto; /* Allow scrolling if screen is too small */
    }

    .navbar-menu.active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: scale(1);
    }
    
    .skydreamix-menu .navbar-link {
        font-size: 1.6rem; /* Refined, attractive size */
        font-weight: 600;
        margin-bottom: 12px; /* Reduced gap between items */
        display: inline-block;
        width: auto;
        color: rgba(255, 255, 255, 0.65);
        transition: all 0.4s ease;
        padding: 5px 10px;
        transform: translateY(20px);
        opacity: 0;
        letter-spacing: 2px;
    }

    /* Staggered animation when active */
    .navbar-menu.active .navbar-link {
        transform: translateY(0);
        opacity: 1;
    }
    .navbar-menu.active .navbar-link:nth-child(1) { transition-delay: 0.1s; }
    .navbar-menu.active .navbar-link:nth-child(2) { transition-delay: 0.15s; }
    .navbar-menu.active .dropdown-container { 
        transform: translateY(0); 
        opacity: 1; 
        transition: all 0.4s ease 0.2s;
    }
    .navbar-menu.active .navbar-link:nth-last-child(3) { transition-delay: 0.25s; }
    .navbar-menu.active .navbar-link:nth-last-child(2) { transition-delay: 0.3s; }
    .navbar-menu.active .btn { transition-delay: 0.35s; transform: translateY(0); opacity: 1; }

    .dropdown-container {
        transform: translateY(20px);
        opacity: 0;
        padding: 0; 
        margin-bottom: 12px; 
        width: 100%; 
        text-align: center;
    }

    .skydreamix-menu .navbar-link:hover,
    .skydreamix-menu .navbar-link.active {
        color: #fff;
        transform: scale(1.05); /* Smooth modern pop */
        text-shadow: 0 5px 15px rgba(0, 210, 255, 0.4);
    }
    
    .skydreamix-menu .navbar-link::after {
        display: none; /* Remove underline for a cleaner look */
    }
    
    .skydreamix-menu .btn {
        margin-left: 0;
        margin-top: 30px;
        width: 80% !important;
        max-width: 300px;
        text-align: center;
        font-size: 1.1rem;
        padding: 15px 0 !important;
        background: linear-gradient(45deg, #00d2ff, #8a2be2) !important;
        border: none !important;
        color: #fff !important;
        border-radius: 50px !important;
        transform: translateY(20px);
        opacity: 0;
        transition: all 0.4s ease;
        box-shadow: 0 10px 20px rgba(0, 210, 255, 0.3) !important;
        font-weight: 700;
        letter-spacing: 1px;
    }
    
    /* Mobile Dropdown Fixes */
    .dropdown-container .navbar-link { margin-bottom: 0; display: inline-block; }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        max-width: 400px;
        margin: 15px auto 0;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        padding: 20px;
        display: none;
    }
    
    /* Display block when active class toggled via JS */
    .dropdown-container.active .dropdown-menu { display: block; animation: slideDown 0.4s ease forwards; }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0;
    }

    .dropdown-item {
        padding: 15px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.02);
        transition: all 0.3s ease;
    }
    
    .dropdown-item:active {
        background: rgba(255, 255, 255, 0.08);
    }
    
    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}

@media (max-width: 768px) {
    .contact-banner-title { font-size: 3rem; }
    .direct-title { font-size: 2rem; }
    .contact-social-bar { flex-direction: column; gap: 20px; align-items: flex-start; }
}

/* =========================================
   ULTRA-SMALL SCREEN RESPONSIVENESS (Max-Width: 375px & 320px)
   ========================================= */

@media (max-width: 375px) {
    /* 1. Global Container & Spacing */
    .container {
        padding: 0 12px; /* Reduce padding from 24px to 12px */
    }

    /* Reduce massive section vertical paddings */
    .hero-section { padding: 120px 0 60px; }
    .about-hero { padding: 120px 0 60px; }
    .portfolio-banner, .blog-banner, .contact-banner { padding: 120px 0 40px; }
    .service-web-banner, .service-app-banner, .service-custom-banner { padding: 120px 0 40px; }
    
    .about-main-section, .vision-mission-section, .about-stats-section { padding: 60px 0; }
    .portfolio-grid-section, .blog-grid-section, .contact-main-section { padding: 60px 0; }
    .overview-section, .features-section, .offer-section, .tech-stack-section { padding: 60px 0; }
    
    /* 2. Typography Downscaling */
    h1, .hero-title, .about-hero-title, .portfolio-banner-title, .blog-banner-title, .contact-banner-title, .service-title {
        font-size: 2.2rem !important; 
        line-height: 1.2 !important;
        letter-spacing: -1px !important;
    }

    h2, .section-title, .form-title, .direct-title {
        font-size: 1.8rem !important;
        line-height: 1.3 !important;
    }

    h3, .blog-card-title, .portfolio-card-title, .feature-title {
        font-size: 1.3rem !important;
    }

    p, .hero-subtitle, .about-hero-desc, .blog-banner-desc, .contact-banner-desc, .service-desc {
        font-size: 0.95rem !important;
    }

    /* 3. Header & Navigation Fixes */
    .sd-logo-icon { font-size: 1.8rem; }
    .sd-title { font-size: 1.1rem; }
    .sd-sub { display: none; } /* Hide sub-text to make room for hamburger menu */
    
    .skydreamix-header { padding: 15px 0; }

    /* 4. Grid Collapsing (Force 1 Column everywhere) */
    .about-grid, .about-stats-grid, .vision-mission-grid, .core-values-grid { 
        grid-template-columns: 1fr; 
        gap: 30px; 
    }
    
    .portfolio-grid, .blog-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .overview-grid, .features-grid, .offer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .tech-stack-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tech icons is fine on mobile */
        gap: 20px;
    }

    /* 5. Specific Component Tweaks */
    .contact-form-container {
        padding: 30px 20px; /* Reduce massive 50px padding */
        border-radius: 20px;
    }
    
    .animated-feature-block {
        padding: 20px 15px;
    }
    
    .glowing-orb {
        width: 250px;
        height: 250px;
        top: 20%;
    }

    .info-item { gap: 15px; }
    .info-icon { width: 40px; height: 40px; font-size: 1rem; }
    .info-value { font-size: 0.95rem; }
    
    .office-hours-card { padding: 20px 15px; }
    .hours-row { font-size: 0.85rem; }

    .map-container { height: 200px; }
}

@media (max-width: 320px) {
    /* Extreme downscale for 320px specifically (e.g., iPhone SE 1st gen) */
    .container { padding: 0 10px; }
    
    h1, .hero-title, .about-hero-title, .portfolio-banner-title, .blog-banner-title, .contact-banner-title, .service-title {
        font-size: 1.8rem !important; 
    }
    
    h2, .section-title, .form-title, .direct-title {
        font-size: 1.5rem !important;
    }
    
    .btn, .submit-btn, .read-more-btn {
        font-size: 0.85rem;
        padding: 12px 20px;
    }
    
    .sd-title { font-size: 1rem; }
    .sd-logo-icon { font-size: 1.5rem; }
}
