
body {
    margin: 0;
    padding: 0;
}

/* =========================
   HERO SECTION
========================= */

.hero-section {
    position: relative;
    height: 100vh;
    background: url('../img/hh7.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* HERO OVERLAY */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(9,162,255,0.5) 0%,
        rgba(0,0,0,0.75) 45%,
        rgba(0,0,0,0.2) 100%
    );

    z-index: 1;
}

/* HERO CONTENT (your .clean-hero .text) */
.clean-hero .text {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px;
    border-radius: 20px;
    text-align: center;

    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);

    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

.clean-hero h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.clean-hero p {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.clean-hero .btn {
    border-radius: 30px;
    padding: 12px 30px;
    transition: 0.3s ease;
}

.clean-hero .btn:hover {
    background: #09a2ff;
    border-color: #09a2ff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(9,162,255,0.4);
}

/* =========================
   SHOWCASE SECTION
========================= */

.showcase-section {
    position: relative;
    padding: 120px 0 !important;
    background: #f1f6ff !important;
    overflow: hidden;
}

.showcase-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(9,162,255,0.1);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    filter: blur(80px);
}

/* HEADER */
.section-header {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #0b1b3a;
}

.section-header .tag {
    color: #09a2ff;
    font-weight: 700;
    letter-spacing: 2px;
}

/* IMAGE STACK */
.image-stack {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-stack .img {
    position: absolute;
    width: 320px;
    height: 220px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    border: 4px solid #fff;
    transition: 0.4s ease;
}

.img1 {
    transform: translateX(-180px) rotate(-6deg);
    z-index: 1;
}

.img2 {
    transform: translateY(-20px);
    z-index: 3;
}

.img3 {
    transform: translateX(180px) rotate(6deg);
    z-index: 2;
}

.image-stack .img:hover {
    transform: scale(1.08) !important;
    z-index: 10;
}

/* =========================
   CARDS SECTION
========================= */

.animated-texts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 60px;
    padding: 0 20px;
}

.text-card {
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    opacity: 1;
    transform: translateY(0);
    transition: 0.3s ease;
}

