@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Rajdhani:wght@300;400;500;600;700&display=swap');
:root {
    --bg-color: #0B2C4A;
    --text-color: #ffffff;
    --neon-blue: #8ebbda;
    --ambient-blue: rgba(0, 102, 255, 0.35);
    --ambient-red: rgba(255, 0, 85, 0.25);
    --nav-height: 100px;
    --font-main: 'Rajdhani', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
h1, h2, h3, h4, h5, h6{
font-family: var(--font-main)  !important;
}
a{
    text-decoration: none;
}
body {
    font-family: "Nunito", sans-serif !important;
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
}
p{
    font-family: "Nunito", sans-serif !important;
    font-weight: 500;
}

/* --- Ambient Cinematic Lighting --- */
.ambient-light {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    pointer-events: none;
    will-change: transform;
}

.blue-light {
    top: -15%;
    left: 15%;
    width: 65vw;
    height: 65vw;
    background: RGB(96, 160, 203,0.12);
    animation: float 22s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.red-light {
    bottom: -15%;
    right: 5%;
    width: 55vw;
    height: 55vw;
    background: RGB(28, 119, 180, 0.12);
    animation: float 26s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate-reverse;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(8%, 12%) scale(1.15);
    }
}

/* --- Particles Canvas --- */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    opacity: 0.6;
}

/* --- Navigation Bar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.65);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    width: 100%;
    max-width: 1920px;
    /* Ultra-wide layout */
    margin: 0 auto;
    padding: 0 5vw;
    /* Adaptive padding */
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* --- Logo Section --- */
.logo-container {
    display: flex;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    color: var(--text-color);
}

.logo img {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.4s ease;
    will-change: transform;
    width: 81px;
    filter: brightness(0) invert(1);
}



.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-title {
    font-size: 1.35rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    line-height: 1.1;
    text-transform: uppercase;
}

.logo-subtitle {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.2rem;
    text-transform: uppercase;
}

/* --- Desktop Nav Links --- */
.nav-links {
    display: flex;
    gap: 2.5rem;
    /* Large spacing */
    align-items: center;
}

.nav-link {
    font-family: var(--font-main)  !important;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.0rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--neon-blue);
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    border-radius: 2px;
    opacity: 0;
}

.nav-link:hover {
    color: var(--text-color);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

.nav-link:hover::after {
    width: 100%;
    opacity: 1;
    box-shadow: 0 0 12px var(--neon-blue), 0 0 24px rgba(0, 240, 255, 0.5);
}

.nav-link.active {
    color: var(--text-color);
}

.nav-link.active::after {
    width: 100%;
    opacity: 1;
    box-shadow: 0 0 12px var(--neon-blue), 0 0 24px rgba(0, 240, 255, 0.6);
}

/* --- CTA Button --- */
.nav-cta {
    display: flex;
    align-items: center;
}

.cta-button {
    text-decoration: none;
    color: var(--bg-color);
    background: var(--text-color);
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
    display: inline-block;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
    /* background: #ffffff; */
}

.cta-button:hover::before {
    transform: translateX(100%);
}

/* --- Mobile Menu Button --- */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 32px;
    height: 22px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    position: absolute;
    width: 100%;
    height: 2px;
    background: var(--text-color);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    left: 0;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-btn span:nth-child(3) {
    bottom: 0;
}

.mobile-menu-btn.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* --- Mobile Menu Overlay --- */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
}

.mobile-nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    opacity: 0;
    transform: translateY(30px);
    transition: color 0.4s ease, text-shadow 0.4s ease;
}

.mobile-nav-link.active {
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.mobile-menu.active .mobile-nav-link {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.mobile-nav-cta {
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(20px);
}

.mobile-menu.active .mobile-nav-cta {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

/* --- Hero Section (Static) --- */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: end;
    justify-content: left;
    background: #000;
}

.hero-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Darken video to make text pop */
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 5vw;
}

.hero-title {
    font-size: clamp(40px, 6vw, 24px);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    text-align: center;
}
.hero-title span{
    background-color:rgba(255, 255, 255, 0.47);
    padding:0px 18px;
    display: inline-block;
    margin-top: 8px;
    opacity: 0;
    transform: translateY(40px) skewY(2deg);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.page-loaded .hero-title span {
    opacity: 1;
    transform: translateY(0) skewY(0);
}
.page-loaded .hero-title span:nth-of-type(1) {
    transition-delay: 0.15s;
}
.page-loaded .hero-title span:nth-of-type(2) {
    transition-delay: 0.4s;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 500;
    line-height: 1.5;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.hero-cta-btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #1C77B4;
    /* Accent Blue */
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-cta-btn:hover {
    background-color: #1C77B4;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



/* --- About Us Section --- */
.about-section {
    background-color: #f5f5f7;
    /* Apple-style light gray */
    color: #1d1d1f;
    padding: 40px;
    position: relative;
    z-index: 20;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    width:100%;
    margin: 0 auto 3rem auto;
}

.about-vision {
    font-size: 19px;
    font-weight: 600;
    line-height: 1.4;
    color: #1d1d1f;
    letter-spacing: -0.01em;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-vision.in-view {
    opacity: 1;
    transform: translateY(0);
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.about-card {
    color: #ffffff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    padding: 2.5rem 2rem;
    transition: transform 0.7s cubic-bezier(0.15, 0.85, 0.3, 1), border-color 0.5s ease, box-shadow 0.7s cubic-bezier(0.15, 0.85, 0.3, 1), opacity 0.6s ease;
    opacity: 0;
    transform: translateY(50px);
    position: relative;
    overflow: hidden;
    background: #3385bc;
    border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer;
}
.about-cards .card-content{
    text-align:center;
}
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.2s cubic-bezier(0.15, 0.85, 0.3, 1), opacity 0.8s ease;
    z-index: 0;
    opacity: 0.7;
}
.about-card:hover .card-bg {
    transform: scale(1.1);
    opacity: 0.85;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: background 0.6s cubic-bezier(0.15, 0.85, 0.3, 1);
}

.about-card:hover .card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 10, 25, 0.75) 50%, rgba(0, 240, 255, 0.04) 100%);
}

/* Beautiful Card Badge */
.card-badge {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.15, 0.85, 0.3, 1);
}

.about-card:hover .card-badge {
    background: rgba(0, 240, 255, 0.12);
    border-color: rgba(0, 240, 255, 0.35);
    color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15);
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    text-align: left;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.15, 0.85, 0.3, 1);
}

.about-card:hover .card-content {
    transform: translateY(0);
}

.about-card h3 {
    width:100%;
    font-size: 1.7rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: #ffffff;
    transition: color 0.4s ease;
    margin-bottom:10px;
}


.about-card p {
    font-weight: 500;
    color: #FFF;
    line-height: 1.55;
}


.about-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- Services Section --- */
.services-section {
    background-color: #040914; /* Deep space black */
    background-image: 
        linear-gradient(to bottom, rgba(4, 9, 20, 0.85) 0%, transparent 15%, transparent 85%, rgba(4, 9, 20, 0.95) 100%),
        linear-gradient(135deg, #040914 0%, #0b1a30 40%, #150d22 70%, #040914 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 8rem 5vw;
    position: relative;
    z-index: 20;
    color: #ffffff;
    overflow: hidden;
}

/* Cinematic Ambient Mesh Glows */
.services-bg-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.services-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(130px);
    opacity: 0.35;
    mix-blend-mode: screen;
    will-change: transform;
}

.services-orb-1 {
    top: -15%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.22) 0%, rgba(0, 102, 255, 0.05) 75%, transparent 100%);
    animation: servicesOrbFloat1 28s ease-in-out infinite alternate;
}

.services-orb-2 {
    bottom: -15%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(255, 0, 85, 0.18) 0%, rgba(168, 85, 247, 0.04) 75%, transparent 100%);
    animation: servicesOrbFloat2 32s ease-in-out infinite alternate;
}

.services-orb-3 {
    top: 30%;
    right: 15%;
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(0, 240, 255, 0.02) 75%, transparent 100%);
    animation: servicesOrbFloat3 24s ease-in-out infinite alternate;
}

.services-orb-4 {
    bottom: 20%;
    left: 20%;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(255, 0, 85, 0.02) 75%, transparent 100%);
    animation: servicesOrbFloat4 30s ease-in-out infinite alternate;
}

@keyframes servicesOrbFloat1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(12%, 8%) scale(1.1); }
}
@keyframes servicesOrbFloat2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-8%, -12%) scale(1.05); }
}
@keyframes servicesOrbFloat3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-10%, 10%) scale(1.15); }
}
@keyframes servicesOrbFloat4 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(8%, -6%) scale(0.95); }
}

.services-container {
    position: relative;
    z-index: 2;
    max-width: 1500px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5rem;
    gap: 3rem;
}

.services-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    flex: 1;
    text-transform: uppercase;
    background: linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0.6) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 12px !important;
}

.services-subtitle-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #888888;
    max-width: 480px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.services-banner {
    flex: 1.2;
    max-width: 750px;
    height: 280px;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4), inset 0 0 30px rgba(255, 255, 255, 0.02);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease, box-shadow 0.6s ease;
}

.services-banner:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 35px 70px rgba(0, 240, 255, 0.1), 0 30px 60px rgba(0, 0, 0, 0.5);
}

.services-banner .banner-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
}

.services-banner .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 10, 21, 0.95) 0%, rgba(5, 10, 21, 0.4) 60%, transparent 100%);
    z-index: 2;
    display: flex;
    align-items: flex-end;
}

.banner-content {
    padding: 2.5rem;
    width: 100%;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.banner-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
    letter-spacing: 0.18em;
    margin-bottom: 0.6rem;
    text-transform: uppercase;
}

.services-banner h3 {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-main);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    text-transform:uppercase;
}

.services-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    font-weight: 500;
    max-width: 85%;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin-bottom: 0.8rem;
    opacity: 0.9;
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-action {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.banner-action i {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.services-banner:hover .banner-action {
    opacity: 1;
    transform: translateY(0);
}

.services-banner:hover .banner-action i {
    transform: translateX(5px);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.service-card {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.6s ease, box-shadow 0.6s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 25px 50px rgba(0, 240, 255, 0.1), 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 0;
}

.service-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card:hover .service-bg {
    transform: scale(1.06);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 10, 21, 0.95) 0%, rgba(5, 10, 21, 0.4) 60%, transparent 100%);
    z-index: 1;
    transition: background 0.6s ease;
}

.service-content {
    position: relative;
    padding: 2.2rem;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.service-tag {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--neon-blue);
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.4);
    letter-spacing: 0.18em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.service-card h3 {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-main);
    letter-spacing: 0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    transition: color 0.4s ease;
}

.service-action {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-action i, .service-action svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.service-card:hover .service-action {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover .service-action i,
.service-card:hover .service-action svg {
    transform: translateX(5px);
}

/* --- Trusted By Section --- */
.trusted-section {
    background-color: #ffffff;
    border-top: 1px solid #f1f5f9;
    border-bottom: 1px solid #f1f5f9;
    padding: 5rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.trusted-container {
    max-width: 100%;
    margin: 0 auto;
}

.trusted-title {
    text-align: center;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #1a253c;
    text-transform: none;
    letter-spacing: -0.02em;
    margin-bottom: 3.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.marquee-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    display: flex;
}

.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.8) 20%, transparent 100%);
}

.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0.8) 20%, transparent 100%);
}

.marquee-content {
    display: flex;
}

.marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1.25rem;
    padding-right: 1.25rem;
    animation: scroll-x 25s linear infinite;
}

.marquee-content:hover .marquee-group {
    animation-play-state: paused;
}

@keyframes scroll-x {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.logo-card {
    flex: 0 0 240px;
    height: 140px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 1.8rem;
    transition: all 0.5s cubic-bezier(0.15, 0.85, 0.3, 1);
    opacity: 1;
}


.client-img {
    max-width: 100%;
    max-height: 100px;
    object-fit: contain;
}


/* --- Certifications Section --- */
.cert-section {
    background-color: #ffffff;
    padding: 3rem 5vw;
}

.cert-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cert-title {
    text-align: center;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: -0.02em;
}

/* Swiper Carousel for Certifications */
.cert-swiper {
    width: 100%;
    padding: 2.5rem 0; /* Add padding to prevent hover scale clipping */
    overflow: hidden;
}

.cert-swiper .swiper-wrapper {
    transition-timing-function: linear !important;
}

.cert-swiper.center-slides .swiper-wrapper {
    justify-content: center;
}

.cert-swiper .swiper-slide {
    width: 380px; /* Explicit width for slidesPerView: 'auto' */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .cert-swiper .swiper-slide {
        width: 280px;
    }
}

.cert-card {
    background-color: #f9fafb;
    border-radius: 16px;
    padding: 1rem;
    width: 100%; /* Fill the swiper-slide container width */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e5e7eb;
    aspect-ratio: 4 / 5;
}

.cert-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.cert-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 8px;
}

/* Certificate HTML Mockup Styles */
.cert-mockup {
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
}

.cert-inner {
    width: 100%;
    height: 100%;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
}

.cert-inner h4 {
    color: #4b5563;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.cert-line {
    width: 60px;
    height: 2px;
    background-color: #1C77B4;
    margin-bottom: 1.5rem;
}

.cert-inner p {
    color: #6b7280;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.cert-inner h3 {
    color: #1f2937;
    font-size: 1.8rem;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 600;
}

/* --- Footer Section --- */
.site-footer {
    position: relative;
    background-color: #000f2b; /* Premium dark navy blue (#000f2b) */
    color: #ffffff;
    padding: 6rem 5vw 2rem;
    overflow: hidden;
}

.footer-bg-pattern {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.site-footer::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px !important;
    letter-spacing: 0.1em;
    color: #ffffff;
    opacity: 0.9;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight:300;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}
.footer-contact-link svg{
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact-link:hover {
    color: #1C77B4;
}

.footer-contact-link i {
    width: 20px;
    height: 20px;
    opacity: 0.8;
}

.footer-contact-row {
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    gap: 0.8rem;
}

.footer-contact-row i {
    width: 20px;
    height: 20px;
    opacity: 0.8;
    margin-top: 2px;
}

.footer-contact-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.footer-contact-inline-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-inline-link:hover {
    color: #1C77B4;
}

.footer-contact-separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cta-heading {
    font-size: 1.6rem;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 0.02em;
    margin-bottom: 2rem;
}

.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    color: #0b1a2f;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.footer-cta-btn i {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.footer-cta-btn:hover i {
    transform: translateX(5px);
}

.footer-bottom {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    gap: 2rem;
}

.footer-logo {
    grid-column: 1;
    justify-self: start;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-social {
    grid-column: 2;
    justify-self: center;
    display: flex;
    gap: 1.25rem;
}

.footer-copyright {
    grid-column: 3;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    justify-self: end;
    margin: 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.social-icon i {
    width: 18px;
    height: 18px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon:hover i {
    transform: scale(1.1);
}

/* Floating Actions */
.floating-actions {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 100;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
}

.floating-btn i,
.floating-btn svg {
    width: 24px;
    height: 24px;
    color: #ffffff;
    stroke: #ffffff;
}

.scroll-top {
    background-color: #1C77B4; /* Premium brand blue background */
    border: 2px solid #ffffff; /* Prominent white border outline */
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, opacity 0.4s ease;
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: #1C77B4; /* Royal blue hover state */
    border-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-4px); /* Sleek lift transition */
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.35); /* Glowing blue shadow */
}

.whatsapp {
    background-color: #25D366;
}

.whatsapp:hover {
    background-color: #1ebe57;
    transform: scale(1.1);
}

/* --- Responsive Layout Adjustments --- */
@media (max-width: 1500px) {
    .nav-links {
        gap: 2.5rem;
    }
}

@media (max-width: 1200px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 992px) {
    .about-cards {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-card {
        aspect-ratio: auto;
        min-height: 10px;
        padding: 1.5rem 1.5rem;
    }

    .about-section {
        padding: 3rem 5vw;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .logo-card {
        flex: 0 0 150px;
        height: 80px;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-logo {
        grid-column: auto;
        justify-self: center;
    }

    .footer-copyright {
        grid-column: auto;
        justify-self: center;
        order: 3;
    }

    .footer-social {
        grid-column: auto;
        justify-self: center;
        order: 2;
    }

    .footer-cta {
        align-items: center;
        text-align: center;
    }

    .cta-heading {
        font-size: 1.4rem;
    }

    .logo-title {
        font-size: 1.15rem;
    }

    .logo-subtitle {
        font-size: 0.55rem;
    }

    .logo img {
        width: 60px;
        height: 60px;
    }

    .mobile-nav-link {
        font-size: 2rem;
    }

    .ambient-light {
        filter: blur(100px);
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .services-banner {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 260px;
    }

    .banner-content {
        padding: 1.8rem;
    }

    .services-banner h3 {
        font-size: 1.6rem;
    }

    .services-banner p {
        font-size: 0.9rem;
        max-width: 100%;
    }

    .banner-action {
        opacity: 1;
        transform: translateY(0);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        aspect-ratio: auto;
        padding: 3rem 1.5rem;
    }

    .logo-card {
        flex: 0 0 120px;
        height: 70px;
        padding: 0.6rem 1rem;
    }

    .cert-grid {
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}
@media (max-width: 540px) {
    .hero-section{
        justify-content: center;
    }
    .impact-section{
            padding: 3rem 5vw;
    }
    .impact-left h2{
        padding-bottom: 0;
    }
    .impact-container {
        gap: 1rem;
    }
    .showcase-section, .testimonials-grid-section{
            padding: 3rem 5vw;
    }
    .testimonial-card{
        padding: 1.5rem 0.5rem 0rem;
    }
    .testimonials-controls{
        margin-top: -0.5rem;
    }
    .services-detail-section{
        padding: 3rem 5vw;
    }
    .services-detail-header{
            margin: 0 auto 3rem;
    }
    .service-block {
        margin-bottom: 0rem;
    }
    .top-section-container{
        padding: 0 0px;
        gap: 0.5rem;
    }
    .service-detail-section{
        padding: 2rem 5vw;
    }
    .vertical-list-card{
        padding: 0;
    }
    .approach-section-card{
        padding: 1rem;
        margin-bottom: 1rem;
    }
    .vertical-list-card{
        margin-bottom: 3rem;
    }
}

/* --- Apple-Style Scroll Reveal System --- */
.reveal-item {
    opacity: 0 !important;
    transform: translateY(45px) scale(0.96);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
    will-change: transform, opacity;
}

.reveal-item.active {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
}

/* --- SVG Filter System (Inline Style Removal) --- */
.svg-filter-hidden {
    position: absolute;
    width: 0;
    height: 0;
    pointer-events: none;
}

/* ==========================================================================
   Dedicated About Page Custom Styles (Moved from about.html internal styles)
   ========================================================================== */

/* --- Premium Breadcrumb Banner --- */
.breadcrumb-banner {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #020617;
    /* Deepest charcoal navy */
    overflow: hidden;
    padding-top: 80px;
    /* Offset for sticky navbar */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.breadcrumb-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(3, 7, 18, 0.4) 0%, #020617 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 1;
}

/* Cinematic glows */
.breadcrumb-glow-blue {
    position: absolute;
    top: -50%;
    left: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: floating-glow-left-bc 12s infinite alternate ease-in-out;
}

.breadcrumb-glow-red {
    position: absolute;
    bottom: -50%;
    right: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.06) 0%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
    animation: floating-glow-right-bc 12s infinite alternate ease-in-out;
}

@keyframes floating-glow-left-bc {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.1);
    }
}

@keyframes floating-glow-right-bc {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-40px, -30px) scale(1.1);
    }
}

.breadcrumb-container {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.breadcrumb-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUpBreadcrumb 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUpBreadcrumb 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s forwards;
}

.breadcrumb-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.breadcrumb-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--neon-blue);
    transition: width 0.3s ease;
}

