/* ==========================================================================
   1. GLOBAL STYLES
   ========================================================================== */
html {
    scroll-behavior: smooth;
    /* Essential for the "jump to section" effect */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Poppins', sans-serif; */
    font-family: 'Times New Roman', Times, serif;
    /* Modern clean font */
}

body {
    background-color: #000;
    color: white;
    overflow-x: hidden;
}

h1,
h2 {

    letter-spacing: 2px;
}

a {
    text-decoration: none;
    color: inherit;
}

.main-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4%;
    z-index: 2000;
    background: url('header.png') no-repeat center center / cover;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

/* The Anamorphic Blue Flare Line from the image */
.anamorphic-flare {
    position: absolute;
    left: 0;
    top: 50%;
    width: 40%;
    /* Only goes halfway to meet the logo */
    height: 1.5px;
    /* background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    box-shadow: 0 0 15px #0077ff, 0 0 5px #fff;
    transform: translateY(-50%); */
    z-index: 1;
    opacity: 0.6;
}

/* Logo Styling - Exact Font and Glow */
.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
    /* font-family: 'Cinzel', serif; */
    /* Correct font for "AURA FILMS" */
}

.logo-img {
    height: 120px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 0 10px rgba(77, 166, 255, 0.4));
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Navigation Links */
.nav-links {
    width: 50vw;
    display: flex;
    list-style: none;
    justify-content: space-evenly;
    z-index: 10;
}



.nav-links a {
    /* font-family: 'Cinzel', serif; */
    color: #ffffff;
    font-size: 16px;
    display: flex;
    align-items: center;
    text-transform: none;
    /* Matches the "About" vs "ABOUT" in image */
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #4da6ff;
}

/* Glowing Red Dot Indicator */
.dot {
    height: 6px;
    width: 6px;
    background-color: #ff0000;
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    box-shadow: 0 0 10px #ff3333, 0 0 20px #ff0000;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 2001;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: 0.3s;
}

.nav-links.active {
    display: flex !important;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    background: rgba(5, 15, 31, 0.98);
    flex-direction: column;
    padding: 40px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-links.active li {
    margin: 20px 0;
    margin-left: 0;
}

/* Adjusting Hero Section to fit under the taller nav */
.hero {
    padding-top: 160px;
}



.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 35px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s ease;
}

.nav-links a {
    display: flex;
    align-items: center;
}

.nav-links li:hover {
    color: #ff0000;
}

.dot {
    height: 6px;
    width: 6px;
    background-color: #ff0000;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
}

/* ==========================================================================
   3. HERO SECTION (HOME)
   ========================================================================== */