.text-card:hover {
    transform: translateY(-8px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .clean-hero h2 {
        font-size: 2rem;
    }

    .section-header h1 {
        font-size: 1.8rem;
    }

    .image-stack {
        flex-direction: column;
        height: auto;
    }

    .image-stack .img {
        position: relative;
        transform: none !important;
        width: 100%;
        margin-bottom: 20px;
    }
}

/* INITIAL STATE (hidden) */
.hide {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* WHEN VISIBLE */
.show {
    opacity: 1;
    transform: translateY(0);
}

/* IMAGE SMOOTH ANIMATION */
.image-stack img {
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.hero-section {
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.clean-hero .text {
    animation: floatText 6s ease-in-out infinite;
}

@keyframes floatText {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0px);
    }
}

.image-stack .img {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.image-stack .img:hover {
    transform: scale(1.12) rotate(0deg) !important;
    box-shadow: 0 30px 70px rgba(0,0,0,0.3);
    z-index: 10;
}

.hero-section {
    animation: fadeInHero 1.2s ease;
}

@keyframes fadeInHero {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* BASE REVEAL STATE */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* ACTIVE STATE */
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* SOFT LIFT EFFECT */
.text-card:hover {
    transform: translateY(-10px);
    transition: 0.3s ease;
}

/* IMAGE DEPTH ENHANCEMENT */
.image-stack .img {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.image-stack .img:hover {
    transform: scale(1.1) !important;
    z-index: 10;
}

.text-card {
    transition: all 0.35s ease;
    transform-style: preserve-3d;
}

/* premium hover pop */
.text-card:hover {
    transform: translateY(-14px) scale(1.03);
    box-shadow: 0 30px 70px rgba(0,0,0,0.12);
}

.section-header h1 {
    transition: all 0.4s ease;
}

.section-header:hover h1 {
    letter-spacing: 1px;
    transform: translateY(-2px);
}

.section-header .tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 30px;
    background: rgba(9,162,255,0.1);
    transition: 0.3s ease;
}

.section-header .tag:hover {
    transform: scale(1.08);
    background: rgba(9,162,255,0.2);
}

button, .btn {
    transition: all 0.25s ease;
}

button:active, .btn:active {
    transform: scale(0.96);
}

@keyframes softFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0px); }
}

.image-stack {
    animation: softFloat 6s ease-in-out infinite;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* adds depth when revealed */
.reveal.active.text-card {
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* SECTION BACKGROUND */
.finance-style-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f9ff, #ffffff);
    position: relative;
    overflow: hidden;
}

/* HEADER */
.finance-header {
    max-width: 700px;
    margin: 0 auto 60px;
}

.finance-header .tag {
    color: #09a2ff;
    font-weight: 700;
    letter-spacing: 2px;
}

.finance-header h1 {
    font-size: 2.5rem;
    color: #0b1b3a;
    margin-bottom: 10px;
}

.finance-header .subtext {
    color: #666;
}

/* KPI GRID */
.finance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.finance-card {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.finance-card h2 {
    font-size: 2.2rem;
    color: #09a2ff;
}

.finance-card:hover {
    transform: translateY(-10px);
}

/* DASHBOARD AREA */
.finance-dashboard {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* GLASS BOX */
.glass-box {
    background: rgba(255,255,255,0.6);
    backdrop-filter: blur(15px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.glass-box:hover {
    transform: translateY(-8px);
}

.glass-box.large {
    width: 400px;
}

.glass-box.small {
    width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* SIMPLE CHART BARS */
.bar {
    height: 10px;
    background: #09a2ff;
    margin: 10px 0;
    border-radius: 5px;
}

.bar:nth-child(2) { width: 80%; }
.bar:nth-child(3) { width: 60%; }
.bar:nth-child(4) { width: 90%; }

/* CIRCLE INDICATOR */
.circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 6px solid #09a2ff;
    border-top: 6px solid transparent;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0); }
    100% { transform: rotate(360deg); }
}

/* IMAGE CARD BASE */
.finance-card.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    height: 220px;
    cursor: pointer;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* IMAGE */
.finance-card.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* OVERLAY */
.finance-card.image-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.2)
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: #fff;
    transition: 0.4s ease;
}

/* TEXT */
.finance-card.image-card h3 {
    margin: 0;
    font-size: 1.2rem;
}

.finance-card.image-card p {
    margin: 5px 0 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* HOVER EFFECT */
.finance-card.image-card:hover img {
    transform: scale(1.1);
}

.finance-card.image-card:hover .overlay {
    background: linear-gradient(
        to top,
        rgba(9,162,255,0.6),
        rgba(0,0,0,0.3)
    );
}

/* SECTION */
.interactive-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f9ff, #ffffff);
    overflow: hidden;
}

/* GRID */
.hero-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* TEXT AREA */
.hero-text {
    flex: 1;
}

.hero-text .tag {
    color: #09a2ff;
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-text h1 {
    font-size: 3rem;
    color: #0b1b3a;
    margin-bottom: 20px;
}

.hero-text .subtext {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
}

/* RIGHT CARDS */
.hero-cards {
    flex: 1;
    position: relative;
    height: 400px;
}

/* FLOATING CARDS */
.float-card {
    position: absolute;
    width: 220px;
    padding: 20px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

/* POSITIONING */
.float-card:nth-child(1) {
    top: 20px;
    left: 20px;
}

.float-card:nth-child(2) {
    top: 140px;
    left: 120px;
}

.float-card:nth-child(3) {
    top: 260px;
    left: 40px;
}

/* HOVER EFFECT */
.float-card:hover {
    transform: translateY(-10px) scale(1.05);
}

/* BUTTONS */
.btn-primary {
    padding: 12px 25px;
    background: #09a2ff;
    border: none;
    color: white;
    border-radius: 30px;
}

.btn-secondary {
    padding: 12px 25px;
    border: 2px solid #09a2ff;
    background: transparent;
    border-radius: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-grid {
        flex-direction: column;
    }

    .hero-cards {
        height: auto;
    }

    .float-card {
        position: relative;
        margin-bottom: 20px;
        left: 0 !important;
        top: 0 !important;
    }
}


/* SECTION */
.apple-hero {
    padding: 140px 0;
    background: linear-gradient(135deg, #f5f9ff, #ffffff);
    overflow: hidden;
}

/* GRID */
.apple-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* TEXT */
.apple-text {
    flex: 1;
}

.apple-text .tag {
    color: #09a2ff;
    letter-spacing: 2px;
    font-weight: 700;
}

.apple-text h1 {
    font-size: 3.2rem;
    color: #0b1b3a;
    line-height: 1.2;
}

.apple-text .subtext {
    color: #666;
    margin-top: 20px;
    line-height: 1.7;
}

/* BUTTONS */
.apple-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* VISUAL AREA */
.apple-visual {
    flex: 1;
    position: relative;
    height: 420px;
}

/* FLOATING GLASS CARDS */
.floating-glass {
    position: absolute;
    width: 200px;
    padding: 18px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    transition: 0.4s ease;
}

/* POSITIONS */
.f1 { top: 20px; left: 30px; }
.f2 { top: 150px; left: 140px; }
.f3 { top: 280px; left: 60px; }

/* HOVER LIFT */
.floating-glass:hover {
    transform: translateY(-12px) scale(1.05);
}

/* BACKGROUND GLOW */
.glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(9,162,255,0.15);
    border-radius: 50%;
    filter: blur(60px);
    top: 80px;
    left: 80px;
    animation: pulseGlow 6s ease-in-out infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* BUTTONS */
.btn-primary {
    padding: 12px 25px;
    background: #09a2ff;
    border: none;
    color: white;
    border-radius: 30px;
}

.btn-secondary {
    padding: 12px 25px;
    border: 2px solid #09a2ff;
    background: transparent;
    border-radius: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .apple-grid {
        flex-direction: column;
    }

    .apple-visual {
        height: auto;
    }

    .floating-glass {
        position: relative;
        margin-bottom: 15px;
        left: 0 !important;
        top: 0 !important;
    }
}

/* HERO BASE */
.ultra-hero {
    padding: 140px 0;
    background: linear-gradient(135deg, #f5f9ff, #ffffff);
    overflow: hidden;
}

/* GRID */
.ultra-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* TEXT */
.ultra-text {
    flex: 1;
}

.ultra-text .tag {
    color: #09a2ff;
    letter-spacing: 2px;
    font-weight: 700;
}

.ultra-text h1 {
    font-size: 3.3rem;
    color: #0b1b3a;
    line-height: 1.2;
}

.ultra-text .subtext {
    margin-top: 20px;
    color: #666;
    line-height: 1.7;
}

/* VISUAL */
.ultra-visual {
    flex: 1;
    position: relative;
    height: 420px;
}

/* GLASS CARDS */
.glass {
    position: absolute;
    width: 180px;
    padding: 18px;
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.1);
    transition: 0.4s ease;
    font-weight: 600;
    color: #0b1b3a;
}

/* POSITIONING */
.g1 { top: 30px; left: 20px; }
.g2 { top: 160px; left: 140px; }
.g3 { top: 280px; left: 50px; }

/* HOVER */
.glass:hover {
    transform: translateY(-10px) scale(1.05);
}

/* GLOW EFFECT */
.glow {
    position: absolute;
    width: 320px;
    height: 320px;
    background: rgba(9,162,255,0.18);
    border-radius: 50%;
    filter: blur(70px);
    top: 60px;
    left: 60px;
    animation: pulse 6s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 0.5; }
}

/* BUTTONS */
.btn-primary {
    padding: 12px 25px;
    background: #09a2ff;
    border: none;
    color: white;
    border-radius: 30px;
}

.btn-secondary {
    padding: 12px 25px;
    border: 2px solid #09a2ff;
    background: transparent;
    border-radius: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ultra-grid {
        flex-direction: column;
    }

    .ultra-visual {
        height: auto;
    }

    .glass {
        position: relative;
        margin-bottom: 15px;
        left: 0 !important;
        top: 0 !important;
    }
}

/* HERO WRAPPER */
.holo-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* VIDEO */
.holo-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* OVERLAY */
.holo-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
        rgba(9,162,255,0.25),
        rgba(0,0,0,0.75)
    );
    z-index: 1;
}

/* GRID */
.holo-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* TEXT */
.holo-text {
    flex: 1;
    color: #fff;
}

.holo-text .tag {
    color: #09a2ff;
    font-weight: 700;
    letter-spacing: 2px;
}

/* 🔥 HOLOGRAPHIC TEXT EFFECT */
.holographic {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(
        90deg,
        #00f5ff,
        #ffffff,
        #09a2ff,
        #00f5ff
    );
    background-size: 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: holoMove 6s infinite linear;
}

@keyframes holoMove {
    0% { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

/* SUBTEXT */
.holo-text .subtext {
    color: #ddd;
    margin-top: 20px;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* VISUAL AREA */
.holo-visual {
    flex: 1;
    position: relative;
    height: 420px;
}

/* HOLOGRAPHIC CARDS */
.holo-card {
    position: absolute;
    width: 200px;
    padding: 18px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(15px);
    border-radius: 16px;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: 0.4s ease;
}

/* POSITION */
.h1 { top: 30px; left: 20px; }
.h2 { top: 160px; left: 140px; }
.h3 { top: 280px; left: 60px; }

/* HOVER */
.holo-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 30px 80px rgba(9,162,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .holo-grid {
        flex-direction: column;
    }

    .holo-visual {
        height: auto;
    }

    .holo-card {
        position: relative;
        margin-bottom: 15px;
        left: 0 !important;
        top: 0 !important;
    }
}


/* HERO */
.clean-holo {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* VIDEO */
.clean-video {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* SOFT OVERLAY (IMPORTANT DIFFERENCE) */
.clean-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.4),
        rgba(9,162,255,0.15)
    );
    z-index: 1;
}

/* GRID */
.clean-grid {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

/* TEXT */
.clean-text {
    flex: 1;
    color: #fff;
}

.clean-text .tag {
    color: #09a2ff;
    letter-spacing: 2px;
    font-weight: 600;
}

/* CLEAN HOLOGRAPHIC TITLE (SUBTLE EFFECT) */
.holo-title {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(
        90deg,
        #ffffff,
        #cfe9ff,
        #ffffff
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200%;
    animation: softShift 6s infinite linear;
}

@keyframes softShift {
    0% { background-position: 0%; }
    100% { background-position: 100%; }
}

/* SUBTEXT */
.clean-text .subtext {
    color: #ddd;
    margin-top: 20px;
    line-height: 1.7;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

/* RIGHT SIDE */
.clean-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* SIMPLE CARDS (NO HEAVY GLASS) */
.mini-card {
    padding: 16px 20px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
}

/* HOVER */
.mini-card:hover {
    transform: translateX(10px);
    background: rgba(9,162,255,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .clean-grid {
        flex-direction: column;
    }

    .clean-visual {
        width: 100%;
    }
}

.image-layout {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    min-height: 420px;
}

/* BASE IMAGE STYLE */
.img-box {
    position: relative;
    flex: 0 0 45%;
    transition: 0.4s ease;
}

/* POSITIONING (same look but controlled) */
.img1 {
    transform: translate(-15%, 35%);
    z-index: 1;
}

.img2 {
    transform: translate(-5%, 20%);
    z-index: 2;
}

.img3 {
    flex: 0 0 60%;
    transform: translate(0%, 0%);
    z-index: 3;
}

/* HOVER DEPTH EFFECT */
.img-box:hover {
    transform: scale(1.05);
    z-index: 10;
}

/* RESPONSIVE FIX */
@media (max-width: 768px) {
    .image-layout {
        flex-direction: column;
        align-items: center;
    }

    .img-box {
        flex: 0 0 100%;
        transform: none !important;
        margin-bottom: 20px;
    }
}
/* MAIN CARD */
.premium-info-card {
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(135deg, #0b1b3a, #111827);
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

/* TEXT SIDE */
.card-text-area {
    padding: 60px;
    color: #fff;
}

/* IMAGE SIDE */
.card-image-area {
    height: 100%;
    min-height: 350px;
}

.card-image-area img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BUTTON GROUP */
.btn-group-modern {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* BUTTON POLISH */
.btn-primary {
    background: #09a2ff;
    border: none;
    border-radius: 30px;
    padding: 12px 25px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(9,162,255,0.4);
}

.btn-light {
    border-radius: 30px;
    padding: 12px 25px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .card-text-area {
        padding: 30px;
        text-align: center;
    }

    .btn-group-modern {
        justify-content: center;
    }
}

/* MAIN CARD IMPROVEMENT */
.premium-card {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0,0,0,0.25);
}

/* TEXT SIDE */
.card-content {
    background: linear-gradient(135deg, #0b1b3a, #111827);
    padding: 60px;
    color: white;
}

/* IMAGE FIX (IMPORTANT PART) */
.image-box {
    min-height: 400px;
    overflow: hidden;
}

.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* BUTTON POLISH */
.card-content .btn {
    border-radius: 30px;
    padding: 12px 25px;
    transition: 0.3s ease;
}

.card-content .btn:hover {
    transform: translateY(-3px);
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .card-content {
        padding: 30px;
        text-align: center;
    }

    .image-box {
        min-height: 250px;
    }
}


body {
  font-family: 'Poppins', sans-serif;
  background: #f7f7f7;
}


.yoga-section {
  padding: 80px 0;
  background: linear-gradient(to right, #f8f9fa, #eef2f3);
  font-family: 'Poppins', sans-serif;
  position: relative;
}

/* =========================
   TABS
========================= */
.yoga-section .tabs {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  gap: 15px;
}

.yoga-section .tab {
  padding: 12px 25px;
  border: none;
  cursor: pointer;
  background: rgba(255,255,255,0.6);
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
  color: #333;
}

/* ONLY ONE ACTIVE STYLE (FIXED DUPLICATE ISSUE) */
.yoga-section .tab.active {
  background: #16c79a;
  color: #fff;
}

/* =========================
   TAB CONTENT (FIXED SWITCHING)
========================= */
.yoga-section .tab-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  pointer-events: none;
}

.yoga-section .tab-content.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

/* =========================
   CONTENT CARD (BLUR FIX)
   >>> THIS WAS YOUR MAIN PROBLEM
========================= */
.yoga-section .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;

  /* FIX: controlled blur ONLY here */
  background: rgba(255,255,255,0.75);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);

  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* =========================
   TEXT
========================= */
.yoga-section .text h2 {
  font-size: 32px;
  color: #111;
  margin-bottom: 15px;
}

.yoga-section .text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

/* =========================
   IMAGE
========================= */
.yoga-section .image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}


/* SECTION */
.premium-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
}

/* MAIN CARD */
.premium-dribbble-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
  transition: 0.4s ease;
    max-width: 1000px;   /* 🔥 stops it from stretching too wide */
  margin: auto;
}

.premium-dribbble-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 100px rgba(0,0,0,0.12);
}

/* =========================
   FIX GRID BEHAVIOR
========================= */
.dribbble-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap; /* prevents overflow */
}


/* =========================
   IMAGE CONTROL (FINAL FIX)
========================= */
.dribbble-image {
  flex: 1;
  display: flex;
  justify-content: center;
}



.dribbble-image img {
  width: 100%;
  max-width: 380px;   /* 🔥 perfect size */
  height: 280px;      /* balanced height */
  object-fit: cover;
  border-radius: 18px;
}



.premium-dribbble-card:hover .dribbble-image img {
  transform: scale(1.05);
}

/* =========================
   TEXT CONTROL
========================= */
.dribbble-content {
  flex: 1;
  max-width: 500px;
}

/* TAG */
.tag {
  color: #09a2ff;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

/* TITLE */
.dribbble-content h2 {
  font-size: 2.2rem;
  line-height: 1.3;
}

.dribbble-content p {
  font-size: 15px;
  color: #666;
}

/* BUTTONS */
.btn-group-modern {
  display: flex;
  gap: 15px;
  margin-top: auto;
}

/* BUTTONS STYLE */
.btn-primary {
  background: #09a2ff;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(9,162,255,0.4);
}

.btn-secondary {
  border: 2px solid #09a2ff;
  color: #09a2ff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background: #09a2ff;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .dribbble-grid {
    flex-direction: column;
    text-align: center;
  }

  .btn-group-modern {
    justify-content: center;
  }
}


.dribbble-image {
  flex: 1;
  display: flex;
  justify-content: center; /* center image */
}

.dribbble-image img {
  width: 100%;
  max-width: 380px;   /* 🔥 THIS FIXES EVERYTHING */
  height: 300px;      /* controlled height */
  object-fit: cover;
  border-radius: 18px;
}
  .card-content-area {
    padding: 30px;
  }
}


.yoga-section .content > div {
  flex: 1;
  min-width: 0;
}

.yoga-section .image {
  max-width: 420px;
  margin-left: auto;
}

.yoga-section .image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.dribbble-content h2 {
  font-weight: 800;
  color: #0b1b3a;
}

.premium-dribbble-card {
  backdrop-filter: blur(10px);
}






.motion-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #f7f9ff, #eef2f3);
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* HEADER */
.motion-header {
  text-align: center;
  margin-bottom: 60px;
}

.motion-header h2 {
  font-size: 2.8rem;
  color: #0b1b3a;
}

.motion-header p {
  color: #666;
}

/* WRAPPER */
/* ===== LOCK IMAGE BASE STATE ===== */

.motion-wrapper {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* ABSOLUTE LOCK */
.motion-wrapper .moving-img {
    position: absolute;
    top: 50%;
    width: 280px;
    height: 280px;

    /* IMPORTANT: only ONE transform system */
    transform: translateY(-50%);
}

/* LEFT MOTION */
.motion-wrapper .moving-img.left {
    left: 10%;
    animation: floatLeft 8s ease-in-out infinite;
}

/* RIGHT MOTION */
.motion-wrapper .moving-img.right {
    right: 10%;
    animation: floatRight 8s ease-in-out infinite;
}

/* CLEAN LOOP (NO SNAP RESET FEEL) */
@keyframes floatLeft {
    0%   { transform: translateY(-50%) translateX(0); }
    25%  { transform: translateY(-53%) translateX(10px); }
    50%  { transform: translateY(-55%) translateX(20px); }
    75%  { transform: translateY(-53%) translateX(10px); }
    100% { transform: translateY(-50%) translateX(0); }
}

@keyframes floatRight {
    0%   { transform: translateY(-50%) translateX(0); }
    25%  { transform: translateY(-47%) translateX(-10px); }
    50%  { transform: translateY(-45%) translateX(-20px); }
    75%  { transform: translateY(-47%) translateX(-10px); }
    100% { transform: translateY(-50%) translateX(0); }
}

/* IMAGE FIX */
.motion-wrapper .moving-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* START POSITIONS */
.left {
  left: 10%;
  top: 40px;
}

.right {
  right: 10%;
  top: 40px;
}

/* ACTIVE ANIMATION POSITIONS */
.move-left {
  transform: translateX(120%);
}

.move-right {
  transform: translateX(-120%);
}

/* BOUNCE EFFECT */
.bounce {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

/* TEXT */
.motion-text {
  max-width: 800px;
  margin: auto;
  text-align: center;
  color: #444;
  line-height: 1.7;
  font-size: 1.05rem;
}


.collision-section{
  padding:100px 20px;
  text-align:center;
  background: linear-gradient(135deg,#f5f7ff,#ffffff);
  overflow:hidden;
}

.collision-title{
  font-size:2.5rem;
  margin-bottom:60px;
  font-weight:700;
  color:#0b1b3a;
}

/* STAGE */
.collision-stage{
  position:relative;
  height:250px;
  max-width:900px;
  margin:auto;
}

/* IMAGES */
.collision-stage .img{
  width:180px;
  height:180px;
  object-fit:cover;
  border-radius:20px;
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  transition: transform 1s cubic-bezier(.68,-0.55,.27,1.55);
  box-shadow:0 20px 50px rgba(0,0,0,0.15);
}

/* LEFT START */
.img.left{
  left:0;
}

/* RIGHT START */
.img.right{
  right:0;
}

/* MOVE STATES */
.collision-stage.active .left{
  transform: translate(250px,-50%) scale(1.1);
}

.collision-stage.active .right{
  transform: translate(-250px,-50%) scale(1.1);
}

/* BOUNCE EFFECT */
.bounce{
  animation: bounce 0.6s ease;
}

@keyframes bounce{
  0%{ transform: translate(0,-50%) scale(1.1); }
  50%{ transform: translate(20px,-50%) scale(1.2); }
  100%{ transform: translate(0,-50%) scale(1.1); }
}

/* TEXT */
.collision-text{
  max-width:700px;
  margin:60px auto 0;
  color:#444;
  font-size:1.1rem;
  line-height:1.7;
}

.split-magazine {
  font-family: "Times New Roman", serif;
}

/* SECTION WRAPPER */
.split-row {
  display: flex;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* REVERSE LAYOUT */
.split-row.reverse {
  flex-direction: row-reverse;
}

/* EQUAL SPLIT */
.split-box {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px;
  box-sizing: border-box;
}

/* TEXT SIDE */
.split-box.text {
  background: #f7f7f7;
  flex-direction: column;
  text-align: left;
}

.split-box.text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #0b1b3a;
}

.split-box.text p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #444;
  max-width: 500px;
}

/* IMAGE SIDE */
.split-box.image {
  background: #000;
  padding: 0;
  overflow: hidden;
}

.split-box.image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}

.split-box.image img:hover {
  transform: scale(1.05);
}

/* SCROLL ANIMATION */
.split-box {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* FIX: must be visible when loaded */
.split-box.show {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .split-row,
  .split-row.reverse {
    flex-direction: column;
  }

  .split-box {
    width: 100%;
    min-height: 50vh;
    padding: 30px;
  }
}

.pro-showcase {
  padding: 120px 0;
  background: linear-gradient(135deg, #f7f9ff, #ffffff);
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.pro-header {
  text-align: center;
  margin-bottom: 70px;
}

.pro-header .tag {
  color: #09a2ff;
  font-weight: 700;
  letter-spacing: 2px;
}

.pro-header h1 {
  font-size: 2.8rem;
  color: #0b1b3a;
}

/* GRID */
.pro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

/* LEFT IMAGE */
.pro-image {
  position: relative;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.pro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.pro-image:hover img {
  transform: scale(1.1);
}

/* IMAGE OVERLAY */
.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
  color: #fff;
}

.image-overlay h3 {
  margin: 0;
  font-size: 1.5rem;
}

/* RIGHT CONTENT */
.pro-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* ITEMS */
.pro-item {
  padding: 25px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  border-left: 4px solid transparent;
}

.pro-item:hover {
  transform: translateX(10px);
  border-left: 4px solid #09a2ff;
}

.pro-item h3 {
  margin-bottom: 10px;
  color: #0b1b3a;
}

.pro-item p {
  color: #555;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pro-grid {
    grid-template-columns: 1fr;
  }

  .pro-image {
    height: 300px;
  }
}



.media-showcase {
  padding: 120px 0;
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
  overflow: hidden;
}

/* HEADER */
.media-header {
  margin-bottom: 60px;
}
.media-header .tag {
  color: #09a2ff;
  font-weight: 700;
  letter-spacing: 2px;
}
.media-header h1 {
  font-size: 2.8rem;
  color: #0b1b3a;
}

/* ================= TOP IMAGES ================= */
.media-top {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
}

.media-img {
  width: 45%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  transform: translateY(40px);
  opacity: 0;
  transition: 0.8s ease;
}

.media-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.6s ease;
}

.media-img:hover img {
  transform: scale(1.1);
}

/* stagger animation */
.media-img.left {
  transition-delay: 0.2s;
}
.media-img.right {
  transition-delay: 0.4s;
}

/* ================= VIDEO ================= */
.media-video {
  position: relative;
  max-width: 800px;
  margin: auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  transform: scale(0.9);
  opacity: 0;
  transition: 0.8s ease;
}

.media-video img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(9,162,255,0.9);
  color: #fff;
  font-size: 28px;
  padding: 20px 25px;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ================= CONTENT ================= */
.media-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
  margin-top: 80px;
}

.media-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
  transform: translateY(40px);
  opacity: 0;
  transition: 0.6s ease;
}

.media-card:hover {
  transform: translateY(-10px);
}

.media-card h3 {
  color: #0b1b3a;
  margin-bottom: 10px;
}

/* ================= SCROLL ANIMATION ================= */
.show {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .media-top {
    flex-direction: column;
  }

  .media-img {
    width: 100%;
  }

  .media-video img {
    height: 250px;
  }
}


/* MEDIA VIDEO SECTION */
.media-video {
    position: relative;
    width: 100%;
    max-width: 900px;   /* controls size on large screens */
    margin: 40px auto;  /* center it */
    border-radius: 20px;
    overflow: hidden;
}

/* MAKE VIDEO RESPONSIVE */
.media-video video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

/* OPTIONAL: PERFECT ASPECT RATIO (16:9) */
.media-video {
    aspect-ratio: 16 / 9;
}

/* PLAY BUTTON CENTERED */
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    
    font-size: 40px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    
    width: 80px;
    height: 80px;
    border-radius: 50%;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    cursor: pointer;
    transition: 0.3s;
}

.play-btn:hover {
    background: rgba(0,0,0,0.8);
    transform: translate(-50%, -50%) scale(1.1);
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
    .media-video {
        max-width: 100%;
        margin: 20px auto;
    }

    .play-btn {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}



/* SECTION BASE */
.page-section {
    position: relative;
    overflow: hidden;
    padding: 140px 0;
    perspective: 1000px;
}

/* INTRO LAYOUT */
.intro {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* IMAGE - DEPTH + PARALLAX */
.intro-img {
    width: 100%;
    border-radius: 25px;
    transform: scale(1.15);
    transition: transform 0.6s ease-out;
    will-change: transform;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* FLOATING GLOW */
.intro-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 25px;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.2), transparent);
    pointer-events: none;
}

/* GLASS CARD */
.intro-text {
    backdrop-filter: blur(20px);
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    border-radius: 20px;

    transform: translateY(80px) rotateX(10deg);
    opacity: 0;

    transition: all 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE STATE */
.intro-text.show {
    transform: translateY(0) rotateX(0);
    opacity: 1;
}

/* HEADING ANIMATION */
.section-heading {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease;
}

.section-heading.show {
    opacity: 1;
    transform: translateY(0);
}

/* BUTTON PREMIUM */
.intro-button .btn {
    border-radius: 50px;
    padding: 14px 35px;
    background: linear-gradient(135deg, #00c853, #009688);
    border: none;
    color: #fff;

    transition: all 0.3s ease;
}

.intro-button .btn:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* PARTICLES BACKGROUND */
.page-section::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background-image: radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveParticles 20s linear infinite;
    z-index: 0;
}

@keyframes moveParticles {
    from { transform: translate(0,0); }
    to { transform: translate(100px,100px); }
}

/* KEEP CONTENT ABOVE PARTICLES */
.container {
    position: relative;
    z-index: 2;
}

/* MOBILE */
@media (max-width: 768px) {
    .intro {
        flex-direction: column;
    }
}


/* SMOOTH SCROLL FEEL */
html {
    scroll-behavior: smooth;
}

/* SECTION BASE */
.page-section {
    position: relative;
    overflow: hidden;
    padding: 160px 0;
    background: linear-gradient(180deg, #0a0a0a, #111);
    color: #fff;
}

/* IMAGE CINEMATIC */
.intro-img {
    width: 100%;
    border-radius: 30px;
    transform: scale(1.2);
    transition: transform 0.3s ease-out;
    will-change: transform;
    box-shadow: 0 40px 100px rgba(0,0,0,0.6);
}

/* DARK OVERLAY FOR DEPTH */
.intro-img::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}

/* GLASS CARD */
.intro-text {
    backdrop-filter: blur(25px);
    background: rgba(255,255,255,0.05) !important;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 25px;

    transform: translateY(100px);
    opacity: 0;

    transition: all 1.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ACTIVE */
.intro-text.show {
    transform: translateY(0);
    opacity: 1;
}

/* HEADING */
.section-heading {
    opacity: 0;
    transform: translateY(60px);
}

.section-heading.show {
    opacity: 1;
    transform: translateY(0);
    transition: 1.2s ease;
}

/* TEXT LINE ANIMATION */
.intro-text p {
    overflow: hidden;
}

.intro-text p span {
    display: block;
    transform: translateY(100%);
    opacity: 0;
    transition: all 0.8s ease;
}

.intro-text.show p span {
    transform: translateY(0);
    opacity: 1;
}

/* BUTTON GLOW */
.intro-button .btn {
    background: linear-gradient(135deg, #00c853, #00e5ff);
    border: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
}

.intro-button .btn::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.4), transparent);
    top: -50%;
    left: -50%;
    opacity: 0;
    transition: 0.4s;
}

.intro-button .btn:hover::after {
    opacity: 1;
}

/* CURSOR GLOW */
.cursor-glow {
    position: fixed;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0,255,200,0.2), transparent);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* MOBILE */
@media (max-width: 768px) {
    .intro {
        flex-direction: column;
    }
}


/* SECTION BASE */
.clean-block.clean-info {
    position: relative;
    background: #0f172a;
    color: #fff;
    overflow: hidden;
    padding: 120px 0;
}

/* BACKGROUND LINES (TECH STYLE) */
.clean-block.clean-info::before {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    background: repeating-linear-gradient(
        120deg,
        rgba(255,255,255,0.03) 0px,
        rgba(255,255,255,0.03) 1px,
        transparent 1px,
        transparent 60px
    );
    animation: moveLines 20s linear infinite;
}

@keyframes moveLines {
    from { transform: translateX(0); }
    to { transform: translateX(-200px); }
}

.block-heading {
    text-align: center;
    position: relative;
    padding: 40px 20px;
}

/* TITLE */
.block-heading h2 {
    font-size: 42px;
    font-weight: 800;
    color: #111111;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

/* PARAGRAPH (FORCED BLACK) */
.block-heading p {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #000000 !important;  /* FORCE BLACK */
    opacity: 1 !important;      /* REMOVE ANY FADE */
    position: relative;
    z-index: 2;
}

/* WATERMARK */
.block-heading h2::before {
    content: "Developed to Last";
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 90px;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.05);
    pointer-events: none;
    white-space: nowrap;
    z-index: 1;
}
/* LAYOUT */
/* ROW SPACING */
.row {
    margin-top: 80px;
    display: flex;
    align-items: center;
    gap: 50px; /* space between image and text */
    flex-wrap: wrap;
}

/* IMAGE COLUMN CONTROL */
.col-md-6:first-child {
    flex: 1;
    max-width: 500px; /* controls image size */
}

/* IMAGE STYLE IMPROVED */
.img-thumbnail {
    width: 100%;
    height: auto;
    display: block;

    border: 2px dashed #4fc3f7;
    background: #08141d;
    padding: 10px;
    border-radius: 10px;

    transition: 0.4s ease;
}

/* IMAGE HOVER */
.img-thumbnail:hover {
    transform: scale(1.03);
    border-style: solid;
}

/* TEXT COLUMN */
.col-md-6:last-child {
    flex: 1;
    min-width: 280px;
}

/* EXTRA SAFE SPACING */
.getting-started-info {
    margin-bottom: 25px;
}

/* BUTTON (NEON STYLE) */
.btn-outline-primary {
    border: 2px solid #00e5ff;
    color: #00e5ff;
    border-radius: 50px;
    padding: 12px 30px;
    background: transparent;
    transition: 0.3s ease;
}

.btn-outline-primary:hover {
    background: #00e5ff;
    color: #000;
    box-shadow: 0 0 20px #00e5ff, 0 0 60px #00e5ff;
}

/* MOBILE */
@media (max-width: 768px) {
    .block-heading h2 {
        font-size: 50px;
        left: 20px;
    }

    .col-md-6:first-child {
        position: relative;
        top: 0;
        margin-bottom: 30px;
    }

    .col-md-6:last-child {
        padding-left: 0;
    }
}

/* SECTION BASE */
.clean-block.clean-info {
    background: #0b1d2a;
    color: #ffffff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    font-family: 'Courier New', monospace;
}

/* GRID BACKGROUND */
.clean-block.clean-info::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
}

/* CONTAINER ABOVE GRID */
.container {
    position: relative;
    z-index: 2;
}

/* TITLE (TECH STYLE) */
.block-heading h2 {
    font-size: 42px;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-left: 4px solid #4fc3f7;
    padding-left: 15px;
    margin-bottom: 20px;
}

/* PARAGRAPH */
.block-heading p {
    max-width: 750px;
    opacity: 0.85;
}

/* IMAGE (BLUEPRINT FRAME) */
.img-thumbnail {
    border: 2px dashed #4fc3f7;
    background: #08141d;
    padding: 10px;
    border-radius: 10px;
    transition: 0.4s;
}

/* IMAGE HOVER */
.img-thumbnail:hover {
    transform: scale(1.03);
    border-style: solid;
}

/* RIGHT CONTENT */
.col-md-6 h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #81d4fa;
}