.breadcrumb-link:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.breadcrumb-link:hover::after {
    width: 100%;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.2);
}

.breadcrumb-active {
    color: var(--neon-blue);
    font-weight: 600;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
}

@keyframes fadeInUpBreadcrumb {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Editorial Layout: Who We Are --- */
.editorial-section {
    padding: 8rem 5vw;
    background-color: #030712;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.editorial-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.editorial-left h2 {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.editorial-left p.tagline {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--neon-blue);
    line-height: 1.4;
    border-left: 3px solid var(--neon-blue);
    padding-left: 1.5rem;
}

.editorial-right .para {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-weight: 500;
}

.editorial-right .para strong {
    color: #ffffff;
    font-weight: 500;
}

/* --- Responsive Queries --- */
@media (max-width: 992px) {
    .editorial-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

/* --- Premium Impact & Philosophy Section --- */
.impact-section {
    position: relative;
    width: 100%;
    padding: 8rem 5vw;
    background: linear-gradient(135deg, #0e1e38 0%, #070e1b 100%);
    /* Sleek premium steel navy/royal blue gradient */
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-ambient-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.impact-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.02;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 0;
}

.impact-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.impact-left {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    position: sticky;
    top: 120px;
    align-self: start;
}

.impact-left.active {
    opacity: 1;
    transform: none;
}

.impact-left h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    padding-bottom: 45px;
}

.impact-right {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
}

.impact-right.active {
    opacity: 1;
    transform: translateY(0);
}

/* Highlighted Border Box */
.philosophy-box {
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}


.philosophy-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: radial-gradient(circle at 10% 20%, rgba(0, 240, 255, 0.04) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.philosophy-box:hover::before {
    opacity: 1;
}

.philosophy-text {
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.supporting-para {
    font-size: 1.1rem;
    color: #FFF;
    line-height: 1.7;
    font-weight: 500;
}

@media (max-width: 992px) {
    .impact-container {
        grid-template-columns: 1fr;
        gap: 0rem;
    }
    .impact-left {
        position: static;
    }
    .impact-section{
        padding: 3rem 5vw !important;
    }
    .showcase-section{
        padding: 2rem 5vw !important;
    }
    .services-detail-header{
            margin: 0 auto 2rem !important;
    }
    .service-block{
        margin-bottom: 0rem !important;
    }
}

/* --- Premium Image Showcase Section --- */
.showcase-section {
    position: relative;
    width: 100%;
    padding: 8rem 5vw;
    background-color: #faf9f6;
    /* Premium Alabaster Off-White */
    color: #0b0f19;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 5rem;
}

.showcase-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #0b0f19;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.showcase-header p {
    font-size: 1.1rem;
    color: rgba(11, 15, 25, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    /* Spacious modern gap */
}

.showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    /* Elegant vertical rectangular aspect ratio */
    background-color: #e5e7eb;
    /* Minimal gray placeholder style before image loads */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    /* cursor: pointer; */
}
.aboutimg {
    cursor: auto !important;
}

.showcase-img-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    border-radius:25px !important;
}
.showcase-img-wrapper .hover-title{
       text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.6) 100%);
    opacity: 0.4;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.showcase-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2.5rem;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.showcase-card p.card-tag {
    font-size: 0.9rem;
    color: var(--neon-blue);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Hover Effects */
.showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 240, 255, 0.15);
    /* Soft glow around card edges */
}

.showcase-card:hover .showcase-img {
    transform: scale(1.08);
    /* Smooth cinematic zoom-in */
}

.showcase-card:hover .showcase-overlay {
    opacity: 0.7;
    /* Subtle overlay darkening effect */
}

.showcase-card:hover .showcase-card-content {
    transform: translateY(0);
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .showcase-card {
        aspect-ratio: 4 / 3;
    }
}

/* --- Premium Cinematic Video Showcase Section --- */
.video-showcase-section {
    position: relative;
    width: 100%;
    color: #ffffff;
    overflow: hidden;
}

.video-showcase-ambient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.video-showcase-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.video-showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.video-showcase-header h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--neon-blue);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-family: 'Rajdhani', sans-serif;
}

.video-showcase-header h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-family: 'Rajdhani', sans-serif;
}

.video-showcase-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight:500;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Video Frame with glassmorphism edges */
.video-frame-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9; /* Cinematic aspect ratio */
    overflow: hidden;
    transform: scale(0.98);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.8s ease;
}

.video-frame-wrapper.reveal-item.active {
    transform: scale(1);
}

.showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.6) 100%);
    transition: opacity 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

/* Center Glassmorphic Play Button */
.play-btn-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
}

.play-btn-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.play-btn-circle i,
.play-btn-circle svg {
    margin-left: 6px; /* Offset to center triangle play arrow visually */
    width: 32px;
    height: 32px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Zoom and Glow Effects */
.play-btn-container:hover .play-btn-circle {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.18);
    border-color: var(--neon-blue);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.25), 0 0 30px rgba(0, 240, 255, 0.2);
    color: var(--neon-blue);
}

.play-btn-container:hover .play-btn-circle i,
.play-btn-container:hover .play-btn-circle svg {
    transform: scale(1.15);
}

.video-frame-wrapper:hover .showcase-video {
    transform: scale(1.02); /* Cinematic subtle scale while maintaining clean layout */
}

.video-frame-wrapper:hover .video-dark-overlay {
    opacity: 0.4;
}

/* ==========================================================================
   CONTACT PAGE STYLES (Glassmorphic & Premium)
   ========================================================================== */
.contact-section {
    padding: 100px 5% 120px 5%;
    position: relative;
    z-index: 10;
    max-width: 1500px;
    margin: 0 auto;
}

.contact-grid-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .contact-grid-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.contact-details-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-intro h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.contact-intro p {
    font-size: 1.1rem;
    color: #94a3b8;
    line-height: 1.6;
}

.contact-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 240, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 240, 255, 0.05);
}

.info-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ebbda;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.contact-info-card:hover .info-card-icon {
    background: #8ebbda;
    color: #020617;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
    transform: scale(1.05);
}

.info-card-content h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 0.5rem;
}

.info-card-content p {
    color: #e2e8f0;
    line-height: 1.5;
    font-size: 1.05rem;
}

.info-card-content a {
    color: #e2e8f0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card-content a:hover {
    color: #8ebbda;
}

/* Contact Inquiry Form */
.contact-form-col {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    position: relative;
    overflow: hidden;
}

@media (max-width: 640px) {
    .contact-form-col {
        padding: 1.75rem;
    }
}

.contact-form-col::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(239, 68, 68, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.inquiry-form {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 640px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }
}
.cyber-career-form{
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #FFF;
    letter-spacing: 0.1em;
}

.form-group input,
.form-group select,
.form-group textarea {
    /* background: rgba(15, 23, 42, 0.6); */
    border: 1px solid rgb(255 255 255 / 35%);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: #475569;
    font-size: 1rem;
    font-family: 'Rajdhani', sans-serif;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #475569;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: rgba(0, 240, 255, 0.25);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(0, 240, 255, 0.6);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15), 0 0 0 1px rgba(0, 240, 255, 0.2) inset;
}

.form-group select option {
    background: #090d16;
    color: #ffffff;
}

.form-submit-btn {
    width:100%;
    align-self: center;
    text-align:center;
    justify-content: center;
    background: RGB(28, 119, 180);
    border: none;
    border-radius: 12px;
    padding: 1.1rem 2.5rem;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
 /* =============================================
           OFFICES GRID SECTION
        ============================================= */
        .offices-grid-section {
            padding: 80px 5% 100px;
            background: linear-gradient(to bottom, #050508 0%, #020509 100%);
            position: relative;
            z-index: 10;
            border-top: 1px solid rgba(255, 255, 255, 0.03);
            border-bottom: 1px solid rgba(255, 255, 255, 0.03);
        }

        .offices-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .offices-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .offices-badge {
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.85rem;
            font-weight: 700;
            color: #60a0cb;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 0.75rem;
        }

        .offices-header h2 {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(2rem, 3.5vw, 2.75rem);
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .offices-subtitle {
            font-size: 1.1rem;
            color: #94a3b8;
            font-weight: 300;
        }

        .offices-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2.5rem;
        }

        @media (max-width: 1024px) {
            .offices-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 768px) {
            .offices-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
        }

        /* Premium office card styling */
        .office-card {
            background: rgba(255, 255, 255, 0.015);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 20px;
            padding: 2.2rem 2rem;
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .office-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 240, 255, 0.02) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .office-card:hover::before {
            opacity: 1;
        }

        .office-card.active {
            background: rgba(0, 240, 255, 0.025);
            border-color:#60a0cb;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 240, 255, 0.15);
        }

        .office-card.active .office-icon {
            background: #60a0cb;
            color: #020617;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
            transform: scale(1.05) rotate(45deg);
        }

        .office-card-header {
            display: flex;
            align-items: center;
            gap: 1.2rem;
        }

        .office-icon {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: rgba(0, 240, 255, 0.06);
            border: 1px solid rgba(0, 240, 255, 0.2);
            color: #60a0cb;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        /* Custom rotated navigation arrow look */
        .nav-arrow-icon {
            transform: rotate(-45deg);
            transition: transform 0.4s ease;
        }

        .office-card:hover .nav-arrow-icon {
            transform: rotate(0deg);
        }

        .office-card:hover .office-icon {
            background: #60a0cb;
            color: #020617;
            box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
        }

        .office-card-header h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: 0.03em;
            text-transform: uppercase;
        }

        .office-details {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
            flex-grow: 1;
        }

        .office-address {
            color: #cbd5e1;
            line-height: 1.6;
            font-size: 1.05rem;
            font-weight: 300;
            min-height: 72px; /* Prevent alignment stack variance */
        }

        .office-quick-info {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            margin-top: auto;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding-top: 1.25rem;
        }

        .office-link {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.95rem;
            transition: color 0.3s ease;
        }

        .office-link i {
            width: 16px;
            height: 16px;
            color: #60a0cb;
            flex-shrink: 0;
        }

        .office-link:hover {
            color: #60a0cb;
        }

        /* =============================================
           GOOGLE MAP SECTION
        ============================================= */

        .gmap-section {
            width: 100%;
            background: #020509;
            padding-bottom: 0;
        }

        /* ---- Header ---- */
        .gmap-header {
            padding: 5rem 6vw 2.5rem;
            background: linear-gradient(to bottom, #020509, #03080f);
        }

        .gmap-header-inner {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .gmap-label-row {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.2rem;
        }

        .gmap-label-line {
            display: block;
            width: 40px;
            height: 1px;
            background: linear-gradient(to right, transparent, rgba(0, 200, 255, 0.5));
        }

        .gmap-label-line:last-child {
            background: linear-gradient(to left, transparent, rgba(0, 200, 255, 0.5));
        }

        .gmap-label-text {
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.32em;
            text-transform: uppercase;
            color: rgba(0, 200, 255, 0.6);
        }

        .gmap-heading {
            font-family: 'Rajdhani', sans-serif;
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #ffffff;
            margin: 0;
            line-height: 1;
        }

        .gmap-heading span {
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(0, 220, 255, 0.75);
            text-shadow:
                0 0 24px rgba(0, 220, 255, 0.45),
                0 0 55px rgba(0, 220, 255, 0.15);
        }

        /* ---- Map frame ---- */
        .gmap-frame-wrap {
            position: relative;
            width: 100%;
            height: 520px;
            overflow: hidden;
        }

        /* Glowing top border */
        .gmap-frame-wrap::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: linear-gradient(90deg,
                transparent 0%,
                rgba(0, 200, 255, 0.15) 15%,
                rgba(0, 200, 255, 0.5) 50%,
                rgba(0, 200, 255, 0.15) 85%,
                transparent 100%
            );
            z-index: 5;
        }

        /* Dark overlay on the map edges for a cinematic feel */
        .gmap-frame-wrap::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(to right, rgba(2, 5, 14, 0.4) 0%, transparent 15%, transparent 85%, rgba(2, 5, 14, 0.4) 100%),
                linear-gradient(to bottom, rgba(2, 5, 14, 0.25) 0%, transparent 12%, transparent 75%, rgba(2, 5, 14, 0.55) 100%);
            pointer-events: none;
            z-index: 2;
        }

        /* The iframe */
        .gmap-iframe {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            border: 0;
            display: block;
            /* Invert + saturate for a dark-toned map aesthetic */
            filter: invert(90%) hue-rotate(180deg) saturate(1.1) brightness(0.88);
        }

        /* Corner accent marks */
        .gmap-corner {
            position: absolute;
            width: 20px;
            height: 20px;
            z-index: 6;
            pointer-events: none;
        }

        .gmap-corner-tl { top: 0;    left: 0;    border-top: 2px solid rgba(0,200,255,0.6);  border-left:  2px solid rgba(0,200,255,0.6); }
        .gmap-corner-tr { top: 0;    right: 0;   border-top: 2px solid rgba(0,200,255,0.6);  border-right: 2px solid rgba(0,200,255,0.6); }
        .gmap-corner-bl { bottom: 0; left: 0;    border-bottom: 2px solid rgba(0,200,255,0.6); border-left:  2px solid rgba(0,200,255,0.6); }
        .gmap-corner-br { bottom: 0; right: 0;   border-bottom: 2px solid rgba(0,200,255,0.6); border-right: 2px solid rgba(0,200,255,0.6); }

        /* ---- Floating info card ---- */
        .gmap-info-card {
            position: absolute;
            bottom: 2rem;
            left: 2rem;
            z-index: 10;
            background: rgba(3, 8, 20, 0.88);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(0, 200, 255, 0.18);
            border-radius: 6px;
            padding: 1.6rem 1.8rem;
            display: flex;
            gap: 1.2rem;
            align-items: flex-start;
            min-width: 280px;
            max-width: 360px;
            box-shadow:
                0 0 40px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(0, 200, 255, 0.06) inset;
        }

        /* Pin icon container */
        .gmap-info-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(0, 200, 255, 0.1);
            border: 1px solid #60a0cb;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #60a0cb;
            flex-shrink: 0;
        }

        .gmap-info-body {
            flex: 1;
        }

        .gmap-info-body h3 {
            font-family: 'Rajdhani', sans-serif;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: #ffffff;
            margin: 0 0 0.4rem;
        }

        .gmap-info-body p {
            font-family: 'Nunito', sans-serif;
            font-size: 0.82rem;
            font-weight: 400;
            color: rgba(200, 220, 255, 0.55);
            line-height: 1.55;
            margin: 0 0 1.1rem;
        }

        /* Action buttons */
        .gmap-info-actions {
            display: flex;
            gap: 0.65rem;
            align-items: center;
            flex-wrap: wrap;
        }

        .gmap-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            font-family: 'Rajdhani', sans-serif;
            font-size: 0.7rem;
            font-weight: 700;
            letter-spacing: 0.18em;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 3px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .gmap-btn-primary {
            background: rgba(0, 200, 255, 0.12);
            border: 1px solid #60a0cb;
            color: #60a0cb;
            padding: 0.55rem 1rem;
        }

        .gmap-btn-primary:hover {
            background: rgba(0, 200, 255, 0.22);
            box-shadow: 0 0 18px rgba(0, 200, 255, 0.25);
            color: #ffffff;
        }

        .gmap-btn-ghost {
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.12);
            color: rgba(255, 255, 255, 0.4);
            padding: 0.55rem 0.9rem;
        }

        .gmap-btn-ghost:hover {
            border-color: rgba(255, 255, 255, 0.3);
            color: rgba(255, 255, 255, 0.8);
        }

        /* ---- RESPONSIVE ---- */
        @media (max-width: 768px) {
            .gmap-frame-wrap { height: 400px; }
            .gmap-info-card {
                bottom: 1rem;
                left: 1rem;
                right: 1rem;
                max-width: unset;
                padding: 1.2rem 1.2rem;
            }
            .gmap-header { padding: 4rem 6vw 2rem; }
        }

        @media (max-width: 480px) {
            .gmap-frame-wrap { height: 320px; }
            .gmap-info-card { flex-direction: column; gap: 0.8rem; }
            .gmap-info-icon { width: 34px; height: 34px; }
        }

@media (max-width: 640px) {
    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }
}

.form-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 240, 255, 0.3), 0 12px 30px rgba(217, 70, 239, 0.3);
}

.form-submit-btn:hover::before {
    opacity: 1;
}

.form-submit-btn:active {
    transform: translateY(-1px);
}

.form-submit-btn i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.form-submit-btn:hover i {
    transform: translate(3px, -3px);
}

/* ==========================================================================
   ICECUBE PREMIUM CONTACT UPGRADE ADDITIONS
   ========================================================================== */

/* Accent typography glow */
.accent-glow {
    background: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 35px rgba(0, 240, 255, 0.2);
}

/* Heading glow line */
.intro-glow-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8ebbda, transparent);
    margin-bottom: 2rem;
    position: relative;
    border-radius: 2px;
}

.intro-glow-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: #8ebbda;
    box-shadow: 0 0 10px #8ebbda, 0 0 20px #8ebbda;
    border-radius: 2px;
    animation: pulseGlowLine 2.5s infinite alternate;
}

@keyframes pulseGlowLine {
    0% { transform: scaleX(1); opacity: 0.6; }
    100% { transform: scaleX(2); opacity: 1; }
}

.contact-lead {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 2rem;
}

/* 3D Holographic Spinning Cube Brand Element */
.cube-container {
    position: relative;
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
    margin: 1.5rem 0 2.5rem;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
    border-radius: 20px;
    border: 1px dashed rgba(0, 240, 255, 0.12);
    overflow: hidden;
}

.hologram-cube {
    width: 80px;
    height: 80px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateX(-20deg) rotateY(45deg);
    animation: spinCube 14s linear infinite;
    z-index: 2;
}

@keyframes spinCube {
    0% { transform: rotateX(-20deg) rotateY(0deg) rotateZ(0deg); }
    100% { transform: rotateX(-20deg) rotateY(360deg) rotateZ(360deg); }
}

.cube-face {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 1.5px solid rgba(0, 240, 255, 0.45);
    background: rgba(0, 240, 255, 0.02);
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.15) inset, 0 0 5px rgba(0, 240, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.5s ease, background 0.5s ease;
}

