﻿/* =========================================
   RESET & VARIABLES
   ========================================= */
:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #888888;
    --accent: #ffffff;
    --font-heading: 'Uncial Antiqua', cursive;
    --font-body: 'Outfit', sans-serif;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
body::-webkit-scrollbar {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: center;
    padding: 0 5%;
    /* Match container padding */
    transition: top 0.3s ease;
}

.nav-container {
    background: rgba(25, 25, 25, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 12px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(1000px, 100%);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 1px;
    text-decoration: none;
    /* Ensure no underline if it's a link */
    color: white;
    /* Ensure text color is white */
    cursor: pointer;
}

.logo img {
    height: 20px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: 0.9rem;
    font-family: Alata;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background: white;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dark Mode Nav for White Backgrounds */
.nav-container.dark-mode {
    background: rgba(255, 255, 255, 0.85);
    /* Lightish background instead */
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container.dark-mode .nav-links a {
    color: #444;
    /* Dark gray for unselected */
}

.nav-container.dark-mode .nav-links a:hover,
.nav-container.dark-mode .nav-links a.active {
    color: #000;
    /* True black on hover */
}

.nav-container.dark-mode .nav-links a::after {
    background: #000;
    /* Black underline */
}

.nav-container.dark-mode .logo {
    color: #000;
    /* If logo text is used */
}

/* Change logo image filter or keep it if it's already dark, but assuming DWS logo.png is white, we might need to invert it */
.nav-container.dark-mode .logo img {
    filter: invert(1);
}

.nav-container.dark-mode .menu-toggle span {
    background: #000;
}

.mobile-socials {
    display: none !important;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: white;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Main Container */
.video-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    max-width: 90vw;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: url(#triangleClip);
    /* Visible Lite White Smooth Glow */
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.234)) drop-shadow(0 0 45px rgba(255, 255, 255, 0.384));
    transition: filter 0.3s ease;
    /* smooth transition if we want to animate later */
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.video-container::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
}

.hero .container,
.hero .scroll-indicator {
    position: relative;
    z-index: 2;
}

.hero-bg-glow {
    z-index: 0;
    mix-blend-mode: overlay;
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* Main Container */
.container {
    max-width: 1400px;
    /* Increased max-width to allow more content breadth on large screens */
    margin: 0 auto;
    padding: 0 5%;
    /* Use percentage for responsive side padding */
    position: relative;
    z-index: 1;
}

.hero .container {
    width: min(1000px, 100%);
    padding: 0 5px;
}

.hero-title {
    font-family: Fugaz One;
    font-size: clamp(1.5rem, 4.5vw, 5.5rem);
    line-height: 1.1;
    font-weight: 40;
    letter-spacing: -0.01em;
    margin-bottom: 2rem;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    white-space: nowrap;
    transform: scaleX(0.9);
}

.line {
    overflow: hidden;
}

.line>span {
    display: block;
    transform: translateY(100%);
}

/* Increased specificity to override position: relative from line 192 */
.hero .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    z-index: 10;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translate(-50%, 0);
    }

    40% {
        transform: translate(-50%, -10px);
    }

    60% {
        transform: translate(-50%, -5px);
    }
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.wheel {
    width: 4px;
    height: 6px;
    background: white;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 4.2px;
    justify-content: space-between;
    color: var(--text-muted);
}

/* =========================================
   ABOUT SECTION
   ========================================= */
.about {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: 5% 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-tag {
    font-size: 0.9rem;
    font-family: Fugaz One;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
    display: block;
}

.geometric-shape {
    width: 100%;
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.1));
    animation: floatShape 6s ease-in-out infinite;
}

@keyframes floatShape {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.geometric-shape .path {
    fill: none;
    stroke: white;
    stroke-width: 1.5;
    stroke-opacity: 0.6;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}

/* About Text Style */
.about-content p {
    font-size: 26px;
    font-family: Alata;
    line-height: 1.5;
    /* word-spacing removed as spans handle it */
    /* Default color matching the pre-scroll state */
    color: rgba(255, 255, 255, 0.1);
    /* Remove previous hover outlines */
    -webkit-text-stroke: 0;
    text-shadow: 0 0 20px rgba(16, 13, 13, 0.143);
}

.reveal-text span {
    display: inline-block;
    margin-right: 8px;
    /* Force space between words */
    /* Allows transform/opacity */
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
    min-height: 100vh;
    padding: 5% 0;
}

.section-label {
    display: block;
    margin-bottom: 60px;
    font-size: 0.9rem;
    font-family: Fugaz One;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.services-list {
    border-top: 1px solid var(--border-color);
}

.service-item {
    padding: 50px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.03), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.service-item:hover::before {
    transform: translateX(100%);
}

.service-name {
    font-family: Alata;
    font-weight: 500;
    /* Slightly stronger for clean outlines */
    font-size: clamp(2rem, 4.5vw, 4rem);
    text-transform: uppercase;

    color: transparent;
    -webkit-text-stroke: 1.25px rgba(255, 255, 255, 0.9);

    letter-spacing: 0.02em;
    /* Improves outline spacing */

    /* Rendering Fix */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;

    /* Right-to-Left Fill Animation */
    background-image: linear-gradient(to right, transparent 50%, white 50%);
    background-size: 200% 100%;
    background-position: 0% 0;
    -webkit-background-clip: text;
    background-clip: text;
    transition: background-position 0.4s ease, transform 1.2s ease;
}

.service-item:hover .service-name {
    background-position: 100% 0;
    /* Slide white in from right */
    -webkit-text-stroke: 1px white;
    transform: translateX(20px);
}

.service-arrow {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.4s ease;
}

.pixel-arrow {
    width: 100%;
    height: auto;
    fill: none;
    stroke: white;
    stroke-width: 2;
}

.service-item:hover .service-arrow {
    transform: translateX(10px);
}

/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 15vh 0;
    overflow: hidden;
    background: radial-gradient(circle at center, #0f0f0f 0%, #000 70%);
}

.center {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;
}

/* Right Column Layout */
.contact-right-column {
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Internal Form Header */
.form-header-internal {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 20px;
}

.submit-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.submit-btn:hover {
    background: white;
    color: black;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.25);
}

.submit-btn:active {
    transform: translateY(1px) scale(0.95);
    /* Click press effect */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    /* Reduced shadow */
    transition: all 0.1s;
}

/* Get In Touch Pill */
.get-in-touch-pill {
    background: rgba(255, 255, 255, 0.1);
    /* Glass/Dark pill */
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: Fugaz One;
    color: white;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    /* Inner/Outer shadow glow */
    margin-bottom: 20px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    cursor: default;
}

.get-in-touch-pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.form-intro {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-family: Alata;
    margin-bottom: 30px;
    max-width: 80%;
    /* Limit width for better reading */
}

.tag-pill {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-family: Alata;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.section-heading {
    font-family: Fugaz One;
    font-size: 3rem;
    font-weight: 400;
}

.marquee-wrapper {
    width: 100%;
    position: relative;
    /* Side Blur Mask */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    padding: 20px;
    /* Animation handled in JS/CSS */
}

.review-card {
    width: 350px;
    background: #1a1a1a;
    /* Fallback */
    background: linear-gradient(145deg, #1f1f1f, #141414);
    border: none;
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
}

.review-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(145deg, #252525, #181818);
}

.rating-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    /* Push to bottom if needed, but order changed in HTML */
}

.rating-number {
    font-size: 1rem;
    font-weight: 600;
    color: #888;
}

.stars {
    background: linear-gradient(90deg, #ffd700 var(--r, 100%), #444 var(--r, 100%));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-size: 1rem;
    letter-spacing: 2px;
}

.review-card p {
    font-size: 0.9rem;
    font-family: Alata;
    color: #eee;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 5px;
}

.user {
    font-family: Fugaz One;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
    padding-top: 20px;
}

.user span {
    font-family: Alata;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.info h4 {
    font-size: 0.9rem;
    font-weight: 500;
}

.info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* =========================================
   FAQ
   ========================================= */
.faq {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10vh 0;
}

.tag-pill-1 {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-family: Alata;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.15);
}

.section-heading-1 {
    font-family: Fugaz One;
    font-size: 3rem;
    font-weight: 400;
}


.sub-heading-1 {
    color: var(--text-muted);
    font-family: Alata;
    margin-top: 10px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 500;
    font-family: Alata;
}

.faq-question .icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: #ccc;
    font-size: 0.95rem;
    font-family: Alata;
    line-height: 1.6;
    transition: all 0.4s ease;
}

.faq-item.active {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
}

.faq-item.active .icon {
    transform: rotate(180deg);
}

/* =========================================
   CONTACT
   ========================================= */
.contact {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5% 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.section-label-1 {
    display: block;
    margin-bottom: 60px;
    font-size: 0.9rem;
    font-family: Fugaz One;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.gradient-half-line {
    width: 60px;
    height: 2px;
    border-radius: 2px;
    margin-bottom: 60px;
    background: var(--text-muted);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
}

.gradient-half-line-1 {
    width: 90px;
    height: 2px;
    border-radius: 2px;
    margin-bottom: 60px;
    background: var(--text-muted);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
}

.gradient-half-line-2 {
    width: 150px;
    height: 2px;
    border-radius: 2px;
    margin-bottom: 60px;
    background: var(--text-muted);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.15);
}

.contact-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: Alata;
    line-height: 1.1;
    margin: 20px 0 50px;
    font-weight: 500;
}

.contact-heading .highlight,
.hero-title .highlight,
.section-heading .highlight,
.section-heading-1 .highlight {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 50%),
        linear-gradient(90deg,
            #88ffc8 0%,
            #bfdbfe 17%,
            #ffffff 17%,
            #68c3fffa 30%,
            #d8b2ff 48%,
            #d9b3ff 50%,
            #a7f3d0 50%,
            #bfdbfe 68%,
            #fbcfe8 85%,
            #fbcfe8 87%,
            #ffffff 87%,
            #bfdbfe 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.15));
    padding-bottom: 0.2em;
}

.phone-display {
    background: white;
    color: black;
    padding: 20px 30px;
    border-radius: 16px;
    display: inline-block;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.phone-display .label {
    font-size: 0.8rem;
    font-family: Fugaz One;
    color: #666;
    display: block;
    margin-bottom: 5px;
}

.phone-display .number {
    font-size: 1.5rem;
    font-family: Alata;
    font-weight: 600;
}

.contact-form-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    transition: background 0.3s ease;
}

.contact-form-card:hover {
    background: rgba(25, 25, 25, 0.4);
}

.contact-form .form-header p {
    margin-bottom: 30px;
    color: var(--text-muted);
}

.input-group {
    margin-bottom: 20px;
}

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-family: inherit;
    font-size: 0.95rem;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.5);
}

.input-group select:required:invalid {
    color: var(--text-muted);
}

.input-group select option {
    background: #000;
    color: white;
}

/* Phone Wrapper Container */
.phone-wrapper {
    position: relative;
    display: inline-block;
    z-index: 10;
    cursor: pointer;
    margin-top: 20px;
    /* Clean up previous styles */
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

/* Common Card Styles */
.phone-layer,
.phone-display {
    width: 380px;
    /* Fixed width or max-content? Fixed is safer for layers */
    height: 120px;
    border-radius: 24px;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.phone-display {
    position: relative;
    /* Stays in flow or relative to wrapper */
    background: #ffffff;
    /* White bg */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 40px;
    z-index: 3;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Middle Layer (Black) */
.phone-layer.layer-2 {
    background: #111;
    z-index: 2;
    transform: translate(0, 0);
    /* Hidden behind top */
}

/* Bottom Layer (Lime Green) */
.phone-layer.layer-1 {
    background: #ccff00;
    z-index: 1;
    transform: translate(0, 0);
    /* Hidden behind top */
}

/* Hover Animation */
.phone-wrapper:hover .phone-display {
    transform: translate(-10px, -10px);
}

.phone-wrapper:hover .layer-2 {
    transform: translate(5px, 5px);
    /* Black layer shifts a bit */
}

.phone-wrapper:hover .layer-1 {
    transform: translate(15px, 15px);
    /* Lime layer shifts more */
}

/* Text Styles */
.phone-wrapper .label {
    display: block;
    font-size: 0.9rem;
    color: #555;
    /* Dark grey for label */
    margin-bottom: 5px;
    font-weight: 500;
}

.phone-wrapper .number {
    font-family: Alata;
    font-size: 2rem;
    color: #000;
    /* Black text */
    margin: 0;
    font-weight: 400;
    text-decoration: none;
    /* Remove underline */
    display: block;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    background: #ffffff;
    color: black;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.submit-btn:hover {
    background: white;
    color: black;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: 60px 0 30px;
    background: #000;
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.footer-main-row {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.footer-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 768px) {
    .footer-main-row {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

.footer-email {
    color: #444;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-email:hover {
    color: #888;
}

.footer .copyright {
    width: 100%;
    text-align: center;
    font-size: 0.8rem;
    color: #333;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.footer-links a:not(:last-child)::after {
    content: "|";
    display: inline-block;
    margin-left: 15px;
    color: rgba(255, 255, 255, 0.2);
}

.footer-links a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    background: white;
    color: black;
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
    border-color: white;
}

.footer-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 300px;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    filter: blur(60px);
}

/* =========================================
   BACK TO TOP BUTTON
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transform: scale(0) rotate(180deg);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9990;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1) rotate(0deg);
}

.back-to-top:hover {
    background: white;
    color: black;
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

/* =========================================
   UI/UX PAGE STYLES
   ========================================= */
.uiux-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 150px;
    padding-bottom: 100px;
    text-align: center;
    background: radial-gradient(circle at top, #1a1a1a 0%, #050505 60%);
}

.uiux-title {
    font-family: Fugaz One;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.uiux-title span {
    display: block;
    font-size: 0.6em;
    /* UI/UX is smaller */
}

.uiux-hero-desc {
    max-width: 600px;
    margin: 0 auto;
    color: #ccc;
    font-family: Alata;
    font-size: 1.1rem;
    line-height: 1.8;
    letter-spacing: 1px;
    word-spacing: 15px;
}

/* =========================================
   WORKS SECTION (Redesign)
   ========================================= */
.works-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10vh 0;
    position: relative;
    overflow: hidden;
    background-color: #ffffff;
    color: #000000;
}

.works-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    /* Reduced gap */
    margin-bottom: 80px;
}

.works-title {
    font-family: Fugaz One;
    font-size: 2rem;
    color: #000000;
    line-height: 1;
    margin-left: 0;
}

.works-line-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

.works-line-wrapper .line-fill {
    height: 2px;
    background: #000000;
    width: 100%;
}

.works-line-wrapper .diamond {
    width: 8px;
    height: 8px;
    background: #000000;
    transform: rotate(45deg);
}

.works-line-wrapper .diamond.start {
    margin-right: -4px;
    /* Slight overlap or adjustment */
}

.works-line-wrapper .diamond.end {
    margin-left: -4px;
}

/* Content Layout */
.work-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-control {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    color: #000000;
    /* Ensure arrows are black */
}

.nav-control:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Pixel Arrow SVG Styles */
.nav-control svg polyline {
    vector-effect: non-scaling-stroke;
}

/* Slider Container */
.slider-container {
    position: relative;
    width: 100%;
    /* Min height to accommodate the tallest content */
    min-height: 400px;
    flex-grow: 1;
    display: flex;
    /* For alignment */
    align-items: center;
    touch-action: pan-y;
    /* Allow vertical scrolling, capture horizontal */
    user-select: none;
    /* Prevent text selection during swipe */
}

/* Individual Slides */
.project-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    /* Hide off-screen by default for JS handling */
}

.project-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
}

/* Project Display (Inner Content of Slide) */
.project-display {
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    padding: 0 40px;
}

.project-visual {
    flex: 1;
    max-width: 530px;
}

.visual-card-bg {
    border-radius: 30px;
    aspect-ratio: 3/2;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: transform 0.4s ease;
}

.visual-card-bg img {
    width: 620px;
    height: 470px;
    object-fit: fill;
    display: block;
}

/* Card Variants */
.ev-card {
    background: linear-gradient(135deg, #E0EFC4 0%, #87Dba4 100%);
    color: #1a4d2e;
}

.smart-home-card {
    background: linear-gradient(135deg, #1c1c1c 0%, #3a3a3a 100%);
    color: white;
}

.crypto-card {
    background: linear-gradient(135deg, #2b2b2b 0%, #000000 100%);
    color: white;
}

.crypto-card .mockup-content {
    color: #cecece;
}

.crypto-card i {
    color: #9c27b0;
}

.visual-card-bg:hover {
    transform: translateY(-10px);
}

/* Standardized Card Style (Matches UI/UX Design) */
.common-project-card {
    /* Inherits aspect-ratio 3/2 and other props from .visual-card-bg */
    background: transparent;
    /* Clean look */
}

.common-project-card img {
    width: 620px;
    height: 420px;
    object-fit: fill !important;
    /* Force fill as per user preference */
    border-radius: 30px;
    /* Explicit border radius */
}

.mockup-content {
    text-align: center;
    color: #1a4d2e;
}

.mockup-content i {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.mockup-content span {
    display: block;
    font-family: Alata;
    font-weight: 600;
    margin-top: 15px;
    line-height: 1.4;
}

.project-info {
    flex: 1.2;
    text-align: left;
}

.project-title {
    font-family: Fugaz One;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #000000;
}

.project-description {
    font-family: Alata;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333333;
    max-width: 600px;
}

.section-header-line {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.section-header-line h2 {
    font-family: 'Uncial Antiqua', cursive;
    font-size: 2.5rem;
    margin-right: 20px;
    white-space: nowrap;
}

.section-header-line .line {
    height: 1px;
    background: white;
    width: 100%;
    display: block;
}

.work-card {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #111;
    border-radius: 30px;
    padding: 40px;
    flex-wrap: wrap;
}

.work-image {
    flex: 1;
    min-width: 300px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    background: #e0e0e0;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.work-image img {
    width: 100%;
    height: auto;
    display: block;
}

.work-content {
    flex: 1;
    min-width: 300px;
}

.work-title {
    font-family: Alata;
    font-size: 2rem;
    margin-bottom: 20px;
}

.work-desc {
    font-family: 'Outfit', sans-serif;
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 1rem;
}

/* =========================================
   WHY CHOOSE & COMPONENTS
   ========================================= */
.why-choose {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    text-align: center;
    background: #080808;
}

.why-choose h2 {
    font-family: Fugaz One;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.uiux-title {
    font-family: Fugaz One;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: center;
}

.uiux-title .line {
    overflow: hidden;
    padding-bottom: 5px;
    /* Prevent descender clipping */
}

.uiux-title span {
    display: block;
    transform: translateY(100%);
}

.reasons-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.reason-item p {
    color: #ddd;
    font-family: Alata;
    line-height: 1.7;
    font-size: 1.05rem;
}

.cta-box {
    background: #bd5eff;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    margin: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-family: Fugaz One;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.discuss-btn {
    background: white;
    color: black;
    padding: 15px 40px;
    border-radius: 50px;
    font-family: Alata;
    font-size: 1.1rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
}

.discuss-btn:hover {
    transform: scale(1.05);
}

.logo-showcase {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
}

.success-message {
    text-align: center;
    padding: 40px;
    animation: fadeInUp 0.6s ease-out forwards;
}

.success-icon {
    width: 60px;
    height: 60px;
    background: #4CAF50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.success-icon svg {
    width: 32px;
    height: 32px;
    stroke: white;
}

.success-message h3 {
    font-family: Alata;
    font-size: 1.8rem;
    color: #1a4d2e;
    margin-bottom: 10px;
}

.success-message p {
    font-family: 'Outfit', sans-serif;
    color: #555;
    font-size: 1.1rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.see-more-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-family: Alata;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 30px;
    padding: 12px 35px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.see-more-btn i {
    transition: transform 0.3s ease;
}

.btn-get-touch {
    display: inline-block;
    margin-top: 50px;
    padding: 12px 30px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    color: #fff;
    font-size: 0.9rem;
    font-family: Fugaz One;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: btnPulseGlow 2.5s ease-in-out infinite;
    cursor: pointer;
}

.btn-get-touch:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    animation: none;
}

@keyframes btnPulseGlow {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.1), 0 0 15px rgba(255, 255, 255, 0.05);
        border-color: rgba(255, 255, 255, 0.3);
    }

    50% {
        box-shadow: 0 0 12px rgba(255, 255, 255, 0.25), 0 0 30px rgba(255, 255, 255, 0.1);
        border-color: rgba(255, 255, 255, 0.6);
    }
}

/* =========================================
   RESPONSIVE DESIGN (Media Queries)
   ========================================= */

/* 1. Large Monitors (> 1440px) */
@media (min-width: 1441px) {
    .container {
        max-width: 1600px;
    }

    .hero-title {
        font-size: 6rem;
    }

    html {
        font-size: 18px;
        /* Slightly larger base text */
    }
}

/* 2. Laptops & Landscape Tablets (1024px - 1440px) */
@media (max-width: 1440px) {
    .container {
        padding: 0 6%;
    }

    .hero-title {
        font-size: 5rem;
    }
}

/* 3. Tablets (768px - 1024px) */
@media (max-width: 1024px) {
    html {
        font-size: 15px;
    }

    .hero-title {
        font-size: 4rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        /* Stack grids on tablet too for better readability */
        gap: 60px;
    }

    .service-name {
        font-size: 3.5rem;
    }

    .about-visual {
        align-items: center;
    }

    .about-visual svg {
        max-width: 250px;
    }

    .contact-heading {
        font-size: 3rem;
    }

    /* Works Section Adjustments */
    .project-display {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .project-info {
        text-align: center;
    }

    .project-description {
        margin: 0 auto;
    }

    .works-header {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 50px;
        align-items: flex-start;
    }

    .works-line-wrapper {
        width: 100%;
    }
}

/* 4. Mobile Devices (< 768px) */
@media (max-width: 768px) {
    html {
        font-size: 14px;
        /* Base font size slightly smaller */
    }

    /* Container Spacing */
    .container {
        padding: 0 5%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Section Padding */
    .hero,
    .about,
    .services,
    .works-section,
    .testimonials,
    .faq,
    .contact,
    .why-choose,
    .uiux-hero {
        padding: 60px 0;
        /* Reduced padding for mobile */
    }

    .uiux-hero {
        padding-top: 100px;
        /* Account for navbar */
    }

    /* Navigation Overlay */
    /* Navigation Overlay - Enhanced */
    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        /* Deep black for contrast */
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 999;
        /* Trigger Clip-path Animation */
        clip-path: circle(0% at 90% 50px);
        /* Start top right */
        transition: clip-path 0.6s cubic-bezier(0.19, 1, 0.22, 1);
        pointer-events: none;
        /* Ensure clicks pass through when closed */
        opacity: 1;
        visibility: visible;
    }

    .nav-links.active {
        clip-path: circle(150% at 90% 50px);
        /* Expand fully */
        pointer-events: all;
    }

    /* Target Direct Links (Menu Items) */
    .nav-links>a {
        font-family: Alata;
        font-size: 2.5rem;
        margin: 15px 0;
        color: white;
        opacity: 0;
        /* Initial state for GSAP */
        transform: translateY(20px);
        text-decoration: none;
    }

    /* Mobile Socials Container */
    .mobile-socials {
        display: flex;
        gap: 30px;
        margin-top: 50px;
        /* Container is visible, children are animated */
    }

    /* Mobile Social Icons */
    .mobile-socials a {
        font-size: 1.8rem;
        color: #aaa;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        margin: 0;
        transition: 0.3s;
        opacity: 0;
        /* Initial state for GSAP */
        transform: translateY(20px);
    }

    .mobile-socials a:hover {
        background: white;
        color: black;
    }

    .menu-toggle {
        display: flex;
        z-index: 1001;
        /* Above overlay */
    }

    /* Hamburger Animation to 'X' */
    .menu-toggle span {
        transition: all 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }

    .menu-toggle.active span:nth-child(2) {
        transform: rotate(-45deg) translate(5px, -6px);
    }

    /* Hero Typography & Layout */
    .hero-title {
        font-size: clamp(2.5rem, 10vw, 3.5rem);
        margin-left: 0;
        /* Align center */
        margin-right: 0;
    }

    .uiux-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        font-family: Fugaz One;
    }

    .uiux-hero-desc,
    .about-content p {
        font-size: 1rem;
        text-align: center;
        /* Center align text for better mobile reading */
        line-height: 1.6;
        word-spacing: normal;
        /* Reduce excessive spacing */
    }

    .video-container {
        width: 300px;
        height: 300px;
        /* Smaller video on mobile */
    }

    /* Grid Stacking */
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    /* Footer Optimized for Mobile */
    .footer {
        padding: 40px 20px;
        text-align: center;
    }

    .footer-logo img {
        height: 35px;
        margin: 0;
    }

    .social-links {
        display: flex;
        gap: 10px;
        margin: 20px;
    }

    .social-links a {
        margin: 5px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .copyright {
        margin-top: 30px;
        font-size: 0.75rem;
        width: 100%;
        text-align: center;
        color: #666;
    }

    /* Services List */
    .service-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 30px 0;
    }

    .service-name {
        font-size: 2.5rem;
    }

    .service-arrow {
        align-self: flex-end;
        /* Arrow to the right */
    }

    /* Works Section Adjustments */
    .works-header {
        align-items: center;
        text-align: center;
        margin-bottom: 40px;
    }

    .works-title {
        font-size: 1.5rem;
        margin-left: 0;
    }

    .project-display {
        flex-direction: column;
        gap: 30px;
        padding: 0;
        /* Remove side padding */
    }

    .visual-card-bg {
        aspect-ratio: 1/1;
        /* Square on mobile */
        border-radius: 20px;
    }

    .visual-card-bg img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        /* Ensure full image visibility */
    }

    .project-info {
        text-align: center;
        padding: 0 10px;
    }

    .project-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    /* Slider Navigation Controls */
    .nav-control {
        width: 50px;
        height: 50px;
        background: rgba(255, 255, 255, 0.1);
        /* Subtle background for visibility */
        backdrop-filter: blur(5px);
        border-radius: 50%;
        z-index: 20;
    }

    .nav-control.prev {
        left: 10px;
    }

    .nav-control.next {
        right: 10px;
    }

    /* Contact Form & Inputs */
    .contact-form-card {
        padding: 25px;
    }

    .input-group input,
    .input-group select,
    .input-group textarea {
        font-size: 16px;
        /* Prevent zoom on iOS */
        padding: 12px 15px;
    }

    .phone-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .phone-display {
        width: 100%;
        padding: 0 20px;
    }

    /* Disable hover effects on mobile to prevent sticky states */
    .phone-wrapper:hover .phone-display,
    .phone-wrapper:hover .layer-2,
    .phone-wrapper:hover .layer-1 {
        transform: none !important;
    }

    /* Active state for click interaction on mobile */
    .phone-wrapper.active .phone-display {
        transform: translate(-10px, -10px) !important;
    }

    .phone-wrapper.active .layer-2 {
        transform: translate(5px, 5px) !important;
    }

    .phone-wrapper.active .layer-1 {
        transform: translate(15px, 15px) !important;
    }

    .phone-display .number {
        font-size: 1.2rem;
    }

    .submit-btn {
        padding: 14px;
    }

    /* Touch Targets */
    a,
    button,
    .nav-control {
        min-height: 44px;
        min-width: 44px;
        /* Ensure accessible touch targets */
    }

    /* Hide decorative blobs/glows that might impact performance */
    .hero-bg-glow {
        opacity: 0.5;
        filter: blur(40px);
        /* Reduce blur radius for performance */
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    .hero-title {
        font-size: clamp(2rem, 12vw, 3rem);
    }

    .service-name {
        font-size: 2rem;
    }

    .section-heading {
        font-size: 2.2rem;
    }

    .contact-heading {
        font-size: 2rem;
    }
}

/* Read More Inline Link */
.read-more-link {
    color: #FFD700;
    /* Gold for high visibility */
    cursor: pointer;
    font-weight: 600;
    margin-left: 8px;
    display: inline-block;
    transition: all 0.3s ease;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.read-more-link:hover {
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    transform: translateX(3px);
}

/* =========================================
   SMOKE CURSOR EFFECT (Desktop Only)
   ========================================= */
#fluid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    /* On top of everything */
    pointer-events: none;
    /* Let clicks pass through */
    display: none;
    /* Hidden by default */
    mix-blend-mode: screen;
    /* Additive blending for glow effect */
}

@media (min-width: 769px) {
    #fluid {
        display: block;
    }
}