/* TEXT */
.getting-started-info p {
    line-height: 1.8;
}

/* BUTTON (INDUSTRIAL STYLE) */
.btn-outline-primary {
    border: 2px solid #4fc3f7;
    color: #4fc3f7;
    border-radius: 5px;
    background: transparent;
    padding: 10px 25px;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-outline-primary:hover {
    background: #4fc3f7;
    color: #0b1d2a;
    box-shadow: 0 0 15px rgba(79,195,247,0.6);
}

/* TYPEWRITER EFFECT */
.typing {
    border-right: 2px solid #4fc3f7;
    white-space: nowrap;
    overflow: hidden;
}

/* MOBILE */
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
}


/* FORCE TEXT COLORS */
.clean-block.clean-info,
.clean-block.clean-info p,
.clean-block.clean-info h2,
.clean-block.clean-info h3 {
    color: #ffffff !important;
}


/* TITLE */
.clean-block.clean-info .block-heading h2 {
    color: #00e5ff !important;
}

/* TOP PARAGRAPH */
.clean-block.clean-info .block-heading p {
    color: #dddddd !important;
}

/* SUBTITLE */
.clean-block.clean-info h3 {
    color: #4fc3f7 !important;
}

/* BODY TEXT */
.clean-block.clean-info .getting-started-info p {
    color: #cccccc !important;
}