/* Face lines inside for cybernetic wireframe details */
.cube-face::before, .cube-face::after {
    content: '';
    position: absolute;
    background: rgba(0, 240, 255, 0.2);
}

.cube-face::before {
    width: 100%;
    height: 1px;
    top: 50%;
    left: 0;
}

.cube-face::after {
    height: 100%;
    width: 1px;
    left: 50%;
    top: 0;
}

.cube-face.front  { transform: rotateY(0deg) translateZ(40px); }
.cube-face.back   { transform: rotateY(180deg) translateZ(40px); }
.cube-face.left   { transform: rotateY(-90deg) translateZ(40px); }
.cube-face.right  { transform: rotateY(90deg) translateZ(40px); }
.cube-face.top    { transform: rotateX(90deg) translateZ(40px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(40px); }

/* Hologram orbit rings */
.hologram-ring {
    position: absolute;
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.hologram-ring.ring-1 {
    width: 160px;
    height: 160px;
    transform: rotateX(75deg);
    animation: spinRing1 16s linear infinite;
    border-top: 1.5px solid rgba(0, 240, 255, 0.4);
}

.hologram-ring.ring-2 {
    width: 190px;
    height: 190px;
    transform: rotateX(70deg) rotateY(15deg);
    animation: spinRing2 20s linear infinite reverse;
    border-bottom: 1.5px solid rgba(217, 70, 239, 0.35);
}

@keyframes spinRing1 {
    0% { transform: rotateX(75deg) rotateZ(0deg); }
    100% { transform: rotateX(75deg) rotateZ(360deg); }
}

@keyframes spinRing2 {
    0% { transform: rotateX(70deg) rotateY(15deg) rotateZ(0deg); }
    100% { transform: rotateX(70deg) rotateY(15deg) rotateZ(360deg); }
}

.hologram-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.15) 0%, transparent 70%);
    filter: blur(15px);
    pointer-events: none;
    z-index: 0;
}

/* Trust Credibility Feature Bullet Column */
.contact-mini-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.feature-item:hover {
    background: rgba(0, 240, 255, 0.02);
    border-color: rgba(0, 240, 255, 0.18);
    transform: translateX(6px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(0, 240, 255, 0.03);
}

.feature-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.18);
    color: #8ebbda;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.05);
}

.feature-item:hover .feature-icon {
    background: #8ebbda;
    color: #020617;
    box-shadow: 0 0 14px rgba(0, 240, 255, 0.4);
    transform: scale(1.06);
}

.feature-text h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.feature-text p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
    transition: color 0.3s ease;
}

.feature-item:hover .feature-text p {
    color: #cbd5e1;
}

/* Cyber Corner Accent Brackets for Form Col */
.form-corner {
    position: absolute;
    width: 14px;
    height: 14px;
    border-color: rgba(0, 240, 255, 0.35);
    border-style: solid;
    z-index: 10;
    pointer-events: none;
    transition: all 0.4s ease;
}

.form-corner-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.form-corner-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.form-corner-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.form-corner-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.contact-form-col:hover .form-corner {
    border-color: #8ebbda;
    width: 18px;
    height: 18px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.25);
}

/* Form Submission Success Screen Container */
.form-success-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 3rem 1.5rem;
    animation: successFadeIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes successFadeIn {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

.success-glow-ring {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.05);
    border: 2px solid rgba(0, 240, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.2rem;
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.18);
}

.success-glow-ring::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(217, 70, 239, 0.4);
    animation: spinRing1 18s linear infinite;
}

.success-icon-wrap {
    color: #8ebbda;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: scaleCheck 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
    transform: scale(0);
}

.success-icon-wrap i,
.success-icon-wrap svg {
    width: 38px;
    height: 38px;
}

@keyframes scaleCheck {
    to { transform: scale(1); }
}

.form-success-container h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #ffffff;
    margin-bottom: 1.25rem;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
    text-transform: uppercase;
}

.success-p1 {
    font-size: 1.15rem;
    color: #e2e8f0;
    margin-bottom: 0.75rem;
    font-weight: 500;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.05em;
}

.success-p2 {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 2.5rem;
    max-width: 480px;
    font-weight: 500;
}

.form-reset-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 0.9rem 2rem;
    color: #cbd5e1;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: all 0.3s ease;
}

.form-reset-btn:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 240, 255, 0.45);
    color: #8ebbda;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.1);
}

.form-reset-btn i,
.form-reset-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.6s ease;
}

.form-reset-btn:hover i,
.form-reset-btn:hover svg {
    transform: rotate(180deg);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ==========================================================================
   STREETWEAR FUTURISTIC FASHION SHOWCASE STYLES
   ========================================================================== */
.streetwear-body {
    background-color: #050508;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    position: relative;
}

/* Soft ambient atmospheric lighting */
.streetwear-ambient-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.25;
    filter: blur(140px);
}

.glow-blue {
    top: -10vw;
    left: -10vw;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.2) 0%, transparent 70%);
}

.glow-magenta {
    bottom: 10vw;
    right: -10vw;
    background: radial-gradient(circle, rgba(255, 0, 128, 0.15) 0%, transparent 70%);
}

#streetwear-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
}

/* Navbar */
.streetwear-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(5, 5, 8, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    z-index: 100;
}

.streetwear-nav-container {
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.streetwear-logo a {
    font-family: 'Syne', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(90deg, #ffffff, #888888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.streetwear-nav-links {
    display: flex;
    gap: 3rem;
}

@media (max-width: 768px) {
    .streetwear-nav-links {
        display: none;
    }
}

.streetwear-nav-links a {
    color: #888888;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    transition: color 0.3s ease;
}

.streetwear-nav-links a.active,
.streetwear-nav-links a:hover {
    color: #ffffff;
}

.streetwear-cta-btn {
    border: 1px solid #ffffff;
    padding: 0.75rem 2rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    transition: all 0.3s ease;
}

.streetwear-cta-btn:hover {
    background: #ffffff;
    color: #050508;
}

/* Hero Section */
.streetwear-hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    z-index: 10;
}

.streetwear-hero-content {
    max-width: 1000px;
}

.streetwear-hero-content h1 {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 2rem;
}

.streetwear-hero-content p {
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    color: #888888;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Section */
.streetwear-services-sec {
    padding: 100px 5% 150px 5%;
    position: relative;
    z-index: 10;
}

.streetwear-container {
    max-width: 1400px;
    margin: 0 auto;
}

.streetwear-sec-header {
    text-align: center;
    margin-bottom: 5rem;
}

.streetwear-tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    color: #1C77B4;
    display: block;
    margin-bottom: 1rem;
}

.streetwear-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #ffffff;
}

.streetwear-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1C77B4, #ff0080);
    margin: 2rem auto 0 auto;
}

/* Service Card Grid */
.streetwear-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.25rem;
}

@media (max-width: 1200px) {
    .streetwear-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 640px) {
    .streetwear-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Custom Interactive 3D Card */
.streetwear-card {
    background: rgba(10, 10, 15, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: border-color 0.4s ease, box-shadow 0.4s ease;
    transform-style: preserve-3d;
}

.streetwear-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(255, 255, 255, 0.03);
}

/* Hover dynamic lighting radial follow circle */
.streetwear-card-glow {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

/* High contrast immersive image block */
.streetwear-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    background: #0b0b0e;
    transform: translateZ(20px); /* 3D pop effect */
}

.streetwear-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.1);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.streetwear-card:hover .streetwear-img {
    transform: scale(1.08);
    filter: brightness(1.05) contrast(1.15);
}

/* Soft dark overlay */
.streetwear-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(5, 5, 8, 0.95) 100%);
    z-index: 2;
}

/* Premium Typography Details */
.streetwear-card-content {
    padding: 1.5rem 0.5rem 0.5rem 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transform: translateZ(10px); /* 3D layer */
}

.streetwear-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.streetwear-card-number {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #ff0080;
}

.streetwear-card-title {
    font-family: 'Syne', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
}

.streetwear-card-desc {
    font-size: 0.9rem;
    color: #888888;
    line-height: 1.5;
    font-weight: 500;
}

/* Entrance Animations classes */
.reveal-card,
.reveal-item,
.reveal-up,
.reveal-up-delay {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-card {
    transform: translateY(50px) scale(0.96);
}

.reveal-item {
    transform: translateY(30px);
}

.reveal-up {
    transform: translateY(60px);
}

.reveal-up-delay {
    transform: translateY(40px);
    transition-delay: 0.2s;
}

.reveal-card.in-view,
.reveal-item.in-view,
.reveal-up.in-view,
.reveal-up-delay.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Futuristic Streetwear Footer */
.streetwear-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    background-color: #020204;
    padding: 80px 5% 40px 5%;
    position: relative;
    z-index: 10;
}

.streetwear-footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

@media (max-width: 768px) {
    .streetwear-footer-container {
        flex-direction: column;
        gap: 3rem;
    }
}

.streetwear-footer-brand {
    max-width: 500px;
}

.streetwear-footer-brand .brand-logo {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    display: block;
    margin-bottom: 1.5rem;
}

.streetwear-footer-brand p {
    color: #666666;
    line-height: 1.6;
}

.streetwear-footer-links {
    display: flex;
    gap: 6rem;
}

@media (max-width: 480px) {
    .streetwear-footer-links {
        gap: 3rem;
    }
}

.link-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #888888;
    margin-bottom: 1.5rem;
}

.link-col a {
    display: block;
    color: #666666;
    text-decoration: none;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.link-col a:hover {
    color: #ffffff;
}

.streetwear-footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    text-align: center;
    color: #444444;
    font-size: 0.8rem;
}

/* ==========================================================================
   GLOBAL 3D PARALLAX & MAGNETIC HOVER TRANSITIONS (Apple / Framer Motion style)
   ========================================================================== */
.about-card, 
.service-card, 
.showcase-card, 
.contact-info-card,
.streetwear-card,
.cert-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
    transform-style: preserve-3d;
}

/* Unified Dynamic Card Spotlight Overlay */
.card-glow, .streetwear-card-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: radial-gradient(140px circle at center, rgba(255, 255, 255, 0.08), transparent 80%);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 3;
}

/* Subtle glow enhancement inside streetwear cards */
.streetwear-card .streetwear-card-glow {
    background: radial-gradient(160px circle at center, rgba(255, 0, 128, 0.12), rgba(0, 128, 255, 0.05), transparent 80%) !important;
}

/* Make sure background elements transition smoothly as well */
.about-card .card-bg,
.service-card .service-bg,
.showcase-card .showcase-card-img,
.contact-info-card .info-card-icon {
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

/* Smooth transition for magnetic CTA buttons */
.cta-button, 
.footer-cta-btn, 
.form-submit-btn,
.streetwear-cta-btn,
.hero-cta-btn {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), background-color 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease !important;
}

/* Modern hardware-accelerated transition for hero video */
.hero-video {
    will-change: transform, opacity, filter;
}

.hero-content {
    will-change: transform, opacity;
}

/* ==========================================================================
   APPLE SCROLL-DRIVEN WORD-BY-WORD HIGHLIGHT STYLES
   ========================================================================== */
.scroll-text-highlight {
    opacity: 1 !important;
    transform: none !important;
    --highlight-color: #ffffff;
    --dim-color: rgba(255, 255, 255, 0.15);
}

.about-section .scroll-text-highlight,
.scroll-text-highlight.light-theme {
    --highlight-color: #000000;
    --dim-color: rgba(0, 0, 0, 0.15);
}

.scroll-word {
    display: inline-block;
    transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1), color 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.12;
    color: var(--dim-color);
    margin-right: 0.22em;
    will-change: opacity, color;
}

/* ==========================================================================
   FRAMER MOTION STYLE PAGE TRANSITION WIPE OVERLAYS
   ========================================================================== */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    z-index: 99999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-transition-panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #020204;
    transform: translateY(0);
    transition: transform 0.75s cubic-bezier(0.85, 0, 0.15, 1);
}

.page-transition-logo {
    position: relative;
    font-family: 'Syne', 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: #ffffff;
    opacity: 1;
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
    z-index: 100000;
    text-shadow: 0 0 35px rgba(255, 255, 255, 0.3);
}

/* Loaded entrance states */
.page-transition-overlay.page-transition-loaded .page-transition-panel {
    transform: translateY(-100%);
}

.page-transition-overlay.page-transition-loaded .page-transition-logo {
    transform: translateY(-40px);
    opacity: 0;
}

/* Page exit slide-up states */
.page-transition-overlay.exit-mode .page-transition-panel {
    transform: translateY(100%);
}

.page-transition-overlay.exit-mode .page-transition-logo {
    transform: translateY(40px);
    opacity: 0;
}

.page-transition-overlay.exit-mode.page-transition-active .page-transition-panel {
    transform: translateY(0);
}

.page-transition-overlay.exit-mode.page-transition-active .page-transition-logo {
    transform: translateY(0);
    opacity: 1;
}

/* ==========================================================================
   FRAMER SPRING OVER-SHOOT ENTRANCE TRANSITIONS
   ========================================================================== */
.reveal-item, 
.reveal-card, 
.reveal-up, 
.reveal-up-delay {
    opacity: 0;
    transition: transform 0.85s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.85s cubic-bezier(0.25, 1, 0.3, 1) !important;
}

.reveal-card {
    transform: translateY(45px) scale(0.96);
}

.reveal-item {
    transform: translateY(25px);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-up-delay {
    transform: translateY(35px);
    transition-delay: 0.18s !important;
}

.reveal-card.in-view, 
.reveal-item.in-view, 
.reveal-up.in-view, 
.reveal-up-delay.in-view,
.reveal-card.active, 
.reveal-item.active, 
.reveal-up.active, 
.reveal-up-delay.active {
    opacity: 1;
    transform: translateY(0) scale(1) !important;
}

/* ==========================================================================
   ULTRA-MODERN PREMIUM TESTIMONIALS SECTION (Apple × Cyberpunk Gold Accent)
   ========================================================================== */
.testimonials-grid-section {
    position: relative;
    width: 100%;
    background-color: #fff;
    padding: 5rem 5vw;
    overflow: hidden;
    border-top: 1px solid rgba(164, 201, 225, 0.05);
    border-bottom: 1px solid rgba(164, 201, 225, 0.05);
}

/* Subtle glowing grid lines */
.testimonials-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(164, 201, 225, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(164, 201, 225, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center;
}

/* Ambient glows */
.testimonials-ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.6;
}

.testimonials-glow-1 {
    width: 50vw;
    height: 50vw;
    top: -20%;
    left: -15%;
    background: radial-gradient(circle, rgba(164, 201, 225, 0.04) 0%, transparent 70%);
}

.testimonials-glow-2 {
    width: 50vw;
    height: 50vw;
    bottom: -20%;
    right: -15%;
    background: radial-gradient(circle, rgba(164, 201, 225, 0.04) 0%, transparent 70%);
}

/* Floating Particles Styles */
.testimonials-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.testimonial-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--neon-gold);
    opacity: 0;
    animation: floatParticle 8s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(105vh) translateX(0) scale(0.6);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-5vh) translateX(40px) scale(1.3);
        opacity: 0;
    }
}

.testimonials-grid-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid-header {
    text-align: center;
    margin-bottom: 2rem;
}

.testimonials-badge {
    font-size: 0.85rem;
    font-weight: 600;
    color: #000;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    display: inline-block;
    text-shadow: 0 0 10px rgba(226, 184, 87, 0.35);
}

.testimonials-grid-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #000;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0rem;
    font-family: 'Rajdhani', sans-serif;
}

.testimonials-grid-header .header-glow-bar {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--neon-gold), transparent);
    margin: 0 auto 1.5rem;
    position: relative;
    box-shadow: 0 0 10px var(--neon-gold);
}

.testimonials-grid-header p {
    font-size: 1.15rem;
    color: #000;
    font-weight:600 ;
    letter-spacing: 0.05em;
    max-width: 600px;
    margin: 0 auto;
}

/* Premium 3-column Grid */
.testimonials-carousel-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 1.5rem 0.5rem;
}

.testimonials-track {
    display: flex;
    gap: 2.5rem;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
    cursor: grab;
}

/* Testimonial Card Styling */
.testimonial-card {
    flex: 0 0 calc(33.333% - 1.67rem);
    min-width: 320px;
    background: #fff;
    border: 1px solid rgba(164, 201, 225, 0.28);
    border-radius: 28px;
    padding: 3.5rem 1rem 0.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
                background-color 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 1000px;
    user-select: none;
    -webkit-user-select: none;
}

/* Floating animation built in */
.testimonial-card {
    animation: floatingCard 6s ease-in-out infinite alternate;
    animation-delay: calc(var(--card-index) * 1.5s);
}

@keyframes floatingCard {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    100% {
        transform: translateY(-8px) rotate(0.5deg);
    }
}

/* Pause floating animation on hover so tilt takes full control */
.testimonial-card:hover {
    animation-play-state: paused;
    transform: scale(1.03) translateY(-10px) !important;
    border-color: rgba(164, 201, 225, 0.28) !important;
    background-color: rgba(255, 255, 255, 0.015) !important;
    box-shadow: 0 30px 60px rgba(164, 201, 225, 0.05), 
                0 0 45px rgba(164, 201, 225, 0.03) !important;
}

/* Custom Gold Spotlight Glow inside card */
.testimonial-card .card-glow {
    background: radial-gradient(160px circle at center, rgba(164, 201, 225, 0.12), rgba(164, 201, 225, 0.02), transparent 80%) !important;
    z-index: 1;
}