.hero {
    height: 100vh;
    width: 100%;
    background:
        url('aurabackground1.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

/* --- 1. OUTER CAMERA BRACKETS --- */
.corner-bracket {
    position: absolute;
    width: 100px;
    height: 150px;
    pointer-events: none;
    z-index: 10;
}

/* Positioning outer corners */
.top-l {
    top: 140px;
    left: 40px;
    padding: 10px;
    border-top: 4px solid white;
    border-left: 4px solid white;
}

.top-r {
    top: 140px;
    right: 40px;
    padding: 10px;
    border-top: 4px solid white;
    border-right: 4px solid white;
}

.bottom-l {
    bottom: 40px;
    left: 40px;
    border-bottom: 4px solid white;
    border-left: 4px solid white;
}

.bottom-r {
    bottom: 40px;
    right: 40px;
    border-bottom: 4px solid white;
    border-right: 4px solid white;
    display: flex;
    justify-content: start;
    align-items: end;
    padding-bottom: 10px;
}

/* --- 2. CAMERA UI OVERLAY --- */
.camera-ui {
    position: absolute;
    width: 100%;
    height: 100%;
    font-family: 'Courier New', monospace;
    pointer-events: none;
    color: white;
    z-index: 5;
}

/* UI Elements Positioning */
.top-left {
    top: 120px;
    left: 70px;
    position: absolute;
    font-weight: bold;
    display: flex;
    align-items: center;
}

.top-center {
    top: 100px;
    font-size: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
}

.top-right {
    top: 40px;
    right: 5%;
    position: absolute;
}

/* Stylized Battery Icon */
.battery-status {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    font-family: 'Courier New', monospace;
}

.battery-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

.battery-percent {
    font-size: 14px;
}

.battery-icon {
    width: 35px;
    height: 18px;
    border: 2px solid white;
    padding: 2px;
    position: relative;
    border-radius: 2px;
}

/* Reversed Battery Tip (Left Side) */
.battery-icon::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 8px;
    background: white;
    border-radius: 1px 0 0 1px;
}

.battery-level {
    height: 100%;
    background: white;
    border-radius: 1px;
}

.battery-time {
    font-size: 10px;
    line-height: 1;
    opacity: 0.8;
}

.bottom-center {
    bottom: 100px;
    font-size: 1.2rem;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    letter-spacing: 2px;
}

.bottom-right {
    display: flex;
    align-items: center;
    gap: 12px;
    bottom: 40px;
    right: 5%;
    position: absolute;
    font-size: 14px;
    /* font-family: 'Cinzel', serif; */
    letter-spacing: 2px;
}

.menu-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.grid-icon {
    display: grid;
    grid-template-columns: repeat(2, 4px);
    gap: 3px;
}

.grid-icon span {
    width: 4px;
    height: 4px;
    background: white;
    display: block;
}

.bottom-r .menu-text {
    font-size: 14px;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    padding: 0px;
    margin: 0px;
}

.bottom-r .menu-icon-bars {
    margin-bottom: 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bottom-r .menu-icon-bars span {
    display: block;
    width: 15px;
    height: 2px;
    background: white;
}

.bottom-r .menu-icon-bars1 {
    margin-bottom: 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bottom-r .menu-icon-bars1 span {
    display: block;
    width: 5px;
    height: 2px;
    background: white;
}


.vf-bottom-right .menu-text {
    font-size: 18px;
    font-family: 'Cinzel', serif;
    letter-spacing: 2px;
    padding: 0px;
    margin: 0px;
}

.vf-bottom-right .menu-icon-bars {
    margin-bottom: 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vf-bottom-right .menu-icon-bars span {
    display: block;
    width: 20px;
    height: 2px;
    background: white;
}

.vf-bottom-right .menu-icon-bars1 {
    margin-bottom: 4px;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vf-bottom-right .menu-icon-bars1 span {
    display: block;
    width: 5px;
    height: 2px;
    background: white;
}

.vf-bottom-right .menu-icons-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Fixed Red REC Dot */
.rec-dot {
    height: 14px;
    width: 14px;
    background-color: #ff0000;
    border-radius: 50%;
    display: inline-block;
    margin-right: 10px;
    animation: blink 1s infinite;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

/* --- 3. INNER FOCUS BRACKETS --- */
.hero-content {
    z-index: 2;
}

.top-right {
    position: absolute;
    top: 80px;
    /* Distance from the top edge */
    right: 50px;
    /* Distance from the right edge */
}

.bottom-right {
    position: absolute;
    bottom: 120px;
    /* Distance from the bottom edge */
    right: 50px;
    /* Distance from the right edge */
}

.top-left {
    position: absolute;
    top: 80px;
    /* Match the 20px offset of the other corners */
    left: 50px;
    /* Distance from the left edge */
}

.focus-frame {
    position: relative;
    padding: 80px 120px;
    /* Adjust this to control how close brackets are to text */
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-bracket {
    position: absolute;
    width: 50px;
    height: 50px;
    border-color: white;
    border-style: solid;
    pointer-events: none;
}





/* Inner L-shapes */
.it-l {
    top: -10px;
    left: 400px;
    border-width: 4px 0 0 4px;
}

.it-r {
    top: -10px;
    right: 400px;
    border-width: 4px 4px 0 0;
}

.ib-l {
    bottom: -10px;
    left: 400px;
    border-width: 0 0 4px 4px;
}

.ib-r {
    bottom: -10px;
    right: 400px;
    border-width: 0 4px 4px 0;
}

@media (max-width: 1024px) {
    .it-l {
        top: 0;
        left: 200px;
        border-width: 4px 0 0 4px;
    }

    .it-r {
        top: 0;
        right: 200px;
        border-width: 4px 4px 0 0;
    }

    .ib-l {
        bottom: 0;
        left: 200px;
        border-width: 0 0 4px 4px;
    }

    .ib-r {
        bottom: 0;
        right: 200px;
        border-width: 0 4px 4px 0;
    }
}

@media (max-width: 768px) {
    .it-l {
        top: 0;
        left: 115px;
        border-width: 2px 0 0 2px;
    }

    .it-r {
        top: 0;
        right: 115px;
        border-width: 2px 2px 0 0;
    }

    .ib-l {
        bottom: 0;
        left: 115px;
        border-width: 0 0 2px 2px;
    }

    .ib-r {
        bottom: 0;
        right: 115px;
        border-width: 0 2px 2px 0;
    }
}




/* --- 4. TYPOGRAPHY --- */
h1 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 4rem;
    font-weight: 400;
    letter-spacing: 10px;
    color: white;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
}


/* ==========================================================================
   4. ABOUT SECTION
   ========================================================================== */
.about-section {
    min-height: 100vh;
    width: 100%;
    background: url('aurabackground2.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 100px 10%;
}

.about-content-overlay {
    max-width: 650px;
}

.content-block {
    margin-bottom: 60px;
}

.content-block h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.content-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #bcbcbc;
}


/* ==========================================================================
   5. SERVICES SECTION
   ========================================================================== */
.services-section {
    height: 100vh;
    width: 100%;
    background: url('aurabackground3.jpg');
    background-size: cover;
    background-position: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    font-size: 18px;
}

.services-content {
    display: flex;
    flex-direction: column;
    padding-top: 100px;
    padding-left: 100px;
    gap: 50px;
}

.services-list div {
    display: flex;
    font-size: 28px;
    align-items: center;
    margin-bottom: 50px;
    font-weight: 600;
}

.services-list div::before {
    content: "";
    display: block;
    height: 12px;
    width: 12px;
    background-color: #ff0000;
    border-radius: 50%;
    margin-right: 20px;
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
}

.work-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background: url('aurabackground4.jpg');
    background-size: cover;
    background-position: right;
    display: flex;
    align-items: center;
    padding: 0 80px;
    overflow: hidden;
}

.work-container {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

.work-left-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 70%;
}

.work-title {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5rem;
    color: white;
    letter-spacing: 2px;
}


/* The "Monitor" Frame */
.viewfinder-container {
    position: relative;
    width: 100%;
    /* max-width: 800px; */
    aspect-ratio: 16 / 9;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.8);
    background: #000;
    /* Backdrop for fading */
}

/* --- SLICK OVERRIDES --- */
.work-slider,
.slick-list,
.slick-track {
    height: 100%;
}

.work-sample-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Viewfinder UI Elements */
.viewfinder-ui {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    font-size: 18px;
    pointer-events: none;
    /* IMPORTANT: Allows you to swipe "through" the UI to trigger the slider */
}

/* Corner Brackets */
.vf-brackets {
    position: absolute;
    top: -25px;
    left: -25px;
    right: -25px;
    bottom: -25px;
    border: 5px solid white;
    -webkit-mask: linear-gradient(to right, #000 12%, transparent 12%, transparent 88%, #000 88%),
        linear-gradient(to bottom, #000 18%, transparent 18%, transparent 82%, #000 82%);
    mask: linear-gradient(to right, #000 12%, transparent 12%, transparent 88%, #000 88%),
        linear-gradient(to bottom, #000 18%, transparent 18%, transparent 82%, #000 82%);
    -webkit-mask-composite: source-in;
    mask-composite: intersect;
}

/* Dotted Rule-of-Thirds Grid */
.vf-grid-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0 10px, transparent 10px 20px),
        repeating-linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0 10px, transparent 10px 20px),
        repeating-linear-gradient(to right, rgba(255, 255, 255, 0.25) 0 10px, transparent 10px 20px),
        repeating-linear-gradient(to right, rgba(255, 255, 255, 0.25) 0 10px, transparent 10px 20px);
    background-size: 1px 100%, 1px 100%, 100% 1px, 100% 1px;
    background-position: 33.33% 0, 66.66% 0, 0 33.33%, 0 66.66%;
    background-repeat: no-repeat;
}

.vf-top-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-family: monospace;
    color: #fff;
}

.menu-text,
.centertext {
    font-family: monospace;
}

.vf-bottom-center {
    position: absolute;
    bottom: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-family: monospace;
    font-size: 13px;
    opacity: 0.7;
}

.vf-bottom-right {
    display: flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    bottom: 15px;
    right: 15px;
    font-weight: bold;
    font-family: monospace;
    color: white;
}

.side-lighting {
    width: 350px;
    opacity: 0.7;
    filter: drop-shadow(0 0 30px rgba(0, 100, 255, 0.2));
}

.side-lighting img {
    width: 100%;
}

.contact-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    gap: 40px;
}

/* Left Panel: Info */
.contact-info-panel {
    flex: 1;
    background: rgba(63, 109, 161, 0.294);
    /* Semi-transparent glass effect */
    padding: 60px;
    backdrop-filter: blur(10px);
}

.contact-info-panel h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    /* font-family: 'Playfair Display', serif; */
}

.info-item {
    margin-bottom: 30px;
}

.info-item .label {
    font-weight: 600;
    font-size: 1.0rem;
    margin-bottom: 5px;
}

.info-item .detail {
    color: #e0e0e0;
    line-height: 1.6;
}

/* Right Panel: Form */
.contact-form-panel {
    flex: 1.2;
    background: rgb(5, 34, 65);
    /* Dark navy blue from image */
    padding: 60px;
    border-radius: 40px;
    /* Highly rounded corners as per image */
    box-shadow: 15px 15px 0px rgba(63, 109, 161, 0.294);
    /* Slight layered shadow effect */
}

.contact-form-panel h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.form-subtext {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Input Styling */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgb(63, 109, 161);
    font-size: 14px;
    border: none;
    border-radius: 15px;
    color: white;
}

.contact-form-panel textarea {
    height: 150px;
    margin-bottom: 30px;
    resize: none;
}

.submit-btn {
    background: white;
    color: #000;
    padding: 12px 40px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #ff0000;
    color: white;
}

.contact-section {
    min-height: 90vh;
    width: 100%;
    background: url('aurabackground5.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10%;
}

/* Responsive */
@media (max-width: 992px) {


    .menu-icons-wrapper {
        gap: 5px;
    }

    .bottom-r .menu-text {
        font-size: 12px;
        font-family: 'Cinzel', serif;
        letter-spacing: 2px;
        padding: 0px;
        margin: 0px;
    }

    .bottom-r .menu-icon-bars {
        margin-bottom: 4px;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .bottom-r .menu-icon-bars span {
        display: block;
        width: 10px;
        height: 1px;
        background: white;
    }

    .bottom-r .menu-icon-bars1 {
        margin-bottom: 4px;
        display: flex;
        flex-direction: column;
        gap: 3px;
    }

    .bottom-r .menu-icon-bars1 span {
        display: block;
        width: 3px;
        height: 1px;
        background: white;
    }

    .focus-frame {
        padding: 80px 20px;
    }

    .focus-frame h1 {
        font-size: 1.0rem;
    }

    .top-l {
        font-size: 14px;
        top: 140px;
        left: 40px;
        padding: 10px;
        border-top: 2px solid white;
        border-left: 2px solid white;
    }

    .top-r {
        font-size: 14px;
        top: 140px;
        right: 40px;
        padding: 10px;
        border-top: 2px solid white;
        border-right: 2px solid white;
    }

    .bottom-l {
        bottom: 40px;
        left: 40px;
        border-bottom: 2px solid white;
        border-left: 2px solid white;
    }

    .bottom-r {
        bottom: 40px;
        right: 40px;
        border-bottom: 2px solid white;
        border-right: 2px solid white;
        display: flex;
        justify-content: center;
        align-items: end;
        padding-bottom: 10px;
    }

    .viewfinder-ui {
        font-size: 10px;
    }

    .vf-brackets {
        position: absolute;
        top: -10px;
        left: -10px;
        right: -10px;
        bottom: -10px;
        border: 2px solid white;
        -webkit-mask: linear-gradient(to right, #000 12%, transparent 12%, transparent 88%, #000 88%),
            linear-gradient(to bottom, #000 18%, transparent 18%, transparent 82%, #000 82%);
        mask: linear-gradient(to right, #000 12%, transparent 12%, transparent 88%, #000 88%),
            linear-gradient(to bottom, #000 18%, transparent 18%, transparent 82%, #000 82%);
        -webkit-mask-composite: source-in;
        mask-composite: intersect;
    }

    .vf-bottom-right .menu-icons-wrapper {
        display: flex;
        align-items: center;
        gap: 2px;
    }

    .vf-bottom-center {

        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        font-family: monospace;
        font-size: 10px;
        opacity: 0.7;
    }

    .vf-bottom-right {
        right: 1px;
        bottom: 1px;
        gap: 2px;
    }

    .vf-bottom-right .menu-text {
        font-size: 10px;
        font-family: 'Cinzel', serif;
        letter-spacing: 2px;
        padding: 0px;
        margin: 0px;
    }

    .vf-bottom-right .menu-icon-bars {
        margin-bottom: 3px;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .vf-bottom-right .menu-icon-bars span {
        display: block;
        width: 10px;
        height: 2px;
        background: white;
    }

    .vf-bottom-right .menu-icon-bars1 {
        margin-bottom: 3px;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

    .vf-bottom-right .menu-icon-bars1 span {
        display: block;
        width: 5px;
        height: 2px;
        background: white;
    }

    .contact-container {
        flex-direction: column;
    }


    .contact-form-panel {
        padding: 40px;
        border-radius: 20px;
    }

    .contact-info-panel {
        padding: 40px;
        margin-left: 30px;
        margin-right: 30px;
    }

    .contact-info-panel h2,
    .contact-form-panel h3 {
        font-size: 1.0rem;
        margin-bottom: 10px;
    }

    .info-item {
        margin-bottom: 20px;

    }

    .info-item .label {
        font-weight: 600;
        font-size: 1.0rem;
        margin-bottom: 2px;
    }

    .info-item .detail {
        color: #e0e0e0;
        font-size: 0.8rem;
        line-height: 1.0;
    }

    .form-subtext {
        color: #ccc;
        font-size: 0.8rem;
        margin-bottom: 20px;
    }

    /* Input Styling */
    .form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 20px;
    }

    .contact-form-panel input,
    .contact-form-panel textarea {
        width: 100%;
        padding: 15px 20px;
        background: rgb(63, 109, 161);
        /* Slightly lighter navy for fields */
        border: none;
        border-radius: 15px;
        color: white;
        font-family: inherit;
    }

    .contact-form-panel textarea {
        height: 150px;
        margin-bottom: 30px;
        resize: none;
    }


    .contact-form-panel textarea {
        height: 100px;
        margin-bottom: 10px;
    }


    .submit-btn {
        background: white;
        color: #000;
        padding: 12px 40px;
        border: none;
        border-radius: 10px;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
    }

    .submit-btn:hover {
        background: #ff0000;
        color: white;
    }

    .main-nav {
        padding: 0 4%;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero {
        background: url('phone1.jpg');
        background-size: cover;
        background-position: center;
        padding-top: 100px;
    }

    h1 {
        font-size: 1.8rem;
        letter-spacing: 5px;
    }

    .camera-ui {
        padding: 20px;
    }

    .top-left,
    .top-center,
    .top-right {
        top: 20px;
    }

    .top-center {
        font-size: 10px;
        top: 90px;
    }

    .bottom-center,
    .bottom-right {
        bottom: 20px;
    }

    .bottom-center {
        font-size: 10px;
        bottom: 90px;
    }

    .spacecut {
        width: 50%;
    }

    .services-section {
        /* padding: 80px 5%; */
        background: url('phone3.jpg');
        background-size: cover;
        background-position: center;
        display: grid;
        grid-template-columns: 0% 100%;
        font-size: 12px;
    }


    .services-content {
        display: flex;
        flex-direction: column;
        padding-top: 150px;
        padding-left: 50px;
        gap: 30px;
    }

    .services-list div {
        display: flex;
        font-size: 18px;
        align-items: center;
        margin-bottom: 30px;
        font-weight: 500;
    }

    .services-list div::before {
        content: "";
        display: block;
        height: 10px;
        width: 10px;
        background-color: #ff0000;
        border-radius: 50%;
        margin-right: 20px;
        box-shadow: 0 0 15px rgba(255, 0, 0, 0.8);
    }

    .about-section {
        padding: 80px 10%;
        background: url('phone2.jpg');
        background-size: cover;
        background-position: center;
    }

    /* .about-section {
        min-height: 100vh;
        width: 100%;
        background: url('aurabackground2.jpg');
        background-size: cover;
        background-position: center;
        display: flex;
        align-items: center;
        padding: 100px 10%;
    } */

    .about-content-overlay {
        max-width: 650px;
    }

    .content-block {
        margin-bottom: 30px;
    }

    .content-block h2 {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

    .content-block p {
        font-size: 0.9rem;
        line-height: 1.4;
        color: #ffffff;
    }

    .work-section {
        background: url('phone4.jpg');
        background-size: cover;
        background-position: center;
        padding: 0 5%;
    }

    .contact-section {
        background: url('phone5.jpg');
        background-size: cover;
        background-position: center;
        /* padding: 0 5%; */
    }



    .services-list li {
        font-size: 0.9rem;
    }

    .services-list li {
        justify-content: center;
        font-size: 0.9rem;
    }

    .red-dot {
        margin: 0 15px;
    }

    .work-title {
        font-size: 1.5rem;
    }

    .work-left-content {
        margin-top: -300px;
        flex-direction: column;
        align-items: start;
        width: 100%;
    }
}