/* SECTION BACKGROUND - SOFT LUXURY */
.clean-block.clean-info {
    background: linear-gradient(180deg, #f7f9fc, #eef3f8);
    color: #2b2b2b;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

/* SUBTLE FLOATING SHAPE */
.clean-block.clean-info::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79,195,247,0.15), transparent 70%);
    top: -200px;
    right: -150px;
    border-radius: 50%;
}

/* MAIN TITLE */
.block-heading h2 {
    font-size: 44px;
    font-weight: 700;
    color: #1f2d3d;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

/* TOP PARAGRAPH */
.block-heading p {
    max-width: 800px;
    font-size: 16px;
    line-height: 1.8;
    color: #5a6b7b;
}

/* IMAGE STYLE - SOFT PREMIUM */
.img-thumbnail {
    border: none;
    border-radius: 18px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transform: scale(1);
    transition: all 0.5s ease;
}

/* IMAGE HOVER - GENTLE LIFT */
.img-thumbnail:hover {
    transform: scale(1.03);
    box-shadow: 0 30px 80px rgba(0,0,0,0.12);
}

/* RIGHT TITLE */
.col-md-6 h3 {
    font-size: 28px;
    color: #1f2d3d;
    margin-bottom: 15px;
}

/* BODY TEXT */
.getting-started-info p {
    color: #5a6b7b;
    line-height: 1.8;
}

/* BUTTON - MINIMAL LUXURY */
.btn-outline-primary {
    border: 2px solid #1f2d3d;
    color: #1f2d3d;
    border-radius: 8px;
    padding: 12px 28px;
    background: transparent;
    transition: all 0.3s ease;
}

/* BUTTON HOVER */
.btn-outline-primary:hover {
    background: #1f2d3d;
    color: #ffffff;
}

/* LAYOUT SPACING IMPROVEMENT */
.row {
    margin-top: 70px;
    align-items: center;
}



/* SECTION BACKGROUND */
.py-5 {
    position: relative;
    overflow: hidden;
    background: #0b1220;
    color: #ffffff;
}

/* REMOVE BOOTSTRAP TEXT MUTING */
.text-muted {
    color: rgba(255,255,255,0.65) !important;
}

/* HEADER */
.text-success {
    color: #00e5ff !important;
}

h2.fw-bold {
    color: #ffffff;
    font-size: 42px;
}

/* FORM STYLE */
form {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    backdrop-filter: blur(10px);
}

/* INPUTS */
.form-control {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    border-radius: 10px;
}

.form-control:focus {
    background: rgba(255,255,255,0.1);
    border-color: #00e5ff;
    box-shadow: none;
    color: #fff;
}

/* BUTTON */
.btn-primary {
    background: linear-gradient(135deg, #00e5ff, #00c853);
    border: none;
    border-radius: 50px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,229,255,0.3);
}

/* CONTACT INFO CARD STYLE */
.d-flex.align-items-center.p-3 {
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    margin-bottom: 10px;
    transition: 0.3s;
}

.d-flex.align-items-center.p-3:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.08);
}