/* Custom card border glowing corners effect */
.testimonial-card-border-glow {
    position: absolute;
    inset: 0;
    border-radius: 28px;
    border: 1px solid transparent;
    background: linear-gradient(135deg, rgba(164, 201, 225, 0.12), transparent 40%, transparent 60%, rgba(164, 201, 225, 0.06)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.4;
    transition: opacity 0.5s ease;
}

.testimonial-card:hover .testimonial-card-border-glow {
    opacity: 1;
}

/* Staggered Scroll Reveal transitions */
.testimonial-card.reveal-up {
    transition-delay: calc(var(--card-index) * 0.15s);
}

/* Profile Elements */
.testimonial-profile {
    margin-bottom: 2rem;
    z-index: 2;
}

.profile-img-wrapper {
    width: 105px;
    height: 105px;
    border-radius: 50%;
    display: flex;
    justify-content:center;
    align-item:center;
    padding: 2px;
    border: 2px solid rgba(164, 201, 225, 0.681);
    margin: 0 auto 1.5rem;
    overflow: hidden;
    background: #FFF;
    box-shadow: 0 0 20px rgba(164, 201, 225, 0.1);
    transition: border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.profile-img {
    width: 100%;
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    -webkit-user-drag: none;
        border: none;
    box-shadow: none;
}

.testimonial-card:hover .profile-img-wrapper {
    border-color: rgba(164, 201, 225, 0.6);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(164, 201, 225, 0.3);
}

.testimonial-card:hover .profile-img {
    transform: scale(1.08);
}

.profile-name {
    font-size: 1.45rem;
    font-weight: 600;
    color: #000;
    margin-bottom: -2.6rem;
    letter-spacing: 0.02em;
    font-family: 'Rajdhani', sans-serif;
}

.profile-designation {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

/* Quote styling */
.testimonial-quote-box {
    margin-bottom: 0rem;
    flex-grow: 1;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    color: #000;
    line-height: 1.7;
    position: relative;
    padding: 0 1rem;
}

/* Glowing gold rating stars */
.testimonial-rating {
    display: flex;
    gap: 0.6rem;
    justify-content: center;
    margin-top: auto;
    z-index: 2;
}

.testimonial-rating .star-icon {
    width: 18px;
    height: 18px;
    color: var(--neon-gold);
    fill: var(--neon-gold);
    filter: drop-shadow(0 0 4px rgba(226, 184, 87, 0.5));
    transition: transform 0.4s ease;
}

.testimonial-card:hover .testimonial-rating .star-icon {
    transform: scale(1.15) rotate(8deg);
}

.testimonial-card:hover .testimonial-rating .star-icon:nth-child(even) {
    transform: scale(1.15) rotate(-8deg);
}

/* Futuristic Carousel Controls */
.testimonials-controls {
    display: flex;
    gap: 1.8rem;
    justify-content: center;
    margin-top: 4.5rem;
    z-index: 2;
}

.testimonials-controls .carousel-nav-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(226, 184, 87, 0.15);
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.testimonials-controls .carousel-nav-btn:hover {
    border-color: var(--neon-gold);
    background: #1f77b1;
    color: var(--neon-gold);
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(226, 184, 87, 0.18);
}

.testimonials-controls .carousel-nav-btn i {
    width: 22px;
    height: 22px;
    transition: transform 0.4s ease;
}

.testimonials-controls .prev-btn:hover i {
    transform: translateX(-3px);
}

.testimonials-controls .next-btn:hover i {
    transform: translateX(3px);
}

/* Responsive testimonial grid layouts */
@media (max-width: 992px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1.25rem);
    }
    .testimonials-grid-section {
        padding: 8rem 5vw;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .testimonials-grid-section {
        padding: 6rem 5vw;
    }
}

/* ==========================================================================
   13. PREMIUM CINEMATIC VIDEO LIGHTBOX MODAL
   ========================================================================== */
.video-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-lightbox-modal.active {
    opacity: 1;
    pointer-events: all;
}

.video-lightbox-content {
    position: relative;
    width: 90%;
    max-width: 1100px;
    aspect-ratio: 16 / 9;
    background: #020617;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 240, 255, 0.15);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-lightbox-modal.active .video-lightbox-content {
    transform: scale(1) translateY(0);
}

.video-lightbox-modal video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.video-lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1010;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.video-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #8ebbda;
    color: #8ebbda;
    transform: scale(1.1) rotate(90deg);
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

.video-lightbox-close svg,
.video-lightbox-close i {
    width: 22px;
    height: 22px;
}

/* Accent corners for premium branding inside modal */
.lightbox-corner {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 2px solid transparent;
    z-index: 10;
    pointer-events: none;
    transition: all 0.6s ease;
}

.lightbox-corner-tl {
    top: 20px;
    left: 20px;
    border-top-color: #8ebbda;
    border-left-color: #8ebbda;
}

.lightbox-corner-tr {
    top: 20px;
    right: 20px;
    border-top-color: #8ebbda;
    border-right-color: #8ebbda;
}

.lightbox-corner-bl {
    bottom: 20px;
    left: 20px;
    border-bottom-color: #8ebbda;
    border-left-color: #8ebbda;
}

.lightbox-corner-br {
    bottom: 20px;
    right: 20px;
    border-bottom-color: #8ebbda;
    border-right-color: #8ebbda;
}

@media (max-width: 768px) {
    .video-lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    .video-lightbox-close svg {
        width: 18px;
        height: 18px;
    }
    .video-lightbox-content {
        width: 95%;
        border-radius: 16px;
    }
    .lightbox-corner {
        width: 16px;
        height: 16px;
    }
}

/* ==========================================================================
   FUTURISTIC BREADCRUMB BANNER SYSTEM (UNIFIED)
   ========================================================================== */
.about-hero-banner,
.contact-hero-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px; /* navbar offset */
}

/* === BACKGROUND LAYERS === */
.ahb-base-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 60, 120, 0.4) 0%, transparent 70%),
        linear-gradient(175deg, rgba(3, 8, 15, 0.55) 0%, rgba(2, 5, 17, 0.65) 50%, rgba(0, 0, 0, 0.85) 100%);
    overflow: hidden;
}

.ahb-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transform: scale(1.05);
    animation: ahbZoom 25s ease-in-out infinite alternate;
}

@keyframes ahbZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.15); }
}

/* === BANNER SLIDER (3-PANEL SLIDER TRACK) === */
.ahb-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
    background-color: #03080f;
}

.ahb-slider-track {
    display: flex;
    height: 100%;
    width: 100%;
    align-items: center;
    will-change: transform;
}

.ahb-slider-track.no-transition {
    transition: none !important;
}

.ahb-slide {
    flex: 0 0 68%; /* Center slide width */
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    transition: filter 1.0s cubic-bezier(0.25, 1, 0.5, 1);
    filter: brightness(0.25); /* Dimmed by default */
    border-left: 2px solid #03080f; /* Seamless dark separator matching bg */
    border-right: 2px solid #03080f;
}

.ahb-slide.active {
    filter: brightness(0.85); /* Highlighted active slide */
}

/* Indicators container */
.ahb-slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 12;
}

.ahb-indicator {
    width: 24px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: background-color 0.4s ease, width 0.4s ease, box-shadow 0.4s ease;
}

.ahb-indicator:hover {
    background-color: rgba(255, 255, 255, 0.6);
}

.ahb-indicator.active {
    width: 40px;
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 220, 255, 0.5);
}

/* Custom banner height for work details page */
.about-hero-banner.work-detail-hero {
    min-height: 550px;
}

.about-hero-banner.work-detail-hero .ahb-slider {
    z-index: 1;
}

.about-hero-banner.work-detail-hero .ahb-slider-indicators {
    z-index: 5;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .ahb-slide {
        flex: 0 0 80%; /* Takes more width on tablets */
    }
}

@media (max-width: 768px) {
    .about-hero-banner.work-detail-hero {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .ahb-slide {
        flex: 0 0 100%; /* Full screen on mobile */
        border: none;
    }
}

.ahb-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 180, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}

.ahb-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 220, 255, 0.06) 20%,
        rgba(0, 220, 255, 0.18) 50%,
        rgba(0, 220, 255, 0.06) 80%,
        transparent 100%
    );
    animation: ahbScanLine 6s linear infinite;
    pointer-events: none;
}

@keyframes ahbScanLine {
    0%   { top: -2px; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.ahb-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 110% 100% at 50% 50%,
        transparent 40%,
        rgba(0, 0, 0, 0.55) 100%
    );
    pointer-events: none;
}

/* === GLOW ORBS === */
.ahb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: ahbOrbFloat 12s ease-in-out infinite alternate;
}

.ahb-orb-cyan {
    width: 480px;
    height: 480px;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 220, 255, 0.12) 0%, transparent 70%);
    animation-duration: 10s;
    animation-name: ahbOrbFloatCentered;
}

.ahb-orb-blue {
    width: 320px;
    height: 320px;
    bottom: -20%;
    left: 8%;
    background: radial-gradient(circle, rgba(30, 80, 255, 0.10) 0%, transparent 70%);
    animation-duration: 14s;
    animation-delay: 2s;
}

.ahb-orb-purple {
    width: 280px;
    height: 280px;
    top: 10%;
    right: 8%;
    background: radial-gradient(circle, rgba(130, 60, 255, 0.08) 0%, transparent 70%);
    animation-duration: 16s;
    animation-delay: 4s;
}

@keyframes ahbOrbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(25px, 20px) scale(1.08); }
}

@keyframes ahbOrbFloatCentered {
    0%   { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-50%) translateY(20px) scale(1.06); }
}

/* === VERTICAL LIGHT STREAKS === */
.ahb-streaks {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ahb-streak {
    position: absolute;
    top: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 200, 255, 0.18) 30%,
        rgba(0, 200, 255, 0.35) 55%,
        rgba(0, 200, 255, 0.18) 80%,
        transparent 100%
    );
    animation: ahbStreakPulse 4s ease-in-out infinite alternate;
    border-radius: 1px;
}

@keyframes ahbStreakPulse {
    0%   { opacity: 0.25; transform: scaleY(0.85); }
    100% { opacity: 0.7;  transform: scaleY(1.0); }
}

/* === PARTICLE CANVAS === */
.ahb-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* === CONTENT === */
.ahb-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 5vw;
}

.ahb-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: ahbFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.ahb-label-line {
    display: block;
    width: 30px;
    height: 1px;
    background: rgba(0, 200, 255, 0.4);
}

.ahb-label-text {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(0, 200, 255, 0.65);
    font-family: 'Rajdhani', sans-serif;
}

.ahb-title {
    display: flex;
    align-items: baseline;
    gap: 0.4em;
    line-height: 1;
    margin: 0 0 1.4rem;
    opacity: 0;
    animation: ahbFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.ahb-title-line1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(3.5rem, 7vw, 5.1rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
}

.ahb-title-line2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px #FFF;
    position: relative;
}


@keyframes ahbBarExpand {
    to { width: 180px; }
}

.ahb-breadcrumb {
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    animation: ahbFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.ahb-crumb-link {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}


.ahb-crumb-link:hover {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 12px rgba(255,255,255,0.2);
}

.ahb-crumb-sep {
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}

.ahb-crumb-active {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #77add2;
    text-shadow: 0 0 14px rgba(0, 220, 255, 0.6), 0 0 30px rgba(0, 220, 255, 0.2);
}

.ahb-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(2, 5, 14, 0.9));
    pointer-events: none;
    z-index: 5;
}

@keyframes ahbFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .about-hero-banner,
    .contact-hero-banner {
        min-height: 340px;
    }
    .ahb-title-line1,
    .ahb-title-line2 {
        font-size: clamp(2.8rem, 11vw, 4.5rem);
        letter-spacing: 0.12em;
    }
    .ahb-streak { display: none; }
}

/* ==========================================================================
   PORTFOLIO WORKS PAGE STYLING (DARK LUXURY)
   ========================================================================== */
.works-portfolio-section {
    position: relative;
    width: 100%;
    padding: 8rem 5vw;
    background: linear-gradient(180deg, #02050f 0%, #010206 100%);
    color: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.works-portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Glassmorphic Category Filter Bar */
.works-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    margin: 0 auto 5rem;
    padding: 0.6rem;
    width: max-content;
    max-width: 100%;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.filter-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    padding: 0.7rem 2rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.filter-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.03);
}

.filter-btn.active {
    color: #60a0cb;
    background: rgba(0, 220, 255, 0.08);
    border: 1px solid rgba(0, 220, 255, 0.15);
    box-shadow: 0 0 15px rgba(0, 220, 255, 0.1);
    text-shadow: 0 0 8px rgba(0, 220, 255, 0.3);
}

/* Works Grid */
.works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
}

/* Showcase Card Override for Dark Luxury Works Theme */
.works-portfolio-section .showcase-card {
    background-color: #030712;
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.works-portfolio-section .showcase-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(0, 220, 255, 0.25);
    box-shadow: 0 25px 50px rgba(0, 220, 255, 0.12);
}

/* Hidden elements animation classes for filter */
.works-portfolio-section .showcase-card {
    opacity: 1;
    transform: scale(1);
}

.works-portfolio-section .showcase-card.hidden-card {
    opacity: 0;
    transform: scale(0.92);
    pointer-events: none;
}

/* Responsive Overrides */
@media (max-width: 992px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .works-filter-bar {
        border-radius: 20px;
        padding: 0.5rem;
        gap: 0.4rem;
        width: 100%;
        justify-content: center;
    }
    .filter-btn {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
        letter-spacing: 0.1em;
    }
    .works-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ==========================================================================
   PORTFOLIO BLOGS PAGE STYLING (DARK LUXURY)
   ========================================================================== */
.blogs-main-section {
    position: relative;
    width: 100%;
    padding: 5rem 5vw;
    background: #FFF;
    color: #ffffff;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.blogs-main-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Spotlight Featured Article Card */
.blogs-spotlight-wrapper {
    margin-bottom: 6rem;
}

.blogs-spotlight-card {
    display: flex;
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.blogs-spotlight-card:hover {
    border-color: rgba(0, 220, 255, 0.2);
    box-shadow: 0 35px 80px rgba(0, 220, 255, 0.1);
}

.spotlight-image-side {
    flex: 1.2;
    position: relative;
    overflow: hidden;
    min-height: 380px;
}

.spotlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blogs-spotlight-card:hover .spotlight-image {
    transform: scale(1.04);
}

.spotlight-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 30%, rgba(2, 5, 14, 0.95) 100%);
    z-index: 1;
}

.spotlight-content-side {
    flex: 1;
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background-color: rgba(2, 5, 14, 0.2);
}

.spotlight-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #60a0cb;
    margin-bottom: 1.2rem;
    text-shadow: 0 0 10px rgba(0, 220, 255, 0.4);
}

.spotlight-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: 0.05em;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.spotlight-summary {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
}

.spotlight-meta {
    display: flex;
    align-items: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.meta-author {
    color: rgba(255, 255, 255, 0.8);
}

.meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 220, 255, 0.5);
    margin: 0 0.8rem;
}

/* Blogs Console (Search & Filter) Deck */
.blogs-console-deck {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 5rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 60px;
    padding: 0.6rem 1.8rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.blogs-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex: 1;
    max-width: 420px;
}

.search-deck-icon {
    position: absolute;
    left: 1.2rem;
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.35);
    pointer-events: none;
    transition: color 0.3s ease;
}

.search-input-glass {
    width: 100%;
    height: 45px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50px;
    padding: 0 1.5rem 0 3.2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    letter-spacing: 0.05em;
    outline: none;
    transition: all 0.4s ease;
}

.search-input-glass::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.search-input-glass:focus {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 220, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 220, 255, 0.15);
}

.search-input-glass:focus + .search-deck-icon {
    color: #60a0cb;
}

.blogs-console-deck .works-filter-bar {
    margin: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
}

/* Blogs Grid and Cards Styling */
.blogs-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 2rem;
}

.blog-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.012);
    border: 1px solid rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.13);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow, border-color;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    border-color:rgba(142, 187, 218, 0.37);
    box-shadow: 0 25px 50px rgba(142, 187, 218, 0.25);
}

.blog-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.blog-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-card:hover .blog-card-img {
    transform: scale(1.06);
}

.blog-card-body {
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-category {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #0B2C4A;
    margin-bottom: 1.1rem;
    text-shadow: 0 0 10px rgba(0, 220, 255, 0.3);
    text-transform: uppercase;
}

.blog-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.04em;
    color: #000;
    text-transform: uppercase;
    margin: 0 0 2.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #000;
}

.blog-meta-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: rgba(0, 220, 255, 0.4);
    margin: 0 0.8rem;
}

/* Responsive Blogs queries */
@media (max-width: 992px) {
    .blogs-spotlight-card {
        flex-direction: column;
    }
    .spotlight-image-side {
        min-height: 280px;
    }
    .spotlight-img-overlay {
        background: linear-gradient(to bottom, transparent 30%, rgba(2, 5, 14, 0.95) 100%);
    }
    .spotlight-content-side {
        padding: 3rem 2rem;
    }
    .blogs-console-deck {
        flex-direction: column;
        border-radius: 24px;
        padding: 1.5rem;
        gap: 1.5rem;
    }
    .blogs-search-wrapper {
        max-width: 100%;
        width: 100%;
    }
    .blogs-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .blogs-cards-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .blog-card-body {
        padding: 1.8rem 1.5rem;
    }
    .blog-card-title {
        font-size: 1.2rem;
        margin-bottom: 1.8rem;
    }
}


/* ==========================================================================
   PORTFOLIO CAREERS PAGE STYLING (DARK LUXURY)
   ========================================================================== */
.careers-culture-section,
.careers-jobs-section {
    position: relative;
    width: 100%;
    padding: 4rem 5vw;
    background: #0B2C4A;
    color: #ffffff;
    overflow: hidden;
}

.careers-culture-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.careers-jobs-section {
    background:#000f2b;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.careers-form-section {
    position: relative;
    width: 100%;
    padding: 4rem 5vw;
    background: #fff;
    color: #0b1a2f;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Luxury Light Theme Overrides for Careers Application Form */
.careers-form-section .careers-section-header h2 {
    color: #0b1a2f;
}

.careers-form-section .careers-section-header p {
    color: #4a5568;
}

.careers-form-section .culture-badge {
    color: #000;
    text-shadow: none;
    background: rgba(157, 78, 221, 0.06);
    border: 1px solid rgba(157, 78, 221, 0.12);
}

.careers-form-section .careers-form-card {
    background: #ffffff;
    border: 1px solid rgba(11, 26, 47, 0.06);
    box-shadow: 0 30px 70px rgba(11, 26, 47, 0.06);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.careers-form-section .form-group label {
    color: #4a5568;
}

.careers-form-section .form-group input,
.careers-form-section .form-group select,
.careers-form-section .form-group textarea {
    background: RGB(232, 241, 248);
    border: 1px solid rgba(11, 26, 47, 0.08);
    color: #000;
}

.careers-form-section .form-group input::placeholder,
.careers-form-section .form-group textarea::placeholder {
    color: #94a3b8;
}

.careers-form-section .form-group input:hover,
.careers-form-section .form-group select:hover,
.careers-form-section .form-group textarea:hover {
    background: #f1f5f9;
    border-color: #60a0cb;
}

.careers-form-section .form-group input:focus,
.careers-form-section .form-group select:focus,
.careers-form-section .form-group textarea:focus {
    background: #ffffff;
    border-color: #60a0cb;
    box-shadow: 0 0 15px rgba(0, 220, 255, 0.12), 0 0 0 1px rgba(0, 220, 255, 0.1) inset;
}

.careers-form-section .cyber-career-form .form-group select option {
    background: #ffffff;
    color: #0b1a2f;
}

.careers-form-section .resume-upload-zone {
    border-color: rgba(11, 26, 47, 0.15);
    background: #f8fafc;
}

.careers-form-section .resume-upload-zone:hover {
    border-color: #60a0cb;
    background: #f1f5f9;
}

.careers-form-section .resume-upload-zone.dragover {
    background: rgba(0, 220, 255, 0.03);
}

.careers-form-section .upload-zone-icon {
    color: #94a3b8;
}

.careers-form-section .upload-primary-text {
    color: #4a5568;
}

.careers-form-section .upload-secondary-text {
    color: #94a3b8;
}

.careers-form-section .file-success-overlay {
    background: rgba(255, 255, 255, 0.98);
}

.careers-form-section .attached-filename {
    color: #0b1a2f;
}

.careers-form-section .remove-file-btn {
    color: #4a5568;
    background: rgba(11, 26, 47, 0.05);
}

.careers-form-section .remove-file-btn:hover {
    color: #ff3366;
    background: rgba(255, 51, 102, 0.1);
}

.careers-culture-container,
.careers-jobs-container,
.careers-form-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Sections Headers */
.careers-section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.culture-badge {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    color: #60a0cb;
    margin-bottom: 1rem;
    display: inline-block;
    text-shadow: 0 0 10px rgba(0, 220, 255, 0.4);
}

.careers-section-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.careers-section-header p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Culture Grid */
.careers-culture-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.culture-dim-card {
    position: relative;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.culture-dim-card:hover {
    background: rgba(255, 255, 255, 0.015);
    border-color: rgba(0, 220, 255, 0.2);
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0, 220, 255, 0.08);
}

.dim-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 220, 255, 0.04), transparent 70%);
    top: -50px;
    right: -50px;
    border-radius: 50%;
    pointer-events: none;
}

.dim-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: radial-gradient(circle at center, rgba(0, 220, 255, 0.12), rgba(0, 220, 255, 0.01) 80%);
    border: 1px solid rgba(0, 220, 255, 0.2);
    color: #60a0cb;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px rgba(0, 220, 255, 0.1);
}

.dim-icon-wrapper svg {
    width: 26px;
    height: 26px;
}

.culture-dim-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.culture-dim-card p {
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
}

/* Careers Jobs List */
.jobs-list-grid {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    max-width: 1000px;
    margin: 0 auto;
}

.job-listing-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.job-listing-card:hover {
    border-color: rgba(255, 255, 255, 0.06);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2.2rem 2.8rem;
    gap: 2rem;
}

.job-info h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    margin: 0.6rem 0;
}

.job-tag {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #60a0cb;
    text-transform: uppercase;
}

.job-location {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.4);
}

.job-location svg {
    width: 14px;
    height: 14px;
}

.job-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.job-toggle-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.job-toggle-btn:hover {
    color: #ffffff;
}

.job-toggle-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s ease;
}

.job-listing-card:hover .job-toggle-btn svg {
    transform: translateY(2px);
}

.job-apply-btn {
    padding: 0.6rem 1.6rem;
    font-size: 0.82rem;
    border-radius: 30px;
}

/* Accordion slide-down detail drawer */
.job-drawer-detail {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border-top: 1px solid transparent;
    background: rgba(2, 5, 14, 0.3);
}

.job-drawer-detail.open-drawer {
    border-top-color: rgba(255, 255, 255, 0.02);
}

.drawer-inner {
    padding: 2.5rem 3rem;
}

.drawer-inner h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #60a0cb;
    margin: 1.5rem 0 0.8rem;
    text-shadow: 0 0 8px rgba(0, 220, 255, 0.2);
}

.drawer-inner h4:first-child {
    margin-top: 0;
}

.drawer-inner ul {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.drawer-inner ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
}

.drawer-inner ul li::before {
    content: '';
    position: absolute;
    left: 0.2rem;
    top: 0.6rem;
    width: 6px;
    height: 1px;
    background: #60a0cb;
    box-shadow: 0 0 6px #60a0cb;
}

/* Cyber Inquiry Career Form */
.careers-form-card {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 24px;
    padding: 4.5rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.cyber-career-form .form-group select {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    padding: 0 1.2rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.4s ease;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
}

.cyber-career-form .form-group select option {
    background: #0b0f19;
    color: #ffffff;
}

.cyber-career-form .form-group select:focus {
    border-color: rgba(0, 220, 255, 0.4);
    box-shadow: 0 0 15px rgba(0, 220, 255, 0.15);
}

/* Resume upload drop-zone */
.resume-upload-zone {
    position: relative;
    border: 1px dashed rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.01);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
}

.resume-upload-zone:hover {
    border-color: rgba(0, 220, 255, 0.4);
    background: rgba(255, 255, 255, 0.02);
}

.resume-upload-zone.dragover {
    border-color: #60a0cb;
    background: rgba(0, 220, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 220, 255, 0.1);
}

.hidden-file-input {
    display: none;
}

.upload-zone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    transition: opacity 0.3s ease;
}

.upload-zone-icon {
    width: 42px;
    height: 42px;
    color: rgba(255, 255, 255, 0.3);
    transition: color 0.3s ease, transform 0.3s ease;
}

.resume-upload-zone:hover .upload-zone-icon {
    color: #60a0cb;
    transform: translateY(-2px);
}

.upload-primary-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.8);
}

.highlight-browse {
    color: #60a0cb;
    text-decoration: underline;
}

.upload-secondary-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Resume upload success indicator overlay */
.file-success-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 5, 14, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 5;
    padding: 0 2rem;
}

.file-success-overlay.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.success-tick-icon {
    width: 24px;
    height: 24px;
    color: #10b981;
}

.attached-filename {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #ffffff;
    max-width: 70%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.remove-file-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.remove-file-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

.remove-file-btn svg {
    width: 18px;
    height: 18px;
}

/* Transmit Application Loading States */
.form-submitting {
    pointer-events: none;
    opacity: 0.8;
}

.submit-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.spin-icon {
    width: 18px;
    height: 18px;
    animation: btnSpin 1s linear infinite;
}

@keyframes btnSpin {
    to { transform: rotate(360deg); }
}

/* Careers Success Transmission Modal */
.careers-success-modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 5, 14, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 2rem;
}

.careers-success-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-glass-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 28px;
    max-width: 500px;
    width: 100%;
    padding: 4.5rem 3.5rem;
    text-align: center;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.careers-success-modal.active .modal-glass-card {
    transform: scale(1);
}

.success-icon-orbit {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(0, 220, 255, 0.15) 0%, transparent 70%);
    color: #60a0cb;
    border-radius: 50%;
}

.success-icon-orbit svg {
    width: 32px;
    height: 32px;
    z-index: 3;
}

.success-orbit-ring,
.success-orbit-ring2 {
    position: absolute;
    border: 1px solid rgba(0, 220, 255, 0.15);
    border-radius: 50%;
}

.success-orbit-ring {
    width: 90px;
    height: 90px;
    animation: successOrbit 6s linear infinite;
}

.success-orbit-ring2 {
    width: 110px;
    height: 110px;
    border-style: dashed;
    animation: successOrbitReverse 8s linear infinite;
}

@keyframes successOrbit {
    to { transform: rotate(360deg); }
}

@keyframes successOrbitReverse {
    to { transform: rotate(-360deg); }
}

.modal-glass-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff;
    margin-bottom: 1.2rem;
}

.modal-glass-card p {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2rem;
}

.secured-details {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 1.2rem;
    margin-bottom: 2rem;
    text-align: left;
}

.secured-details p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    margin: 0.4rem 0;
    color: rgba(255, 255, 255, 0.5);
}

.secured-details p strong {
    color: #60a0cb;
    letter-spacing: 0.05em;
}

.secured-details p span {
    color: #ffffff;
}

.verification-meta {
    font-size: 0.82rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
}

.verification-meta span {
    color: rgba(255, 255, 255, 0.8);
}

.modal-reset-btn {
    width: 100%;
    border-radius: 30px;
    padding: 0.8rem 0;
}

/* Responsive Careers Queries */
@media (max-width: 992px) {
    .careers-culture-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .job-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        gap: 1.5rem;
    }
    .job-actions {
        width: 100%;
        justify-content: space-between;
    }
    .careers-form-card {
        padding: 2.5rem;
    }
}

/* ==========================================================================
   Premium Light-Luxury Works Showcase & Gallery Section
   ========================================================================== */

.works-portfolio-section.premium-light-theme {
    position: relative;
    background-color: #f7fafc;
    background-image: radial-gradient(circle at 0% 0%, rgba(255, 255, 255, 0.8) 0%, rgba(247, 250, 252, 0.9) 100%);
    padding: 5rem 5vw;
    overflow: hidden;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Ambient Luminous Pastel Glow Leaks */
.works-portfolio-section.premium-light-theme .light-leak {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: 1;
    opacity: 0.14;
    will-change: transform, opacity;
}

.works-portfolio-section.premium-light-theme .leak-cyan {
    top: 5%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #8ebbda 0%, transparent 70%);
    animation: floatLeak1 30s infinite alternate ease-in-out;
}

.works-portfolio-section.premium-light-theme .leak-purple {
    bottom: 5%;
    right: -10%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, #9d4edd 0%, transparent 70%);
    animation: floatLeak2 35s infinite alternate ease-in-out;
}

.works-portfolio-section.premium-light-theme .leak-red {
    top: 45%;
    left: 25%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #ff0077 0%, transparent 70%);
    opacity: 0.06;
    animation: floatLeak3 32s infinite alternate ease-in-out;
}

@keyframes floatLeak1 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(90px, 50px) scale(1.15); }
}

@keyframes floatLeak2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-70px, 90px) scale(1.1); }
}

@keyframes floatLeak3 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, -70px) scale(1.2); }
}

.works-portfolio-container {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 3;
}

/* --- Showcase Header --- */
.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.showcase-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0b1a2f;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
    position: relative;
    display: inline-block;
    padding: 0.4rem 1.4rem;
    border: 1px solid rgba(11, 26, 47, 0.08);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(11, 26, 47, 0.02);
}

.showcase-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 800;
    color: #0b1a2f;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.showcase-glow-line {
    width: 90px;
    height: 4px;
    background: linear-gradient(90deg, #3385bc 0%, #e8f1f8 100%);
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0, 210, 255, 0.25);
}

/* --- Frosted Category Filter Bar --- */
.works-filter-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 5.5rem;
    flex-wrap: wrap;
}

.works-filter-bar .filter-btn {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(11, 26, 47, 0.7);
    background: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 50px;
    padding: 0.85rem 2.2rem;
    cursor: pointer;
    transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.015);
}

.works-filter-bar .filter-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #60a0cb;
    color: #0b1a2f;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.12);
}

.works-filter-bar .filter-btn.active {
    background: #0B2C4A;
    border-color: #0B2C4A;
    color: #ffffff;
}

/* --- Showcase Gallery Grid --- */
.works-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: start;
}

/* --- Premium Showcase Cards --- */
.showcase-masonry-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 15px 45px rgba(11, 26, 47, 0.035);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, box-shadow, opacity;
}

/* Specific heights mappings for beautiful dynamic masonry spacing */
.showcase-masonry-card.card-tall {
    height: 280px;
}

.showcase-masonry-card.card-medium {
    height: 380px;
}

.showcase-masonry-card.card-extra-tall {
    height: 540px;
}

.showcase-masonry-card.card-short {
    height: 330px;
}

.showcase-img-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base shadow vignette overlay */
.card-gradient-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 26, 47, 0) 50%, rgba(11, 26, 47, 0.75) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Premium dynamic interactive hover card lift */
.showcase-masonry-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 25px 65px rgba(0, 210, 255, 0.15), 
                0 5px 30px rgba(157, 78, 221, 0.08);
    border-color: rgba(0, 210, 255, 0.15);
}

.showcase-masonry-card:hover .showcase-img {
    transform: scale(1.09);
}

/* --- Pulsing Play Indicator overlay for video cards --- */
.video-play-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    z-index: 2;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-play-indicator i {
    width: 24px;
    height: 24px;
    fill: #ffffff;
    stroke: none;
    transform: translateX(3px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.indicator-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.25) 0%, transparent 70%);
    border: 1px solid rgba(0, 240, 255, 0.25);
    animation: indicatorPulseLoop 2.2s infinite ease-in-out;
    pointer-events: none;
}

@keyframes indicatorPulseLoop {
    0% { transform: scale(0.95); opacity: 0.85; }
    50% { transform: scale(1.2); opacity: 0.35; }
    100% { transform: scale(0.95); opacity: 0.85; }
}

.showcase-masonry-card:hover .video-play-indicator {
    background: rgba(0, 240, 255, 0.95);
    border-color: #8ebbda;
    color: #0b1a2f;
    transform: translate(-50%, -50%) scale(1.12);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.6);
}

.showcase-masonry-card:hover .video-play-indicator i {
    fill: #0b1a2f;
    transform: translateX(3px) scale(1.06);
}

/* --- Glassmorphic Frosted Glass Overlay (Hover reveal) --- */
.glass-hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(11, 26, 47, 0.92) 0%, rgba(11, 26, 47, 0.3) 100%);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    z-index: 3;
    padding: 3.5rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius:25px;
}

/* Dedicated neon cursor spotlight glow for showcase masonry cards */
.showcase-masonry-card .card-glow {
    background: radial-gradient(220px circle at center, rgba(0, 240, 255, 0.2), rgba(157, 78, 221, 0.1), transparent 80%) !important;
    z-index: 2;
}

.showcase-masonry-card:hover .glass-hover-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Interactive staggers on card children items */
.glass-hover-overlay > * {
    opacity: 0;
    transform: translateY(22px);
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-masonry-card:hover .glass-hover-overlay > * {
    opacity: 1;
    transform: translateY(0);
}

.showcase-masonry-card:hover .glass-hover-overlay > .hover-category {
    transition-delay: 0.06s;
}

.showcase-masonry-card:hover .glass-hover-overlay > .hover-title {
    transition-delay: 0.12s;
}

.showcase-masonry-card:hover .glass-hover-overlay > .hover-desc {
    transition-delay: 0.18s;
}

.showcase-masonry-card:hover .glass-hover-overlay > .hover-project-link {
    transition-delay: 0.24s;
}

/* Overlay elements styling */
.hover-category {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #8ebbda; /* Neon cyan for premium contrast */
    letter-spacing: 0.18em;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
}

.hover-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.45rem, 2vw, 1.85rem);
    font-weight: 800;
    color: #ffffff; /* Contrast text */
    letter-spacing: 0.05em;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    line-height: 1.25;
}

.hover-desc {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.78); /* High readability */
    line-height: 1.65;
    margin-bottom: 2.2rem;
}

.hover-project-link {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    color: #ffffff; /* Clean white link */
    text-decoration: none;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    align-self: flex-start;
}

.hover-project-link span {
    position: relative;
}

.hover-project-link span::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #00d2ff;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-project-link:hover span::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hover-project-link .link-arrow {
    width: 18px;
    height: 18px;
    color: #00d2ff;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.hover-project-link:hover .link-arrow {
    transform: translateX(7px);
}

/* --- Scroll Reveal States --- */
.showcase-header.reveal-item,
.works-filter-bar.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.showcase-header.reveal-item.active-reveal,
.works-filter-bar.reveal-item.active-reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Initial state of the showcase cards before scroll reveal */
.showcase-masonry-card {
    opacity: 0;
    transform: translateY(60px) scale(0.96);
    transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
                opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Active class applied by IntersectionObserver stagger loop */
.showcase-masonry-card.active-reveal {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* Hide card animation for Category filter tagging */
.showcase-masonry-card.hidden-card {
    opacity: 0;
    transform: scale(0.92) translateY(25px);
    pointer-events: none;
}

/* --- Responsiveness Breakpoints Queries --- */
@media (max-width: 1024px) {
    .works-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .showcase-masonry-card.card-tall,
    .showcase-masonry-card.card-medium,
    .showcase-masonry-card.card-extra-tall,
    .showcase-masonry-card.card-short {
        height: 380px; /* Uniform height on tablets keeps layout balanced */
    }
    
    .works-portfolio-section.premium-light-theme {
        padding: 7rem 5vw;
    }
}

@media (max-width: 640px) {
    .works-gallery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .showcase-masonry-card.card-tall,
    .showcase-masonry-card.card-medium,
    .showcase-masonry-card.card-extra-tall,
    .showcase-masonry-card.card-short {
        height: 340px; /* Comfortable height for mobile layouts */
    }
    
    .works-portfolio-section.premium-light-theme {
        padding: 5rem 5vw;
    }
    
    .showcase-header {
        margin-bottom: 3.2rem;
    }
    
    .works-filter-bar {
        margin-bottom: 4rem;
        gap: 0.8rem;
    }
    
    .works-filter-bar .filter-btn {
        padding: 0.65rem 1.6rem;
        font-size: 0.82rem;
    }
    
    .glass-hover-overlay {
        padding: 2.5rem 1.8rem;
    }
}






/* =============================================
   STATS COUNTER STRIP (from index.html)
============================================= */

.sc-strip {
    position: relative;
    width: 100%;
    padding: 4.5rem 6vw;
    overflow: hidden;
    background:
        linear-gradient(105deg,
            #060d1f 0%,
            #091228 18%,
            #0d1035 38%,
            #130d30 55%,
            #1a082a 72%,
            #1c052a 88%,
            #14051e 100%
        );
}

.sc-strip::before,
.sc-strip::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(0, 180, 255, 0.12) 20%,
        rgba(0, 180, 255, 0.25) 50%,
        rgba(0, 180, 255, 0.12) 80%,
        transparent 100%
    );
}
.sc-strip::before { top: 0; }
.sc-strip::after  { bottom: 0; }

.sc-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.sc-wrap {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.sc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition:
        opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}

.sc-item.in-view {
    opacity: 1;
    transform: translateY(0);
}

.sc-item:hover .sc-num {
    text-shadow: 0 0 30px rgba(0, 200, 255, 0.9), 0 0 60px rgba(0, 180, 255, 0.4);
}

.sc-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 700;
    line-height: 1;
    color: #18b8ff;
    text-shadow: 0 0 18px rgba(0, 185, 255, 0.55), 0 0 40px rgba(0, 180, 255, 0.20);
    letter-spacing: 0.01em;
    display: block;
    margin-bottom: 0.85rem;
    transition: text-shadow 0.35s ease;
    animation: scGlow 3.5s ease-in-out infinite alternate;
}

@keyframes scGlow {
    0%   { text-shadow: 0 0 12px rgba(0, 190, 255, 0.40), 0 0 30px rgba(0, 170, 255, 0.14); }
    100% { text-shadow: 0 0 28px rgba(0, 210, 255, 0.80), 0 0 55px rgba(0, 190, 255, 0.30); }
}

.sc-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(190, 210, 240, 0.45);
    display: block;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.sc-item:hover .sc-label {
    color: rgba(190, 210, 240, 0.75);
}

.sc-divider {
    width: 1px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(
        to bottom,
        transparent,
        rgba(0, 185, 255, 0.25) 30%,
        rgba(0, 185, 255, 0.40) 50%,
        rgba(0, 185, 255, 0.25) 70%,
        transparent
    );
}

@media (max-width: 860px) {
    .sc-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }
    .sc-divider { display: none; }
    .sc-item {
        padding: 2rem 1.5rem;
        border-bottom: 1px solid rgba(0, 185, 255, 0.07);
    }
    .sc-item:nth-child(odd) {
        border-right: 1px solid rgba(0, 185, 255, 0.07);
    }
    .sc-item:nth-last-child(-n+2) { border-bottom: none; }
    .sc-strip { padding: 0; }
}