/* ICON CIRCLE */
.bs-icon-primary {
    background: #00e5ff !important;
    color: #0b1220 !important;
}

/* ========================= */
/* 🔥 ANIMATED BACKGROUND TEXT */
/* ========================= */

.py-5::before {
    content: "ALLACOB CONSTRUCTION LTD";
    position: absolute;
    top: 50%;
    left: -100%;
    transform: translateY(-50%);
    font-size: 120px;
    font-weight: 800;
    white-space: nowrap;
    color: rgba(255,255,255,0.04);
    animation: slideText 18s linear infinite;
    pointer-events: none;
}

@keyframes slideText {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* SECOND LAYER TEXT (OPPOSITE DIRECTION) */
.py-5::after {
    content: "ALLACOB CONSTRUCTION LTD";
    position: absolute;
    bottom: 20%;
    right: -100%;
    font-size: 80px;
    font-weight: 700;
    white-space: nowrap;
    color: rgba(255,255,255,0.03);
    animation: slideText2 25s linear infinite;
    pointer-events: none;
}

@keyframes slideText2 {
    0% {
        right: -100%;
    }
    100% {
        right: 100%;
    }
}



/* CONTACT INFO WRAPPER */
.col-md-4.col-xl-4 .d-flex.flex-wrap {
    gap: 18px;
}

/* EACH INFO ITEM ALIGNMENT FIX */
.col-md-4.col-xl-4 .d-flex.align-items-center.p-3 {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

/* ICON FIX */
.bs-icon-md {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* TEXT BLOCK ALIGNMENT */
.col-md-4.col-xl-4 h6 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.col-md-4.col-xl-4 p {
    margin: 0;
    font-size: 13px;
    opacity: 0.85;
}

/* STACK CLEANLY ON MOBILE */
@media (max-width: 768px) {
    .col-md-4.col-xl-4 .d-flex.flex-wrap {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* FOOTER BASE */
footer.bg-dark {
    background: linear-gradient(180deg, #0b1220, #070b14) !important;
    color: #e6e6e6;
    position: relative;
    overflow: hidden;
}

/* SOFT BACKGROUND GLOW */
footer.bg-dark::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,229,255,0.08), transparent 70%);
    top: -200px;
    left: -200px;
    animation: floatGlow 12s ease-in-out infinite alternate;
}

@keyframes floatGlow {
    from { transform: translateY(0px); }
    to { transform: translateY(40px); }
}

/* SECTION HEADINGS */
footer h3 {
    color: #ffffff;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

/* LINKS */
footer a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 14px;
}

footer a:hover {
    color: #00e5ff;
    padding-left: 6px;
}

/* LIST SPACING */
footer ul li {
    margin-bottom: 8px;
}

/* BRAND SECTION */
footer .fw-bold {
    color: #ffffff;
    font-size: 16px;
}

/* BRAND ICON */
.bs-icon-primary {
    background: linear-gradient(135deg, #00e5ff, #00c853) !important;
    color: #0b1220 !important;
}

/* DESCRIPTION TEXT */
footer .text-muted {
    color: rgba(255,255,255,0.6) !important;
}

/* DIVIDER */
footer hr {
    border-color: rgba(255,255,255,0.1);
    margin: 30px 0;
}

/* SOCIAL ICONS */
footer .list-inline-item {
    margin-left: 10px;
    cursor: pointer;
    transition: 0.3s;
    color: rgba(255,255,255,0.7);
}

footer .list-inline-item:hover {
    color: #00e5ff;
    transform: translateY(-3px);
}

/* COPYRIGHT AREA */
footer .text-muted.d-flex {
    font-size: 13px;
}

/* RESPONSIVE ALIGNMENT */
@media (max-width: 768px) {
    footer .row {
        text-align: center;
    }

    footer ul {
        padding: 0;
    }
}


/* FORCE PROPER FLEX GRID */
footer .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

/* MAKE COLUMNS BALANCE PROPERLY */
footer .col-sm-4,
footer .col-md-3,
footer .col-lg-3,
footer .col-xl-4 {
    flex: 1;
    min-width: 180px;
}

/* ADD CONSISTENT SPACING BETWEEN BLOCKS */
footer .d-flex.flex-column {
    gap: 10px;
}

/* PREVENT EVERYTHING STACKING TO ONE SIDE */
footer .container {
    max-width: 1200px;
    margin: auto;
}

/* CENTER LAST COLUMN ONLY ON LARGE SCREENS */
@media (min-width: 992px) {
    footer .order-lg-last {
        text-align: left;
    }
}

/* MOBILE FIX */
@media (max-width: 768px) {
    footer .row {
        flex-direction: column;
        text-align: center;
    }

    footer .col-sm-4,
    footer .col-md-3,
    footer .col-lg-3 {
        width: 100%;
    }
}


/* FORCE PROPER GRID ALIGNMENT */
.py-5 .row.d-flex.justify-content-center {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

/* FORM COLUMN */
.py-5 .col-md-6.col-xl-4 {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
}

/* CONTACT INFO COLUMN */
.py-5 .col-md-4.col-xl-4 {
    flex: 1;
    min-width: 320px;
    max-width: 500px;

    display: flex;
    justify-content: center;
}

/* STACK CONTACT ITEMS PROPERLY */
.py-5 .d-flex.flex-wrap.flex-md-column {
    width: 100%;
    gap: 15px;
}

/* EACH ITEM FULL WIDTH ALIGNMENT */
.py-5 .d-flex.align-items-center.p-3 {
    width: 100%;
    justify-content: flex-start;
}

/* ICON FIX (KEEP CONSISTENT SIZE) */
.bs-icon-md {
    width: 45px;
    height: 45px;
    min-width: 45px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .py-5 .row.d-flex.justify-content-center {
        flex-direction: column;
        align-items: center;
    }

    .py-5 .col-md-6.col-xl-4,
    .py-5 .col-md-4.col-xl-4 {
        max-width: 100%;
    }
}



/* REMOVE ANY BLUR EFFECTS */
.clean-block.clean-info,
.clean-block.clean-info * {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

/* REMOVE GLASS/TRANSPARENT FEEL IF IT EXISTS */
.clean-block.clean-info {
    background: #f7f9fc !important;
}

/* ENSURE TEXT IS CRISP */
.clean-block.clean-info p,
.clean-block.clean-info h2,
.clean-block.clean-info h3 {
    opacity: 1 !important;
    filter: none !important;
}


/* FORCE REMOVE ANY BLUR ANYWHERE IN THIS SECTION */
.clean-block.clean-info,
.clean-block.clean-info *,
.clean-block.clean-info *::before,
.clean-block.clean-info *::after {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
}

/* FORCE SOLID BACKGROUND */
.clean-block.clean-info {
    background: #f7f9fc !important;
    background-image: none !important;
}



/* SPLIT MAGAZINE IMAGE FIX - DO NOT ALTER HTML */

.split-magazine .split-box.image {
    flex: 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-magazine .split-box.image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* optional: control row height for balance */
.split-magazine .split-row {
    min-height: 350px;
}

/* ===== PROFESSIONAL INTRO SECTION ===== */

/* FORCE OVERRIDE BOOTSTRAP INTRO LAYOUT */
.page-section .intro {
    display: flex !important;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
}

/* IMAGE COLUMN */
/* ===== REMOVE ALL IMAGE ANIMATION & HOVER ===== */

.page-section .intro-img {
    transition: none !important;
    transform: none !important;
    filter: none !important;
    box-shadow: none !important;
    animation: none !important;
}

/* disable hover effects completely */
.page-section .intro-img:hover {
    transform: none !important;
    filter: none !important;
}

/* ensure image stays plain and stable */
.page-section .intro-img,
.page-section .intro > img {
    border-radius: 0 !important;
    display: block;
}


/* MAKE IMAGE WRAPPER FLEX CONTROLLED */
.page-section .intro > img {
    flex: 1;
    max-width: 50%;
}

/* TEXT BOX */
.page-section .intro-text {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* DESKTOP BALANCE */
@media (min-width: 992px) {
    .page-section .intro {
        min-height: 450px;
    }
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .page-section .intro {
        flex-direction: column !important;
    }

    .page-section .intro > img,
    .page-section .intro-text {
        max-width: 100%;
    }
}

/* ===== ISOLATED SUSTAINABILITY SECTION ===== */

.sustainable-section {
    background: #0f172a !important;
    color: #ffffff;
    padding: 80px 0;
}

/* CONTAINER RESET */
.sustainable-section .container {
    max-width: 1100px;
    padding-left: 15px;
    padding-right: 15px;
}

/* TEXT BLOCK */
.sustainable-section .block-heading {
    text-align: center;
    margin-bottom: 35px;
}

/* TITLE */
.sustainable-section .block-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: #00e5ff !important;
    margin-bottom: 15px;
}

/* PARAGRAPH */
.sustainable-section .block-heading p {
    max-width: 850px;
    margin: 0 auto 20px auto;
    line-height: 1.8;
    color: rgba(255,255,255,0.75);
}

/* FEATURES */
.sustainable-section .sustain-features {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.sustainable-section .feature {
    background: rgba(255,255,255,0.08);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* CAROUSEL */
.sustainable-section .carousel {
    margin-top: 40px;
}

.sustainable-section .carousel-item img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}


.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* ===== ANIMATION BASE ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== SERVICE CARD PREMIUM ===== */
.service-card {
    transition: all 0.4s ease;
    border-radius: 14px;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}
/* ===== HERO TEXT ANIMATION ===== */
.hero-text h1 {
    animation: fadeUp 1s ease forwards;
}

.hero-text p {
    animation: fadeUp 1s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    font-size: 22px;
    padding: 15px 18px;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* ===== SECTION SPACING IMPROVEMENT ===== */
section {
    overflow-x: hidden;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: #f8f9fa;
}

.service-item {
    transition: all 0.4s ease;
}

.service-item:hover {
    transform: translateY(-8px);
}

.service-img {
    border-radius: 15px;
    transition: 0.4s;
}

.service-img:hover {
    transform: scale(1.03);
}

/* TEXT STYLING */
.services-section h3 {
    color: #111;
}

.services-section p {
    color: #333;
    line-height: 1.8;
}

/* BUTTON */
.services-section .btn {
    border-radius: 30px;
    padding: 10px 25px;
}

/* ===== GENERAL TEXT SECTIONS ===== */
.about-section h2,
.services-clean h2,
.values-section h2,
.clark-section h2 {
    color: #111;
    font-size: 36px;
}

.about-section p,
.services-clean p,
.values-section p,
.clark-section p {
    color: #555;
    line-height: 1.8;
}

/* ===== STATS SECTION ===== */
.stats-section,
.clark-stats {
    background: #111;
    color: #fff;
}

.stats-section h2 {
    font-size: 40px;
}

.stats-section p,
.clark-stats p {
    color: #ccc;
}

.clark-stats h1 {
    font-size: 48px;
    font-weight: 800;
}

/* ===== IMAGES ===== */
.service-img,
.clark-img {
    border-radius: 10px;
    transition: 0.4s;
}

.service-img:hover,
.clark-img:hover {
    transform: scale(1.03);
}

/* ===== VALUES SECTION ===== */
.values-section {
    background: #f8f9fa;
}

.services-clean h5 {
    margin-bottom: 10px;
}

/* ===== PROJECT CARDS (FIXED) ===== */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    width: 260px;
    transition: transform 0.3s ease;
}

.project-card:nth-child(1) {
    transform: rotate(-5deg);
}

.project-card:nth-child(2) {
    transform: rotate(5deg);
}

.project-card:hover {
    transform: rotate(0deg) scale(1.05);
}

.project-card img {
    width: 100%;
    transition: 0.4s;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 15px;
}

/* ===== HERO SPLIT ===== */
.hero-split {
    display: flex;
    min-height: 100vh;
}

/* LEFT SIDE */
.hero-left {
    flex: 1;
    background: #c6d62c;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 64px;
    font-weight: 900;
    color: #0a2e2a;
    margin-bottom: 20px;
}

.hero-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #0a2e2a;
    max-width: 500px;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 12px 30px;
    background: #e3f24f;
    color: #0a2e2a;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: 0.3s;
}

.hero-btn:hover {
    background: #d4e83c;
}

/* RIGHT SIDE */
.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== PROJECTS SECTION ===== */
.projects-section {
    background: #0b3d2e;
    padding: 100px 20px;
    color: white;
}

.projects-title {
    color: #d4ff3f;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 60px;
}

.projects-grid {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* IMAGE WRAPPER */
.project-img {
    position: relative;
    overflow: hidden;
}

.project-img img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* NEON SHAPES */
.shape {
    position: absolute;
    background: #d4ff3f;
    width: 60px;
    height: 60px;
}

.shape-left {
    top: -10px;
    left: -10px;
    transform: rotate(20deg);
}

.shape-right {
    top: -10px;
    right: -10px;
    transform: rotate(-20deg);
}

.project-card p {
    margin-top: 20px;
    font-size: 13px;
    font-weight: 700;
    color: #d4ff3f;
    text-transform: uppercase;
    line-height: 1.6;
}

/* ===== SCROLL REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== PARALLAX (FIXED - NO CONFLICTS) ===== */
.parallax-img {
    transform: translateY(0);
    will-change: transform;
}

/* Optional floating effect */
.parallax-float {
    animation: floatMove 4s ease-in-out infinite;
}

@keyframes floatMove {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

/* ===== STAGGER DELAYS ===== */
.content-box h2 { transition-delay: 0.2s; }
.content-box p { transition-delay: 0.4s; }
.content-box ul { transition-delay: 0.6s; }

/* ===== GLOBAL FIXES ===== */
* {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    display: block;
}


/* ===== HERO SPLIT PREMIUM ===== */
.hero-split {
    display: flex;
    min-height: 100vh;
    align-items: stretch;
    overflow: hidden;
}

/* LEFT SIDE */
.hero-left {
    flex: 1;
    background: linear-gradient(135deg, #c6d62c, #a8c820);
    padding: 90px 70px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    animation: slideInLeft 1s ease forwards;
}

/* TITLE */
.hero-title {
    font-size: 64px;
    font-weight: 900;
    color: #0a2e2a;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

/* TEXT */
.hero-text {
    font-size: 18px;
    line-height: 1.9;
    color: #0a2e2a;
    max-width: 520px;
    opacity: 0.95;
}

/* BUTTON */
.hero-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 34px;
    background: #e3f24f;
    color: #0a2e2a;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
}

.hero-btn:hover {
    transform: translateY(-3px);
    background: #d4e83c;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* RIGHT SIDE */
.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

/* IMAGE WRAPPER (adds premium feel) */
.hero-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: zoomIn 6s ease-in-out infinite alternate;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        transform: scale(1.05);
    }
    to {
        transform: scale(1.15);
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-left {
        padding: 60px 30px;
        text-align: left;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-text {
        font-size: 16px;
    }

    .hero-right {
        height: 400px;
    }
}