@media (max-width: 480px) {
    .sc-wrap { grid-template-columns: 1fr; }
    .sc-item:nth-child(odd) { border-right: none; }
    .sc-item:nth-last-child(-n+2) { border-bottom: 1px solid rgba(0, 185, 255, 0.07); }
    .sc-item:last-child { border-bottom: none; }
    .sc-num { font-size: clamp(3rem, 16vw, 4.5rem); }
}

/* =============================================
   AHB HERO BANNER — SHARED STYLES
   (about.html, contact.html, events-services.html,
    service-detail.html, work-detail.html, blogs.html,
    careers.html, works.html)
============================================= */

.about-hero-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.contact-hero-banner {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.ahb-base-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0, 60, 120, 0.4) 0%, transparent 70%),
        linear-gradient(175deg, rgba(3, 8, 15, 0.55) 0%, rgba(2, 5, 17, 0.65) 50%, rgba(0, 0, 0, 0.85) 100%);
    overflow: hidden;
}

.ahb-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 180, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 180, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}

.ahb-scan-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 220, 255, 0.06) 20%,
        rgba(0, 220, 255, 0.18) 50%,
        rgba(0, 220, 255, 0.06) 80%,
        transparent 100%
    );
    animation: ahbScanLine 6s linear infinite;
    pointer-events: none;
}

@keyframes ahbScanLine {
    0%   { top: -2px; opacity: 0; }
    5%   { opacity: 1; }
    95%  { opacity: 1; }
    100% { top: 100%; opacity: 0; }
}

.ahb-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 110% 100% at 50% 50%,
        transparent 40%,
        rgba(0, 0, 0, 0.55) 100%
    );
    pointer-events: none;
}

.ahb-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none;
    animation: ahbOrbFloat 12s ease-in-out infinite alternate;
}

.ahb-orb-cyan {
    width: 480px;
    height: 480px;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 220, 255, 0.12) 0%, transparent 70%);
    animation-duration: 10s;
}

.ahb-orb-blue {
    width: 320px;
    height: 320px;
    bottom: -20%;
    left: 8%;
    background: radial-gradient(circle, rgba(30, 80, 255, 0.10) 0%, transparent 70%);
    animation-duration: 14s;
    animation-delay: 2s;
}

.ahb-orb-purple {
    width: 280px;
    height: 280px;
    top: 10%;
    right: 8%;
    background: radial-gradient(circle, rgba(130, 60, 255, 0.08) 0%, transparent 70%);
    animation-duration: 16s;
    animation-delay: 4s;
}

@keyframes ahbOrbFloat {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(25px, 20px) scale(1.08); }
}

.ahb-orb-cyan { animation-name: ahbOrbFloatCentered; }

@keyframes ahbOrbFloatCentered {
    0%   { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-50%) translateY(20px) scale(1.06); }
}

.ahb-streaks {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.ahb-streak {
    position: absolute;
    top: 0;
    width: 1px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 200, 255, 0.18) 30%,
        rgba(0, 200, 255, 0.35) 55%,
        rgba(0, 200, 255, 0.18) 80%,
        transparent 100%
    );
    animation: ahbStreakPulse 4s ease-in-out infinite alternate;
    border-radius: 1px;
}

/* Streak positions and delays via nth-child */
.ahb-streak:nth-child(1) { left: 12%; animation-delay: 0s;   height: 45%; }
.ahb-streak:nth-child(2) { left: 26%; animation-delay: 0.6s; height: 30%; }
.ahb-streak:nth-child(3) { left: 40%; animation-delay: 1.2s; height: 55%; }
.ahb-streak:nth-child(4) { left: 58%; animation-delay: 0.3s; height: 38%; }
.ahb-streak:nth-child(5) { left: 72%; animation-delay: 0.9s; height: 50%; }
.ahb-streak:nth-child(6) { left: 86%; animation-delay: 1.5s; height: 28%; }

@keyframes ahbStreakPulse {
    0%   { opacity: 0.25; transform: scaleY(0.85); }
    100% { opacity: 0.7;  transform: scaleY(1.0); }
}

.ahb-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ahb-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 60px;
}

.ahb-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.8rem;
    opacity: 0;
    animation: ahbFadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}

.ahb-label-line {
    display: block;
    width: 30px;
    height: 1px;
    background: rgba(0, 200, 255, 0.4);
}

.ahb-label-text {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(0, 200, 255, 0.65);
    font-family: 'Rajdhani', sans-serif;
}

.ahb-title {
    display: flex;
    align-items: baseline;
    gap: 0.4em;
    line-height: 1;
    margin: 0 0 1.4rem;
    opacity: 0;
    animation: ahbFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
}

.ahb-title-line1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #ffffff;
}

.ahb-title-line2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(3.5rem, 7vw, 6.5rem);
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1.5px #FFF;
    position: relative;
}

.ahb-glow-bar {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #77add2, #8ebbda, transparent);
    border-radius: 2px;
    margin-bottom: 1.8rem;
    box-shadow: 0 0 12px rgba(0, 220, 255, 0.6), 0 0 30px rgba(0, 220, 255, 0.2);
    animation: ahbBarExpand 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.55s forwards;
}

@keyframes ahbBarExpand {
    to { width: 180px; }
}

.ahb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    opacity: 0;
    animation: ahbFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.45s forwards;
}

.ahb-crumb-link {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.ahb-crumb-link:hover {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 0 12px rgba(255,255,255,0.2);
}

.ahb-crumb-sep {
    color: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
}

.ahb-crumb-active {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #77add2;
    text-shadow: 0 0 14px rgba(0, 220, 255, 0.6), 0 0 30px rgba(0, 220, 255, 0.2);
}

.ahb-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(2, 5, 14, 0.9));
    pointer-events: none;
    z-index: 5;
}

@keyframes ahbFadeUp {
    from { opacity: 0; transform: translateY(22px); }
    to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .about-hero-banner,
    .contact-hero-banner { min-height: 340px; }

    .ahb-title-line1,
    .ahb-title-line2 {
        font-size: clamp(2.8rem, 11vw, 4.5rem);
        letter-spacing: 0.12em;
    }

    .ahb-streak { display: none; }
    
}
@media (max-width: 991px) {
.glass-hover-overlay{
        opacity: 1;
        backdrop-filter: blur(0px);
    }
    .glass-hover-overlay > *{
        opacity: 1;
    }
}
/* =============================================
   TESTIMONIAL CARDS — card-index via nth-child
============================================= */
.testimonial-card:nth-child(1) { --card-index: 1; }
.testimonial-card:nth-child(2) { --card-index: 2; }
.testimonial-card:nth-child(3) { --card-index: 3; }
.testimonial-card:nth-child(4) { --card-index: 4; }
.testimonial-card:nth-child(5) { --card-index: 5; }
.testimonial-card:nth-child(6) { --card-index: 6; }

/* =============================================
   OFFICE CARDS — card-index via nth-child
============================================= */
.contact-info-card:nth-child(1) { --card-index: 1; }
.contact-info-card:nth-child(2) { --card-index: 2; }
.contact-info-card:nth-child(3) { --card-index: 3; }

/* =============================================
   GOOGLE MAP IFRAME — Remove border
============================================= */
.gmap-iframe {
    border: 0;
}

/* =============================================
   OFFICES GRID SECTION (from contact.html)
============================================= */

.offices-grid-section {
    padding: 80px 5% 100px;
    background:#000f2b;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.offices-container {
    max-width: 1400px;
    margin: 0 auto;
}

.offices-header {
    text-align: center;
    margin-bottom: 50px;
}

.offices-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #8ebbda;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.75rem;
}

.offices-header h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.offices-subtitle {
    font-size: 1.1rem;
    color: #94a3b8;
    font-weight: 500;
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 1024px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .offices-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .services-section{
            padding: 3rem 5vw;
    }
    .trusted-section{
          padding: 3rem 0;
    }
}
@media (max-width: 500px) {
    .hero-title{
        margin-bottom: 5.5rem;
    }
    .trusted-section, .cert-section{
          padding: 2rem 0;
    }
    .cert-title{
        margin-bottom: 2rem;
    }
    .site-footer{
            padding: 3rem 5vw 2rem;
    }
    .footer-contact-link, .footer-contact-row{
        justify-content: center;
    }
    .footer-grid{
        text-align: center;
    }
    .works-portfolio-section.premium-light-theme {
        padding: 2rem 5vw !important;
    }
    .top-section-container{
            padding: 0px 0px !important;
    }
    .top-section-heading-1{
        margin-bottom: 0rem !important;
    }
    .what-we-did-wrapper{
        padding: 17px 10% !important;
    }
    .what-we-did-container{
        gap: 0.5rem !important;
    }
    .services-delivered-wrapper{
            padding: 35px 10% 40px !important;
    }
    .services-delivered-container{
        gap: 0.5rem !important;
    }
    .clients-portfolio-section.premium-light-theme{
        padding: 2rem 5vw !important;
    }
    .blogs-main-section{
        padding: 1rem 5vw !important;
    }
    .blog-detail-section {
        padding: 2rem 6vw !important;
    }
    .blog-detail-grid {
        gap: 0.5rem !important;
    }
    .careers-jobs-section{
        padding: 3rem 5vw !important;
    }
    .careers-section-header {
        margin-bottom: 2rem !important;
    }
    .contact-section{
            padding: 47px 5% 30px 5% !important;
    }
    .contact-lead{
        margin-bottom: 0px !important;
    }
    .offices-grid-section{
        padding: 50px 5% 30px !important;
    }
    .service-action{
        opacity: 1 !important;
    }
    .service-content{
        padding: 4.4rem 0px 0rem 0px !important;
    }

}
.office-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.office-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.02) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.office-card:hover::before {
    opacity: 1;
}

.office-card.active {
    background: rgba(0, 240, 255, 0.025);
    border-color: #60a0cb;
    box-shadow: none;
}

.office-card.active .office-icon {
    background: #8ebbda;
    color: #020617;
    box-shadow: none;
    transform: scale(1.05) rotate(45deg);
}

.office-card-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.office-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 240, 255, 0.06);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: #8ebbda;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.nav-arrow-icon {
    transform: rotate(-45deg);
    transition: transform 0.4s ease;
}

.office-card:hover .nav-arrow-icon {
    transform: rotate(0deg);
}

.office-card:hover .office-icon {
    background: #8ebbda;
    color: #020617;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.office-card-header h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.office-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    flex-grow: 1;
}

.office-address {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 1.05rem;
    font-weight: 500;
    min-height: 72px;
}

.office-quick-info {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
}

.office-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.office-link i {
    width: 16px;
    height: 16px;
    color: #8ebbda;
    flex-shrink: 0;
}

.office-link:hover {
    color: #8ebbda;
}

/* =============================================
   GOOGLE MAP SECTION (from contact.html)
============================================= */

.gmap-section {
    width: 100%;
    background: #020509;
    padding-bottom: 0;
}

.gmap-header {
    padding: 5rem 6vw 2.5rem;
    background: #000f2b;
}

.gmap-header-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.gmap-label-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.gmap-label-line {
    display: block;
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 200, 255, 0.5));
}

.gmap-label-line:last-child {
    background: linear-gradient(to left, transparent, rgba(0, 200, 255, 0.5));
}

.gmap-label-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #60a0cb;
}

.gmap-heading {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    line-height: 1;
}

.gmap-heading span {
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 220, 255, 0.75);
    text-shadow:
        0 0 24px rgba(0, 220, 255, 0.45),
        0 0 55px rgba(0, 220, 255, 0.15);
}

.gmap-frame-wrap {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
}

.gmap-frame-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    z-index: 5;
}

.gmap-frame-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right, rgba(2, 5, 14, 0.4) 0%, transparent 15%, transparent 85%, rgba(2, 5, 14, 0.4) 100%),
        linear-gradient(to bottom, rgba(2, 5, 14, 0.25) 0%, transparent 12%, transparent 75%, rgba(2, 5, 14, 0.55) 100%);
    pointer-events: none;
    z-index: 4;
}

/* =============================================
   EVENT SERVICES PAGE STYLES (from events-services.html)
============================================= */

.services-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #020409;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('public/images/service-modi/imgi_3_1771414412_main.png');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.3) contrast(1.1);
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(2, 4, 9, 0.4) 0%,
        rgba(2, 4, 9, 0.1) 40%,
        rgba(2, 4, 9, 0.85) 100%
    );
}

.services-hero-glow-cyan {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.services-hero-glow-red {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(255, 0, 85, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.services-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 5vw;
    max-width: 900px;
}

.services-hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--neon-blue, #8ebbda);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    margin-bottom: 2.5rem;
    background: rgba(0, 240, 255, 0.05);
    backdrop-filter: blur(8px);
}

.services-hero-title {
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.8rem;
    font-family: 'Rajdhani', sans-serif;
}

.services-hero-title span {
    background: linear-gradient(135deg, #8ebbda 0%, #a855f7 60%, #ff0055 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 680px;
    margin: 0 auto 3rem;
    font-weight: 500;
}

.services-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.services-hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(168, 85, 247, 0.15));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-hero-cta:hover {
    border-color: rgba(0, 240, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2), 0 15px 35px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.services-hero-cta:hover::before { opacity: 1; }

.services-hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 240, 255, 0.7), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

.services-detail-section {
    padding: 5rem 5vw;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.services-detail-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #0B2C4A;
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, transparent 15%, transparent 85%, rgba(0, 0, 0, 0.65) 100%),
        url('public/images/service/detail-pattern.svg');
    background-repeat: no-repeat, repeat;
    background-size: auto, 60px 60px;
    background-position: 0 0, 0 0;
    animation: animateDetailPattern 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.services-detail-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 8rem;
    position: relative;
    z-index: 1;
}

.services-detail-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #60a0cb;
    display: block;
    margin-bottom: 1.2rem;
}

.services-detail-title {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.services-detail-glow-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #8ebbda, #a855f7);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
}

.services-detail-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}

.service-block {
    max-width: 1300px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-block:last-child { margin-bottom: 0; }

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

.service-block-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255,255,255,0.07);
}

.service-block-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.05);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
}

.service-block-img-wrapper:hover img {
    transform: scale(1.06);
    filter: brightness(0.9) contrast(1);
}

.service-block-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 240, 255, 0.05) 0%,
        rgba(5, 10, 21, 0.6) 100%
    );
    pointer-events: none;
}

.service-block-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 5rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.service-block-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8ebbda;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    backdrop-filter: blur(8px);
}

.service-block-content {
    display: flex;
    flex-direction: column;
}

.service-block-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 240, 255, 0.7);
    margin-bottom: 1rem;
}

.service-block-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.service-block-divider {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #60a0cb, rgba(168, 85, 247, 0.8));
    margin-bottom: 1.8rem;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.service-block-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

.service-block-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.service-block-features li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.service-block-features li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8ebbda;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.7);
}

.service-block-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.35rem;
    transition: all 0.4s ease;
    width: fit-content;
}

.service-block-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.35s ease;
}

.service-block-link:hover {
    color: #8ebbda;
    border-bottom-color: rgba(0, 240, 255, 0.5);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.service-block-link:hover svg {
    transform: translateX(5px);
}

.service-block-connector {
    max-width: 1300px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connector-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
}

.connector-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

.services-process-section {
    padding: 10rem 5vw;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.015);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.services-process-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 7rem;
}

.process-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.8);
    display: block;
    margin-bottom: 1rem;
}

.process-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
}

.process-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        rgba(0, 240, 255, 0.3) 20%,
        rgba(168, 85, 247, 0.3) 50%,
        rgba(255, 0, 85, 0.3) 80%,
        transparent
    );
}

.process-step {
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.process-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:nth-child(1) .process-step-icon {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.08);
}
.process-step:nth-child(2) .process-step-icon {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.08);
}
.process-step:nth-child(3) .process-step-icon {
    border-color: rgba(255, 165, 0, 0.3);
    box-shadow: 0 0 25px rgba(255, 165, 0, 0.08);
}
.process-step:nth-child(4) .process-step-icon {
    border-color: rgba(255, 0, 85, 0.3);
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.08);
}

.process-step-icon i {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    color: rgba(255,255,255,0.8);
}

.process-step-num {
    position: absolute;
    top: -10px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #020409;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.process-step-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.services-cta-section {
    padding: 10rem 5vw;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.services-cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #60a0cb;
    margin-bottom: 1.8rem;
}

.services-cta-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.services-cta-title span {
    background: linear-gradient(135deg, #8ebbda, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-cta-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto 3.5rem;
}

.services-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-primary:hover {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.25), rgba(168, 85, 247, 0.25));
    border-color: rgba(0, 240, 255, 0.7);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.2), 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: translateY(-3px);
}

.cta-glow-border {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ctaPulse 4s ease-in-out infinite;
}

.cta-glow-border-2 {
    width: 700px;
    height: 700px;
    border-color: rgba(168, 85, 247, 0.04);
    animation-delay: 1s;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); }
}

@media (max-width: 992px) {
    .stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) { border-right: none; }

    .service-block {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-bottom: 6rem;
    }

    .service-block.reverse { direction: ltr; }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }

    .process-timeline::before { display: none; }
}

@media (max-width: 768px) {
    .services-hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }

    .stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .stat-item:nth-last-child(-n+2) { border-bottom: none; }

    .service-block { margin-bottom: 5rem; }

    .process-timeline { grid-template-columns: 1fr; }

    .services-cta-buttons { flex-direction: column; align-items: center; }
}

/* =============================================
   SERVICE DETAIL PAGE STYLES (from service-detail.html)
============================================= */

.top-section-wrapper {
    background: #ffffff;
    padding: 3rem 10%;
    position: relative;
    z-index: 20;
}

.top-section-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.top-section-heading-1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: 700;
    color: #0a0a0a;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.2;
}

.top-section-paragraph {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444444;
    font-weight: 500;
}

.top-section-heading-2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    font-weight: 600;
    color: #0a0a0a;
    letter-spacing: 0.01em;
    line-height: 1.4;
    border-left: 3px solid #8ebbda;
    padding-left: 1.5rem;
}

.service-detail-section {
    padding: 6rem 5vw;
    background: linear-gradient(to bottom, #020409 0%, #050814 100%);
    position: relative;
    z-index: 10;
}

.project-showcase-strip {
    display: grid;
    grid-template-columns: 0.5fr 2fr 0.5fr 0.5fr;
    gap: 1rem;
    margin-bottom: 5rem;
    height: 380px;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (max-width: 768px) {
    .project-showcase-strip {
        grid-template-columns: 1fr;
        height: auto;
    }
}

.showcase-card {
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    background: rgba(5, 12, 28, 0.85);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.showcase-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transform: translateY(-4px);
}

.showcase-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    filter: grayscale(30%);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.showcase-card:hover .showcase-card-bg {
    opacity: 0.75;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.showcase-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(2, 6, 23, 0.95) 0%, rgba(2, 6, 23, 0.3) 60%, transparent 100%);
    z-index: 1;
}

.showcase-card-content {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.showcase-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #cbd5e1;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.showcase-card:hover .showcase-card-title {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
    opacity: 1;
    transform: translateY(0);
}

.showcase-card.active {
    background: rgba(2, 6, 23, 0.75);
    height: 280px;
    width: 100%;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.showcase-card.active .showcase-card-bg {
    opacity: 0.5;
    filter: grayscale(0%);
}

.showcase-card.active:hover .showcase-card-bg {
    opacity: 0.85;
    transform: scale(1.08);
}

.showcase-card.active .showcase-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #8ebbda;
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.6);
    letter-spacing: 0.08em;
    opacity: 0;
    transform: translateY(15px);
}

.showcase-card.active:hover .showcase-card-title {
    opacity: 1;
    transform: translateY(0);
}

.card-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: rgba(255, 255, 255, 0.05);
    border-style: solid;
    pointer-events: none;
    z-index: 5;
    transition: border-color 0.4s ease;
}

.card-corner-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.card-corner-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.card-corner-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.card-corner-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.showcase-card:hover .card-corner {
    border-color: #8ebbda;
}
.showcase-card.active .card-corner {
    border-color: #8ebbda;
}

.vertical-list-card {
    border-radius: 24px;
    padding: 4rem;
    backdrop-filter: blur(16px);
    margin-bottom: 5rem;
    position: relative;
}


.vertical-list-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.vertical-list-card h3 i {
    color: #a855f7;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

.vertical-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

@media (max-width: 768px) {
    .vertical-list-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.vertical-list-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.8rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.03);
    color: #cbd5e1;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.vertical-list-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #a855f7;
    box-shadow: 0 0 10px #a855f7;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.vertical-list-item:hover {
    background: rgba(168, 85, 247, 0.06);
    border-color: rgba(168, 85, 247, 0.3);
    color: #ffffff;
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.1);
}

.vertical-list-item:hover::before {
    background: #8ebbda;
    box-shadow: 0 0 12px #8ebbda;
    transform: scale(1.3);
}

.approach-section-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 4rem;
    backdrop-filter: blur(16px);
    margin-bottom: 5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.approach-section-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.02) 0%, transparent 65%);
    pointer-events: none;
}

.approach-section-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.approach-section-card h3 i {
    color: #8ebbda;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.5));
}

.approach-text-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.approach-text-block p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #cbd5e1;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.approach-text-block p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8ebbda;
    box-shadow: 0 0 10px #8ebbda;
    transition: all 0.3s ease;
}

.approach-text-block p:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.approach-text-block p:hover::before {
    background: #a855f7;
    box-shadow: 0 0 12px #a855f7;
    transform: scale(1.3);
}

/* =============================================
   WORK DETAIL PAGE STYLES (from work-detail.html)
============================================= */

.work-detail-layout {
    padding: 5rem 5vw;
    background: linear-gradient(to bottom, #020409 0%, #050814 100%);
    position: relative;
    z-index: 10;
}

.work-detail-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 1100px) {
    .work-detail-grid {
        grid-template-columns: 1fr;
    }
}

.main-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.detail-badge {
    display: inline-block;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #8ebbda;
    text-shadow: 0 0 12px rgba(0, 240, 255, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    background: rgba(0, 240, 255, 0.06);
    backdrop-filter: blur(8px);
    margin-bottom: 0.5rem;
}

.detail-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
}

.detail-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .project-hero-image-wrapper {
        height: 280px;
    }
}

.project-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-hero-image-wrapper:hover .project-main-image {
    transform: scale(1.03);
}

.detail-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #94a3b8;
}

.detail-stats-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .detail-stats-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.stat-box {
    text-align: center;
}

.stat-box-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #8ebbda;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
    margin-bottom: 0.35rem;
}

.stat-box-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #64748b;
    text-transform: uppercase;
}

.info-block-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-block-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: border-color 0.4s ease;
}

.info-block-card:hover {
    border-color: rgba(0, 240, 255, 0.15);
}

.info-block-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-block-card h3 i {
    color: #8ebbda;
    width: 20px;
    height: 20px;
}

.info-block-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-block-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

.info-block-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8ebbda;
    box-shadow: 0 0 8px #8ebbda;
    margin-top: 0.6rem;
}

.sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(16px);
    position: relative;
}

.sidebar-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

.project-specs-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.8rem;
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #64748b;
    text-transform: uppercase;
}

.spec-val {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-align: right;
}

.execution-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    position: relative;
}

.execution-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(to bottom, #8ebbda, rgba(168, 85, 247, 0.3) 70%, transparent);
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.step-indicator {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(2, 6, 23, 0.9);
    border: 1.5px solid rgba(0, 240, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ebbda;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.timeline-step:hover .step-indicator {
    border-color: #8ebbda;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transform: scale(1.05);
}

.step-content h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.step-content p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
}

.sidebar-cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

.sidebar-card:hover .card-corner,
.project-hero-image-wrapper:hover .card-corner {
    border-color: #8ebbda;
}

/* ==========================================================================
   PREMIUM EDITORIAL BLOG DETAIL PAGE STYLING (LIGHT THEME HIGH FIDELITY)
   ========================================================================== */
.blog-detail-section {
    position: relative;
    width: 100%;
    padding: 6rem 5vw;
    background-color: #ffffff; /* Clean Solid White */
    color: #334155; /* Slate Gray for high readability */
    font-family: 'Outfit', 'Rajdhani', sans-serif;
    overflow: hidden;
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 7fr 3fr;
    gap: 4.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Column Styling */
.blog-main-content-col {
    display: flex;
    flex-direction: column;
}

.blog-detail-header-custom {
    margin-bottom: 2rem;
}

.blog-detail-header-custom .blog-title-text {
    font-family: 'Outfit', 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.2;
    color: #0f172a; /* Slate Dark */
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
    text-transform: none;
}

.blog-detail-header-custom .blog-meta-strip {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #64748b; /* Cool Gray */
    letter-spacing: 0.05em;
}

.blog-detail-header-custom .blog-category {
    color: #1C77B4; /* Blue highlight */
    font-weight: 700;
}

.blog-detail-header-custom .blog-meta-divider {
    color: #cbd5e1;
}

.blog-detail-header-custom .blog-date {
    color: #64748b;
}

/* cover Image styling */
.blog-main-hero-wrapper {
    width: 100%;
    margin-bottom: 3rem;
    border-radius: 12px;
    overflow: hidden;
}

.blog-main-hero-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Article Body typography */
.blog-article-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #475569;
}

.blog-article-body .blog-lead-paragraph {
    font-size: 1.15rem;
    font-weight: 500;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 2.2rem;
}

.blog-article-body .blog-rich-heading-h2 {
    font-family: 'Outfit', 'Rajdhani', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #0f172a;
    margin-top: 2.5rem;
    margin-bottom: 0.8rem;
    letter-spacing: -0.01em;
}

.blog-article-body .blog-content-paragraph {
    margin-bottom: 1.5rem;
}

.blog-article-body .blog-content-paragraph:last-child {
    margin-bottom: 0;
}

/* Sidebar Column Styling */
.blog-sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.sidebar-widget {
    background: transparent;
    border: none;
    padding: 0;
}

.sidebar-title {
    font-family: 'Outfit', 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    position: relative;
    text-transform: none;
    border: none;
}

.sidebar-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 3px;
    background-color: #1C77B4; /* Blue indicator line */
}

/* Search widget styling */
.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.search-input-field {
    width: 100%;
    height: 46px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    padding: 0 3.2rem 0 1rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #1e293b;
    outline: none;
    transition: all 0.3s ease;
}

.search-input-field::placeholder {
    color: #94a3b8;
}

.search-input-field:focus {
    border-color: #1C77B4;
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.1);
}

.search-icon-btn {
    position: absolute;
    right: 0.8rem;
    background: none;
    border: none;
    color: #1C77B4;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
}

.search-icon-btn svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.2px;
}

/* Categories widget styling */
.categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.category-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.6rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
    text-decoration: none;
    transition: all 0.3s ease;
}

.category-item span:first-child {
    text-transform: none;
}

.category-item .category-count {
    color: #1C77B4;
    font-weight: 600;
}

.category-item:hover {
    color: #1C77B4;
    border-bottom-color: #1C77B4;
    padding-left: 4px;
}

/* Recent Posts widget styling */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.recent-post-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.recent-post-row:hover {
    transform: translateX(4px);
}

.recent-post-thumb {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f1f5f9;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.recent-post-title {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.recent-post-row:hover .recent-post-title {
    color: #1C77B4;
}

.recent-post-date {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.05em;
}

/* Tags widget styling */
.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.6rem;
}

.tag-badge {
    display: inline-block;
    padding: 0.45rem 0.85rem;
    background-color: #f1f5f9; /* Light slate background */
    color: #475569;
    border-radius: 4px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-badge:hover {
    background-color: #1C77B4;
    color: #ffffff;
}

/* Responsive Styles overrides */
@media (max-width: 992px) {
    .blog-detail-section {
        padding: 5rem 6vw;
    }
    .blog-detail-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    .blog-sidebar-col {
        gap: 3rem;
        margin-top: 1rem;
    }
}

/* ==========================================================================
   WORK DETAIL DYNAMIC PAGE — SPECIFIC WIREFRAME STYLES
   ========================================================================== */
.work-detail-section {
    padding: 60px 5% 120px;
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

/* Full-Width White Section Wrapper */
.top-section-wrapper {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.top-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,  #0B2C4A, #1C77B4);
}

/* Top Copy Layout */
.top-section-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1520px;
    margin: 0 auto;
    padding: 40px 0px;
    text-align: left;
}

.top-section-heading-1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0f172a 30%, #4f46e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.top-section-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.top-section-heading-2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color:  #1C77B4;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg,  #1C77B4 0%, #8ebbda 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content Grid */
.work-detail-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: start;
}

@media (max-width: 1024px) {
    .work-detail-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

.detail-body-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.detail-header-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: #8ebbda;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.4);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.4rem 1.2rem;
    border-radius: 40px;
    background: rgba(0, 240, 255, 0.05);
    width: fit-content;
    text-transform: uppercase;
}

.detail-main-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 1rem 0 1.5rem;
}

.detail-subtitle {
    font-size: 1.2rem;
    font-weight: 500;
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Project Main Showcase Image */
.project-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .project-hero-image-wrapper {
        height: 280px;
    }
}

.project-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.project-hero-image-wrapper:hover .project-main-image {
    transform: scale(1.03);
}

.detail-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #94a3b8;
}

/* Stats Block */
.detail-stats-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(12px);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}

@media (max-width: 640px) {
    .detail-stats-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.stat-box {
    text-align: center;
}

.stat-box-num {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #8ebbda;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
    margin-bottom: 0.35rem;
}

.stat-box-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #64748b;
    text-transform: uppercase;
}

/* Challenges & Solutions Card Layout */
.info-block-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.info-block-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
    transition: border-color 0.4s ease;
}

.info-block-card:hover {
    border-color: rgba(0, 240, 255, 0.15);
}

.info-block-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.info-block-card h3 i {
    color: #8ebbda;
    width: 20px;
    height: 20px;
}

.info-block-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.info-block-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #94a3b8;
}

.info-block-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8ebbda;
    box-shadow: 0 0 8px #8ebbda;
    margin-top: 0.6rem;
}

/* Sidebar Side - Interactive Staged Execution Timeline */
.sidebar-col {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    backdrop-filter: blur(16px);
    position: relative;
}

.sidebar-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1rem;
}

/* Project Specs List */
.project-specs-list {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(8px);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 0.8rem;
}

.spec-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.spec-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: #64748b;
    text-transform: uppercase;
}

.spec-val {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
    text-align: right;
}

/* Execution Timeline Steps */
.execution-timeline {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    position: relative;
}

.execution-timeline::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 20px;
    bottom: 10px;
    width: 1px;
    background: linear-gradient(to bottom, #8ebbda, rgba(168, 85, 247, 0.3) 70%, transparent);
}

.timeline-step {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.step-indicator {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(2, 6, 23, 0.9);
    border: 1.5px solid rgba(0, 240, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8ebbda;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 2;
    flex-shrink: 0;
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

.timeline-step:hover .step-indicator {
    border-color: #8ebbda;
    box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
    transform: scale(1.05);
}

.step-content h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.step-content p {
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.5;
}

/* Sidebar Action Button */
.sidebar-cta-btn {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* Cyber corner accents */
.card-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    border-color: rgba(0, 240, 255, 0.3);
    border-style: solid;
    pointer-events: none;
    z-index: 5;
}

.card-corner-tl { top: 0; left: 0; border-width: 2px 0 0 2px; }
.card-corner-tr { top: 0; right: 0; border-width: 2px 2px 0 0; }
.card-corner-bl { bottom: 0; left: 0; border-width: 0 0 2px 2px; }
.card-corner-br { bottom: 0; right: 0; border-width: 0 2px 2px 0; }

.sidebar-card:hover .card-corner,
.project-hero-image-wrapper:hover .card-corner {
    border-color: #8ebbda;
}

/* ============================================================
   CUSTOM COCA-COLA CASE STUDY STYLES (MATCHING SCREENSHOT)
============================================================ */
.coca-cola-detail-section {
    padding: 80px 5% 120px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.coca-cola-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 60px 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.4s ease;
}

@media (max-width: 768px) {
    .coca-cola-card {
        padding: 40px 30px;
    }
}

.coca-cola-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
}

.coca-cola-header-left {
    flex: 1;
    min-width: 280px;
}

.coca-cola-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0;
}

.coca-cola-header-right {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

@media (max-width: 640px) {
    .coca-cola-header {
        flex-direction: column;
        gap: 1.5rem;
    }
    .coca-cola-header-right {
        width: 100%;
        justify-content: space-between;
        gap: 1rem;
    }
}

.coca-cola-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.coca-cola-meta-label {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #64748b;
    text-transform: uppercase;
}

.coca-cola-meta-value {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    text-transform: uppercase;
}

.coca-cola-share-icons {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.coca-cola-share-icon {
    color: #64748b;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coca-cola-share-icon:hover {
    color: #4f46e5;
    transform: translateY(-2px);
}

.coca-cola-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 40px 0 50px 0;
    width: 100%;
}

.coca-cola-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.coca-cola-block {
    margin-bottom: 3.5rem;
}

.coca-cola-block:last-child {
    margin-bottom: 0;
}

.coca-cola-block-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: #0f172a;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 15px;
}

.coca-cola-block-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 12px;
    background: #4f46e5;
    border-radius: 2px;
}

.coca-cola-block-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
    margin: 0;
    max-width: 900px;
}

/* ============================================================
   WHAT WE DID SECTION STYLES
============================================================ */
.what-we-did-wrapper {
    width: 100%;
    background: #1C77B4;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 80px 10%;
    position: relative;
    z-index: 10;
}

.what-we-did-container {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.what-we-did-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #FFF;
    text-transform: uppercase;
}

.what-we-did-subheading {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.3rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #FFF;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0;
}

.what-we-did-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #FFF;
    margin: 0;
    font-weight: 500;
}

/* ============================================================
   SERVICES DELIVERED SECTION STYLES
============================================================ */
.services-delivered-wrapper {
    width: 100%;
    background: #ffffff;
    padding: 80px 10% 120px;
    position: relative;
    z-index: 10;
}

.services-delivered-container {
    max-width: 1520px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    text-align: left;
}

.services-delivered-badge {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #000000;
    text-transform: uppercase;
    margin: 0 0 0.5rem 0;
}

.services-delivered-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem 4rem;
}

@media (max-width: 768px) {
    .services-delivered-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.service-list-item {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #000000;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.service-list-item-prefix {
    color: #64748b;
    font-weight: 700;
}

/* Video Showcase Box */
.video-showcase-box {
    width: 100%;
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    position: relative;
    background: #eaeaea;
    aspect-ratio: 16 / 9;
    max-height: 480px;
}

.video-thumbnail-container {
    width: 100%;
    height: 100% !important;
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-thumbnail-container:hover .video-thumbnail-img {
    transform: scale(1.02);
}

.video-thumbnail-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

.video-thumbnail-container:hover .video-thumbnail-overlay {
    background: rgba(0, 0, 0, 0.25);
}

.video-play-indicator {
    position: absolute;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1.5px solid #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000000;
    z-index: 10;
    transition: all 0.4s ease;
}

.indicator-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    animation: pulse-glow 2s infinite ease-in-out;
    pointer-events: none;
    transition: all 0.4s ease;
}

@keyframes pulse-glow {
    0% {
        transform: scale(0.95);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.15);
        opacity: 0;
    }
    100% {
        transform: scale(0.95);
        opacity: 0;
    }
}

.video-thumbnail-container:hover .video-play-indicator {
    transform: scale(1.08);
    background: #ffffff;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   EVENT SERVICES PAGE — DEDICATED STYLES
   ========================================================================== */

/* --- Services Hero Banner --- */
.services-hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #020409;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('public/images/service-modi/imgi_3_1771414412_main.png');
    background-size: cover;
    background-position: center 30%;
    filter: brightness(0.3) contrast(1.1);
    transform: scale(1.05);
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    from { transform: scale(1.05); }
    to   { transform: scale(1.12); }
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(2, 4, 9, 0.4) 0%,
        rgba(2, 4, 9, 0.1) 40%,
        rgba(2, 4, 9, 0.85) 100%
    );
}

.services-hero-glow-cyan {
    position: absolute;
    top: -20%;
    left: -10%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
}

.services-hero-glow-red {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 55vw;
    height: 55vw;
    background: radial-gradient(circle, rgba(255, 0, 85, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.services-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 5vw;
    max-width: 900px;
}

.services-hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--neon-blue, #8ebbda);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.25);
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    margin-bottom: 2.5rem;
    background: rgba(0, 240, 255, 0.05);
    backdrop-filter: blur(8px);
}

.services-hero-title {
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 700;
    line-height: 1.0;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.8rem;
    font-family: 'Rajdhani', sans-serif;
}

.services-hero-title span {
    background: linear-gradient(135deg, #8ebbda 0%, #a855f7 60%, #ff0055 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    max-width: 680px;
    margin: 0 auto 3rem;
    font-weight: 500;
}

.services-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.services-hero-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(168, 85, 247, 0.15));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.services-hero-cta:hover {
    border-color: rgba(0, 240, 255, 0.6);
    box-shadow: 0 0 30px rgba(0, 240, 255, 0.2), 0 15px 35px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.services-hero-cta:hover::before { opacity: 1; }

.services-hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(0, 240, 255, 0.7), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.1); }
}

/* --- Services Detail Section --- */
.services-detail-section {
    padding: 5rem 5vw;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.services-detail-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #0B2C4A;
    background-image: 
        linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, transparent 15%, transparent 85%, rgba(0, 0, 0, 0.65) 100%),
        url('public/images/service/detail-pattern.svg');
    background-repeat: no-repeat, repeat;
    background-size: auto, 60px 60px;
    background-position: 0 0, 0 0;
    animation: animateDetailPattern 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

.services-detail-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 8rem;
    position: relative;
    z-index: 1;
}

.services-detail-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #60a0cb;
    display: block;
    margin-bottom: 1.2rem;
}

.services-detail-title {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.services-detail-glow-line {
    width: 60px;
    height: 2px;
    background: rgb(232, 241, 248);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 12px rgb(232, 241, 248);
}

.services-detail-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
}

/* --- Service Block (Alternating Split) --- */
.service-block {
    max-width: 1300px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.service-block:last-child { margin-bottom: 0; }

.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }

/* Image Side */
.service-block-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid rgba(255,255,255,0.07);
}

.service-block-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.75) contrast(1.05);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), filter 1.2s ease;
}

.service-block-img-wrapper:hover img {
    transform: scale(1.06);
    filter: brightness(0.9) contrast(1);
}

.service-block-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 240, 255, 0.05) 0%,
        rgba(5, 10, 21, 0.6) 100%
    );
    pointer-events: none;
}

.service-block-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 5rem;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
    color: rgba(255,255,255,0.06);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.service-block-tag {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #8ebbda;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 40px;
    backdrop-filter: blur(8px);
}

/* Content Side */
.service-block-content {
    display: flex;
    flex-direction: column;
}

.service-block-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 240, 255, 0.7);
    margin-bottom: 1rem;
}

.service-block-title {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.service-block-divider {
    width: 40px;
    height: 2px;
    background: RGB(142, 187, 218);
    margin-bottom: 1.8rem;
    box-shadow: 0 0 8px rgba(142, 187, 218);
}

.service-block-desc {
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2rem;
}

/* Feature List */
.service-block-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.service-block-features li {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.service-block-features li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #8ebbda;
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.7);
}

/* CTA Link */
.service-block-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 0.35rem;
    transition: all 0.4s ease;
    width: fit-content;
}

.service-block-link svg {
    width: 14px;
    height: 14px;
    transition: transform 0.35s ease;
}

.service-block-link:hover {
    color: #8ebbda;
    border-bottom-color: rgba(0, 240, 255, 0.5);
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.service-block-link:hover svg {
    transform: translateX(5px);
}

/* Connecting decorative element between blocks */
.service-block-connector {
    max-width: 1300px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.connector-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.08), transparent);
}

.connector-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.4);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.3);
}

/* --- Process Section --- */
.services-process-section {
    padding: 10rem 5vw;
    position: relative;
    overflow: hidden;
    background: rgba(255,255,255,0.015);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.services-process-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 7rem;
}

.process-badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(168, 85, 247, 0.8);
    display: block;
    margin-bottom: 1rem;
}

.process-title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.2rem;
    font-family: 'Rajdhani', sans-serif;
}

.process-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        rgba(0, 240, 255, 0.3) 20%,
        rgba(168, 85, 247, 0.3) 50%,
        rgba(255, 0, 85, 0.3) 80%,
        transparent
    );
}

.process-step {
    text-align: center;
    padding: 0 2rem;
    position: relative;
}

.process-step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:nth-child(1) .process-step-icon {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: 0 0 25px rgba(0, 240, 255, 0.08);
}
.process-step:nth-child(2) .process-step-icon {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.08);
}
.process-step:nth-child(3) .process-step-icon {
    border-color: rgba(255, 165, 0, 0.3);
    box-shadow: 0 0 25px rgba(255, 165, 0, 0.08);
}
.process-step:nth-child(4) .process-step-icon {
    border-color: rgba(255, 0, 85, 0.3);
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.08);
}

.process-step-icon i {
    width: 28px;
    height: 28px;
    stroke-width: 1.5;
    color: rgba(255,255,255,0.8);
}

.process-step-num {
    position: absolute;
    top: -10px;
    right: -5px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #020409;
    border: 1px solid rgba(255,255,255,0.15);
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
    font-family: 'Rajdhani', sans-serif;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.process-step-desc {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

/* --- CTA Section --- */
.services-cta-section {
    padding: 10rem 5vw;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.services-cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.services-cta-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #60a0cb;
    margin-bottom: 1.8rem;
}

.services-cta-title {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: 'Rajdhani', sans-serif;
}

.services-cta-title span {
    background: linear-gradient(135deg, #8ebbda, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-cta-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    max-width: 560px;
    margin: 0 auto 3.5rem;
}

.services-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(0, 240, 255, 0.4);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-primary:hover {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.25), rgba(168, 85, 247, 0.25));
    border-color: rgba(0, 240, 255, 0.7);
    box-shadow: 0 0 35px rgba(0, 240, 255, 0.2), 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.75);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn-secondary:hover {
    border-color: rgba(255,255,255,0.4);
    color: #fff;
    transform: translateY(-3px);
}

/* CTA glowing border decoration */
.cta-glow-border {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(0, 240, 255, 0.05);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: ctaPulse 4s ease-in-out infinite;
}

.cta-glow-border-2 {
    width: 700px;
    height: 700px;
    border-color: rgba(168, 85, 247, 0.04);
    animation-delay: 1s;
}

@keyframes ctaPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.03); }
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) { border-right: none; }

    .service-block {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        margin-bottom: 6rem;
    }

    .service-block.reverse { direction: ltr; }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem 2rem;
    }

    .process-timeline::before { display: none; }
}

@media (max-width: 768px) {
    .services-hero-title { font-size: clamp(2.8rem, 10vw, 4rem); }

    .stats-strip-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .stat-item:nth-last-child(-n+2) { border-bottom: none; }

    .service-block { margin-bottom: 5rem; }

    .process-timeline { grid-template-columns: 1fr; }

    .services-cta-buttons { flex-direction: column; align-items: center; }
}

/* ==========================================================================
   SERVICE DETAIL DYNAMIC PAGE — SPECIFIC WIREFRAME STYLES
   ========================================================================== */
.service-detail-page .service-detail-section {
    padding: 80px 10% 40px;
    position: relative;
    z-index: 10;
    width: 100%;
}

/* Full-Width White Section Wrapper */
.service-detail-page .top-section-wrapper {
    width: 100%;
    background: #ffffff;
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.service-detail-page .top-section-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 0px;
    background: linear-gradient(90deg, #8ebbda, #a855f7);
}

/* Top Copy Layout */
.service-detail-page .top-section-container {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    max-width: 1520px;
    margin: 0 auto;
    padding: 80px 0px 0px 0px;
    text-align: left;
}

.service-detail-page .top-section-heading-1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #0f172a 30%, #1C77B4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-detail-page .top-section-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.service-detail-page .top-section-heading-2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    font-weight: 700;
    color: #0B2C4A;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    background: linear-gradient(135deg,  #0B2C4A 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Service Gallery Strip styling */
.service-detail-page .service-gallery-wrapper {
    width: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
}



.service-detail-page .service-gallery-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    width: 100%;
    background-color: #FFF;
}

.service-detail-page .service-gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 17;
    width: 99.9%;
}

.service-detail-page .service-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-detail-page .service-gallery-item:hover .service-gallery-img {
    transform: scale(1.08);
}

.service-detail-page .service-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35); /* Subtle dark layer initially */
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none;
    z-index: 2;
}

.service-detail-page .service-gallery-item:hover .service-gallery-overlay {
    background: rgba(0, 0, 0, 0.75); /* Darken significantly on hover to make description text highly readable */
}

.service-detail-page .service-gallery-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%); /* Subtle slide-up start coordinate */
    width: 85%;
    text-align: center;
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(0.9rem, 1.4vw, 1.2rem);
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    line-height: 1.4;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 4;
    pointer-events: none;
}

.service-detail-page .service-gallery-item:hover .service-gallery-title {
    opacity: 1;
    transform: translate(-50%, -50%); /* Centered end coordinate on hover */
}

.service-detail-page .gallery-accent-bottom {
    width: 100%;
}

/* Responsiveness */
@media (max-width: 1024px) {
    .service-detail-page .service-gallery-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .service-detail-page .service-gallery-strip {
        grid-template-columns: 1fr;
    }
    .hero-title{
        font-size: 1.8rem;
    }
}

/* EVENT MANAGEMENT Vertical List Section */
.service-detail-page .vertical-list-card {
    border-radius: 14px;
    padding: 0rem 0px;
    backdrop-filter: blur(16px);
    margin: 0 auto 5rem;
    max-width: 1520px;
    position: relative;
}


.service-detail-page .vertical-list-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-detail-page .vertical-list-card h3 i {
    color: #a855f7;
    filter: drop-shadow(0 0 8px rgba(168, 85, 247, 0.5));
}

.service-detail-page .vertical-list-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.8rem;
}

@media (max-width: 768px) {
    .service-detail-page .vertical-list-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }
}

.service-detail-page .vertical-list-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.2rem 1.8rem;
    border-radius: 14px;
    border-color: #60a0cb;
    color: #ffffff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-detail-page .vertical-list-item::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: RGB(96, 160, 203);
    box-shadow: 0 0 10px RGB(96, 160, 203);
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.service-detail-page .vertical-list-item:hover {
    background: rgb(51, 133, 188);
    border-color: rgba(168, 85, 247, 0.3);
    color: #ffffff;
    transform: translateX(8px);
    box-shadow: 0 5px 20px rgba(168, 85, 247, 0.1);
}

.service-detail-page .vertical-list-item:hover::before {
    background: #8ebbda;
    box-shadow: 0 0 12px #8ebbda;
    transform: scale(1.3);
}

/* Approach Section Card */
.service-detail-page .approach-section-card {
    background: RGB(51, 133, 188);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 24px;
    padding: 4rem;
    backdrop-filter: blur(16px);
    margin: 0 auto 5rem;
    max-width: 1520px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.service-detail-page .approach-section-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.02) 0%, transparent 65%);
    pointer-events: none;
}

.service-detail-page .approach-section-card h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-detail-page .approach-section-card h3 i {
    color: #8ebbda;
    filter: drop-shadow(0 0 8px rgba(0, 240, 255, 0.5));
}

.service-detail-page .approach-text-block ul {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-detail-page .approach-text-block p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #cbd5e1;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
    padding-left: 2rem;
    transition: all 0.3s ease;
}

.service-detail-page .approach-text-block p::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #0B2C4A;
    box-shadow: 0 0 10px #0B2C4A;
    transition: all 0.3s ease;
}

.service-detail-page .approach-text-block p:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.service-detail-page .approach-text-block p:hover::before {
    background: #FFF;
    box-shadow: 0 0 12px #FFF;
    transform: scale(1.3);
}

/* ==========================================================================
   PREMIUM 3D ICECUBE PRELOADER SCREEN
   ========================================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0B2C4A; /* Matches rich dark website color */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.8s cubic-bezier(0.85, 0, 0.15, 1), transform 0.8s cubic-bezier(0.85, 0, 0.15, 1);
    will-change: opacity, transform;
}

#preloader.fade-out {
    opacity: 0;
    transform: scale(1.05); /* Soft scale-out zoom transition */
    pointer-events: none;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3.5rem;
}

/* 3D Cube Container */
.icecube-loader-container {
    width: 100px;
    height: 100px;
    perspective: 600px; /* 3D depth perspective */
}

.icecube-3d {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateIceCube 6s linear infinite;
}

/* Cube Face Styles - Translucent Frost Glass */
.cube-face {
    position: absolute;
    width: 100px;
    height: 100px;
    background: rgba(0, 240, 255, 0.08); /* Ice cyan tint */
    border: 1.5px solid rgba(0, 240, 255, 0.45); /* Luminous neon border */
    box-shadow: inset 0 0 18px rgba(0, 240, 255, 0.25), 0 0 15px rgba(0, 240, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: all 0.5s ease;
}

/* 3D Rotations of faces */
.cube-front  { transform: rotateY(0deg) translateZ(50px); }
.cube-back   { transform: rotateY(180deg) translateZ(50px); }
.cube-left   { transform: rotateY(-90deg) translateZ(50px); }
.cube-right  { transform: rotateY(90deg) translateZ(50px); }
.cube-top    { transform: rotateX(90deg) translateZ(50px); }
.cube-bottom { transform: rotateX(-90deg) translateZ(50px); }

/* Pulsing core inside the cube */
.cube-core {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, #8ebbda 0%, #a855f7 70%, transparent 100%);
    filter: blur(6px);
    animation: pulseCore 2.5s ease-in-out infinite alternate;
    z-index: 1;
    transform: translateZ(0px);
}

/* Rotation Keyframe */
@keyframes rotateIceCube {
    0% {
        transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg);
    }
    100% {
        transform: rotateX(360deg) rotateY(360deg) rotateZ(180deg);
    }
}

/* Core Pulse Keyframe */
@keyframes pulseCore {
    0% {
        transform: scale(0.85);
        opacity: 0.55;
    }
    100% {
        transform: scale(1.15);
        opacity: 0.95;
        filter: blur(10px) drop-shadow(0 0 15px #60a0cb);
    }
}

/* Typography & Progress bar */
.loader-text-wrapper {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.loader-brand-title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.25em;
    background: linear-gradient(90deg, #ffffff,  #0B2C4A,#1C77B4, #e8f1f8);
    background-size: 300% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmerText 5s linear infinite;
}

.loader-brand-subtitle {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.38em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
}

/* Shimmer text keyframe */
@keyframes shimmerText {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

/* Loader Progress Bar */
.loader-progress-container {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loader-progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #0B2C4A,  #1C77B4);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.6);
    transition: width 0.3s ease-out;
}

/* --- Lenis Smooth Scrolling --- */
html.lenis, html.lenis body {
    height: auto;
}
.lenis-smooth {
    scroll-behavior: auto !important;
}
.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}
.lenis-stopped {
    overflow: hidden;
}
.lenis-scrolling iframe {
    pointer-events: none;
}

/* Scroll Animation for repeating detail pattern */
@keyframes animateDetailPattern {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 0 0, 60px 0;
    }
}

/* ==========================================================================
   404 ERROR PAGE STYLES
   ========================================================================== */
.error-section {
    min-height: calc(100vh - var(--nav-height) - 150px);
    margin-top: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.error-container {
    position: relative;
    width: 100%;
    max-width: 900px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

/* Large 404 background digits matching user reference */
.error-bg-digits {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.digit {
    font-family: 'Orbitron', var(--font-main), sans-serif !important;
    font-weight: 900;
    font-size: clamp(10rem, 24vw, 26rem);
    line-height: 1;
    color: rgba(255, 255, 255, 0.025);
    text-shadow: 0 0 50px rgba(142, 187, 218, 0.02);
    transition: color 0.5s ease;
}

/* Centered Content over the '0' digit */
.error-content {
    position: relative;
    z-index: 2;
    max-width: 460px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.error-title {
    font-family: var(--font-main) !important;
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: #ffffff;
    margin-bottom: 0.8rem;
    text-transform: none;
}

.error-description {
    font-family: "Nunito", sans-serif !important;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 2.2rem;
    max-width: 380px;
}

/* Premium Oval Button matching user reference */
.home-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: #0d385f;
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 1.1rem 2.8rem;
    border-radius: 100px;
    font-family: var(--font-main) !important;
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.home-btn:hover {
    background: #ffffff;
    color: var(--bg-color);
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(142, 187, 218, 0.25);
}

.home-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.home-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .error-section {
        padding: 6rem 1rem;
    }
    
    .error-container {
        min-height: 300px;
    }

    .error-bg-digits {
        justify-content: center;
        gap: 0.5rem;
    }

    .digit {
        font-size: clamp(6rem, 20vw, 10rem);
    }

    .error-content {
        padding: 1rem;
    }

    .error-title {
        font-size: 2.2rem;
    }

    .error-description {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    .error-bg-digits {
        top: 5%;
    }
}

/* =========================================
   GET IN TOUCH MODAL
========================================= */
.cta-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 15, 26, 0.85); /* Darker, more premium backdrop */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 99999;
    
    /* Outer Scrolling Setup */
    display: block;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1rem;
    
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom scrollbar for outer overlay */
.cta-modal-overlay::-webkit-scrollbar {
    width: 8px;
}
.cta-modal-overlay::-webkit-scrollbar-track {
    background: rgba(4, 15, 26, 0.5);
}
.cta-modal-overlay::-webkit-scrollbar-thumb {
    background: rgba(142, 187, 218, 0.3);
    border-radius: 4px;
}
.cta-modal-overlay::-webkit-scrollbar-thumb:hover {
    background: rgba(142, 187, 218, 0.6);
}

.cta-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cta-modal-content {
    position: relative;
    /* Center horizontally, vertical gap */
    margin: 5vh auto;
    
    width: 100%;
    max-width: 650px;
    background: #ffffff; /* White background */
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    box-shadow: 
        0 30px 60px -12px rgba(0, 0, 0, 0.25), 
        0 0 40px rgba(0, 0, 0, 0.05);
    transform: scale(0.95) translateY(20px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cta-modal-overlay.active .cta-modal-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.cta-modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: #f0f4f8;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--bg-color);
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.cta-modal-close:hover {
    background: #e2e8f0;
    color: #000;
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cta-modal-header {
    margin-bottom: 1.5rem;
    text-align: center;
}

.cta-modal-header h2 {
    font-size: 2.2rem;
    background: linear-gradient(to right, var(--bg-color), #2b6cb0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.3rem;
    font-family: var(--font-main);
    letter-spacing: 1px;
}

.cta-modal-header p {
    color: #4a5568;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* Compact specific form styling for modal */
.cta-modal-content .form-group {
    margin-bottom: 1rem;
}

.cta-modal-content label {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
    color: #2d3748;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.cta-modal-content input, 
.cta-modal-content select, 
.cta-modal-content textarea {
    padding: 0.8rem 1rem !important;
    background: #f7fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
    color: #1a202c !important;
    height: auto !important;
    width: 100% !important;
}

.cta-modal-content input::placeholder, 
.cta-modal-content textarea::placeholder {
    color: #a0aec0 !important;
}

.cta-modal-content input:focus, 
.cta-modal-content select:focus, 
.cta-modal-content textarea:focus {
    background: #ffffff !important;
    border-color: var(--neon-blue) !important;
    box-shadow: 0 0 0 3px rgba(142, 187, 218, 0.3) !important;
    outline: none !important;
}

.cta-modal-content textarea {
    min-height: 80px !important;
    max-height: 120px !important;
}

.cta-modal-content .form-submit-btn {
    margin-top: 0.5rem;
    padding: 0.9rem;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--bg-color), #2b6cb0);
    color: #ffffff;
    box-shadow: 0 5px 20px rgba(11, 44, 74, 0.2);
    border: none;
    width: 100%;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-modal-content .form-submit-btn:hover {
    box-shadow: 0 8px 25px rgba(11, 44, 74, 0.4);
    transform: translateY(-2px);
    background: linear-gradient(135deg, #2b6cb0, var(--neon-blue));
    color: #ffffff;
}

.cta-modal-content .form-submit-btn svg {
    stroke: #ffffff;
}

@media (max-width: 768px) {
    .cta-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
        border-radius: 20px;
    }
    
    .cta-modal-header h2 {
        font-size: 1.8rem;
    }
    
    .cta-modal-close {
        top: 1rem;
        right: 1rem;
        width: 36px;
        height: 36px;
    }
}

