/* ==================== 1. FONTS & IMPORTS ==================== */
@font-face {
    font-family: 'Delight';
    src: url('fonts/Delight-bold.otf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Bumbbled';
    src: url('fonts/Bumbbled.otf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}


/* Google Fonts & CDN Imports */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&family=Inter:wght@400;900&family=Dancing+Script:wght@400;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/ica-rubrik-black');
@import url('https://fonts.cdnfonts.com/css/poppins');

/* ==================== 2. GLOBAL RESET & BODY ==================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    background: #0b0d10;
    color: white;
    overflow-x: hidden; /* Critical to prevent horizontal scroll */
}

/* ==================== 3. HEADER (Desktop) ==================== */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    
    /* Compact Pill Shape */
    width: 80%;
    max-width: 1000px;
    padding: 8px 25px;
    border-radius: 50px;
    
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    z-index: 999;
}

.logo-wrap { display: flex; align-items: center; }

.site-logo {
    display: block;
    height: 24px;
    width: auto;
    object-fit: contain;
}

/* Nav Buttons */
header nav { display: flex; gap: 12px; align-items: center; }

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 14px;
    border-radius: 20px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 180ms ease;
}

.nav-btn:hover,
.nav-btn:focus {
    background: rgba(255,255,255,0.09);
    transform: translateY(-2px);
    outline: none;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
}

/* Hamburger (Hidden on Desktop) */
.hamburger {
    display: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

/* ==================== 4. HERO SECTION ==================== */
.hero {
    padding-top: 70px;
    position: relative;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #0b0d10;
    background-image:
        radial-gradient(600px 300px at 20% 30%, rgba(255,120,90,0.06), transparent 18%),
        radial-gradient(800px 400px at 78% 70%, rgba(60,120,255,0.03), transparent 22%),
        linear-gradient(120deg, rgba(211, 222, 255, 0.199) 0%, rgba(252, 249, 255, 0.39) 45%, rgba(12,12,14,1) 100%),
        linear-gradient(240deg, rgba(211, 222, 255, 0.199) 0%, rgba(252, 249, 255, 0.39) 45%, rgba(12,12,14,1) 100%),
        repeating-linear-gradient(0deg, transparent 0 100px, rgba(255, 255, 255, 0.493) 100px 101px),
        repeating-linear-gradient(90deg, transparent 0 100px, rgba(255,255,255,0.493) 100px 101px);
    background-size: auto, auto, cover, 100% 100%, 100% 100%;
    background-position: center;
    background-blend-mode: overlay;
}

.hero-title {
    position: absolute;
    top: 26%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Delight', sans-serif;
    font-size: 21.6vw;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.281);
    z-index: 1;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 1px;
}

.hero-subtitle {
    position: absolute;
    right: 6%;
    bottom: 5%;
    font-size: 3vw;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.7;
    color: white;
    z-index: 4;
    pointer-events: none;
    font-family: 'Dancing Script', cursive;
}

.hero-subtitle0 {
    position: absolute;
    left: 6%;
    top: 20%;
    font-size: 3vw;
    font-weight: 300;
    letter-spacing: 0.05em;
    opacity: 0.7;
    color: white;
    z-index: 4;
    pointer-events: none;
    font-family: 'Dancing Script', cursive;
}

.hero img {
    position: relative;
    z-index: 2;
    height: 100%;
    object-fit: contain;
    transform: scale(1.9);
}

/* ==================== 5. ABOUT SECTION ==================== */
.about-me {
    position: relative;
    width: 100%;
    min-height: 100vh;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #fff 0%, #b6a0f3 100%);
    /* Shared Background */
    background-image:
        radial-gradient(at 20% 30%, rgba(255,120,90,0.08) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(60,120,255,0.08) 0px, transparent 50%),
        repeating-linear-gradient(0deg, transparent 0, transparent 99px, rgba(255, 255, 255, 0.05) 100px),
        repeating-linear-gradient(90deg, transparent 0, transparent 99px, rgba(255, 255, 255, 0.05) 100px);
    background-size: auto, auto, 100px 100px, 100px 100px;
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
}

.about-container {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.151);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    min-height: 500px;
}

/* Window controls */
.window-controls {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    gap: 10px;
}
.control { width: 12px; height: 12px; border-radius: 50%; }
.control.close { background: #ff5f56; }
.control.minimize { background: #ffbd2e; }
.control.maximize { background: #28ca42; }

.about-photo {
    width: 150px;
    height: 150px;
    object-fit: cover;
    transform: scale(2.8);
    margin-left: 80px;
    margin-bottom: -80px;
    border-radius: 0 !important;
    border: none !important;
}

.about-content { flex: 1; padding-left: 50px; }
.about-name {
    font-size: 2.8rem;
    font-weight: bold;
    margin: 0 0 20px 100px;
    font-family: 'Outfit', sans-serif;
    background:linear-gradient(135deg, #fff 0%, #b6a0f3 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.about-description {
    font-size: 1.25rem;
    line-height: 1.7;
    margin: 0 0 30px 100px;
    opacity: 0.9;
}

/* Specific selector for ABOUT ME section only */
.about-content .social-links {
    display: flex;
    gap: 12px;
    margin-left: 100px; /* Indent matching text */
    margin-top: 20px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    padding: 12px 20px;
    width: fit-content;
}

/* ==================== 6. TECH STACK SECTION ==================== */
.Tech-Section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #0b0d10;
    /* Shared Background */
    background-image:
        radial-gradient(at 20% 30%, rgba(60,120,255,0.08) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(255,120,90,0.08) 0px, transparent 50%),
        repeating-linear-gradient(0deg, transparent 0, transparent 99px, rgba(255, 255, 255, 0.05) 100px),
        repeating-linear-gradient(90deg, transparent 0, transparent 99px, rgba(255, 255, 255, 0.05) 100px);
    background-size: auto, auto, 100px 100px, 100px 100px;
    background-attachment: fixed;
    font-family: 'Inter', sans-serif;
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    z-index: 2;
}

.header-box { text-align: center; margin-bottom: 4rem; }

.section-title {
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 0%, #b6a0f3 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
}

/* Slider Logic */
.slider-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
    max-width: 1200px;
}

.slider-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.gradient-left, .gradient-right {
  position: absolute;
  top: 0; bottom: 0; width: 100px; z-index: 10; pointer-events: none;
}
.gradient-left { left: 0; background: linear-gradient(to right, #0b0d10, transparent); }
.gradient-right { right: 0; background: linear-gradient(to left, #0b0d10, transparent); }

.slider-track { display: flex; width: max-content; }
.slider-items { display: flex; gap: 4rem; align-items: center; padding: 1rem 2rem; }

.slider-items img {
  height: 80px; width: 80px; object-fit: contain;
  opacity: 0.7; filter: grayscale(0%); transition: all 0.4s ease; cursor: pointer;
}
.slider-items img:hover {
  opacity: 1; filter: grayscale(0%) drop-shadow(0 0 15px rgba(255,255,255, 0.3));
  transform: scale(1.15) translateY(-5px);
}

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

.slider-left  { animation: slideLeft 40s linear infinite; }
.slider-right { animation: slideRight 40s linear infinite; }
.slider-track:hover { animation-play-state: paused; }

/* ==================== 7. FEATURED WORKS (3D Slider) ==================== */
.featured-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible; /* Changed from visible back to hidden for cleaner edges */
    background-color: #0b0d10;
    z-index: 20;
    
    /* Shared Background */
    background-image:
        radial-gradient(at 20% 30%, rgba(255,120,90,0.08) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(60,120,255,0.08) 0px, transparent 50%),
        repeating-linear-gradient(0deg, transparent 0, transparent 99px, rgba(255, 255, 255, 0.05) 100px),
        repeating-linear-gradient(90deg, transparent 0, transparent 99px, rgba(255, 255, 255, 0.05) 100px);
    background-size: auto, auto, 100px 100px, 100px 100px;
    background-attachment: fixed;
}

.banner {
    width: 100%; height: 100vh; text-align: center;
    overflow: visible; position: relative;
}

/* 3D Container */
.banner .slider {
    position: absolute;
    width: 200px;
    height: 280px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centered */
    transform-style: preserve-3d;
    transform: perspective(1000px);
    animation: autoRun 25s linear infinite;
    z-index: 10;
}

/* Dragon Style Rotation */
@keyframes autoRun {
    from { transform: translate(-50%, -50%) perspective(1000px) rotateX(-16deg) rotateY(0deg); }
    to   { transform: translate(-50%, -50%) perspective(1000px) rotateX(-16deg) rotateY(360deg); }
}

/* The Cards */
.banner .slider .item {
    position: absolute;
    inset: 0 0 0 0;
    /* DESKTOP RADIUS: Wide circle (650px) */
    transform: 
        rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
        translateZ(450px);
    
    border-radius: 12px;
    border: 4px solid rgba(255, 255, 255, 0.973);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 50px rgba(12, 11, 11, 0.8);
    transition: transform 0.3s ease;
    backface-visibility: visible;
}

.banner .slider .item img {
    width: 100%; height: 100%; object-fit: cover; display: block;
    border-radius: 12px;
}

.banner .slider:hover { animation-play-state: paused; }
.banner .slider .item:hover {
    border-color: #00C6FF; box-shadow: 0 0 20px rgba(0, 198, 255, 0.6);
}
.banner .slider .item:hover img { transform: scale(1.1); }

/* Background Text */
.banner .content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.banner .content h1 {
    font-family: 'ICA Rubrik', sans-serif;
    font-size: 14em;
    line-height: 1em;
    color: #25283B;
    opacity: 0.15;
    margin: 0;
}
.banner .content h1::after {
    position: absolute; inset: 0 0 0 0; content: attr(data-content);
    z-index: 2; -webkit-text-stroke: 2px #d2d2d2; color: transparent;
}

/* Center Model */
    .banner .content .model {
        background-image: url(images/heroimg.webp);
        width: 100%; 
        height: 75vh;
        position: absolute; bottom: 0; left: 0;
        background-size: auto 130%;
        background-repeat: no-repeat;
        background-position: top center;
        z-index: 1;
    }

/* ==================== 8. REVIEWS SECTION ==================== */
.reviews-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 100vh;
    padding: 250px 20px 100px 20px; /* Top padding for spacing */
    
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background-color: #0b0d10;

    /* Shared Background */
    background-image:
        radial-gradient(at 20% 30%, rgba(60,120,255,0.08) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(255,120,90,0.08) 0px, transparent 50%),
        repeating-linear-gradient(0deg, transparent 0, transparent 99px, rgba(255, 255, 255, 0.05) 100px),
        repeating-linear-gradient(90deg, transparent 0, transparent 99px, rgba(255, 255, 255, 0.05) 100px);
    background-size: auto, auto, 100px 100px, 100px 100px;
    background-attachment: fixed;
    font-family: 'Outfit', sans-serif;
    z-index: 5;
}

/* See More Button */
.see-more-btn {
    margin-top: -100px;
    margin-bottom: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    transition: all 180ms ease;
    cursor: pointer;
    z-index: 10;
}
.see-more-btn:hover {
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.see-more-btn .arrow { transition: transform 0.3s ease; }
.see-more-btn:hover .arrow { transform: translateX(4px); }

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin-top: 2rem;
    z-index: 2;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.review-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.review-header {
    display: flex; align-items: center; gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05); padding-bottom: 20px;
}
.client-photo {
    width: 60px; height: 60px; border-radius: 50%; object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
}
.client-info h3 { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.client-info span { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); font-weight: 300; }
.review-stars { color: #FFD700; font-size: 1.2rem; text-shadow: 0 0 10px rgba(255, 215, 0, 0.3); }
.review-text { font-size: 1.05rem; line-height: 1.7; color: rgba(255, 255, 255, 0.85); font-style: italic; }

/* ==================== 9. CONTACT SECTION ==================== */
.contact-section {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    min-height: 100vh;
    padding: 100px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
    background-color: #0b0d10;

    /* Shared Background */
    background-image:
        radial-gradient(at 20% 30%, rgba(60,120,255,0.08) 0px, transparent 50%),
        radial-gradient(at 80% 70%, rgba(255,120,90,0.08) 0px, transparent 50%),
        repeating-linear-gradient(0deg, transparent 0, transparent 99px, rgba(255, 255, 255, 0.05) 100px),
        repeating-linear-gradient(90deg, transparent 0, transparent 99px, rgba(255, 255, 255, 0.05) 100px);
    background-size: auto, auto, 100px 100px, 100px 100px;
    background-attachment: fixed;
    font-family: 'Outfit', sans-serif;
}

.contact-window {
    position: relative;
    width: 100%;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
}

.contact-window .window-controls {
    position: absolute; top: 20px; left: 20px; display: flex; gap: 8px;
}

.contact-header { text-align: center; margin-bottom: 40px; margin-top: 10px; }
.contact-header h2 {
    font-size: 3rem; font-weight: 700; margin-bottom: 10px;
    background: linear-gradient(135deg, #fff 0%, #b6a0f3 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.contact-header p { color: rgba(255, 255, 255, 0.6); font-size: 1.1rem; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.input-group { display: flex; gap: 20px; }

.input-group input, .full-width, textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px 20px;
    color: white;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.input-group input:focus, .full-width:focus, textarea:focus {
    border-color: #00C6FF; background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 15px rgba(0, 198, 255, 0.1);
}
textarea { resize: vertical; min-height: 120px; }

.submit-btn {
    align-self: center; margin-top: 10px;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 12px 30px;
    border-radius: 12px;
    font-family: 'Outfit', sans-serif;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    color: white; font-weight: 600; font-size: 1rem;
    cursor: pointer; transition: all 0.3s ease;
    z-index: 10;
}
.submit-btn:hover {
    background: rgba(255, 255, 255, 0.09); transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}
.submit-btn .arrow { transition: transform 0.3s ease; }
.submit-btn:hover .arrow { transform: translateX(5px); }

/* Contact Section Specific Social Icons */
.contact-section .social-links {
    display: flex; align-items: center; gap: 15px; margin: 0; 
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 25px;
    width: fit-content;
    z-index: 5;
}

.social-icon {
    display: flex; align-items: center; justify-content: center;
    width: 45px; height: 45px; border-radius: 50%;
    color: rgba(255, 255, 255, 0.7); font-size: 1.2rem;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid transparent;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: rgba(255, 255, 255, 0.15); color: white;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* ==================== 10. FOOTER ==================== */
footer {
    width: 100%;
    text-align: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.3);
    font-family: sans-serif;
    font-size: 0.9rem;
    background-color: #0b0d10;
}
.footer-text { margin-top: -10px; font-size: 1.2rem; letter-spacing: 1px; }


/* ====================================================================== */
/* ==================== 11. MOBILE / TABLET RESPONSIVE ==================== */
/* ====================================================================== */

@media (max-width: 768px) {
    
    /* 1. Header & Hamburger */
    .hamburger { display: block; }
    
    header {
        width: 92%;
        padding: 8px 15px;
        border-radius: 40px;
        top: 15px;
    }
    .site-logo { height: 22px; }

    nav {
        position: fixed;
        top: 0;
        right: -100%; /* Hidden */
        width: 100%;
        height: 60vh; /* Reduced Height */
        background: rgba(11, 13, 16, 0.98);
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
        
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 20px;
        transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: 1000;
    }
    nav.active { right: 0; }
    .nav-btn { font-size: 1.2rem; padding: 12px; width: 70%; text-align: center; }

    /* 2. Hero Section */
    .hero {
        flex-direction: column;
        padding-top: 100px;
        position: relative;
    }
    .hero-title {
        font-size: 19vw;
        top: 55%;
    }
    .hero-subtitle { display: none; } /* Hide the long name on mobile */
    
    .hero-subtitle0 {
        font-size: 3rem; /* Make this one big */
        font-family: 'Bumbbled', sans-serif;
        font-weight: 600;
        margin-bottom: 10px;
        text-align: center;
        z-index: 5;
    }
    .hero img {
        transform: scale(1.8);
        margin-top: 50px;
        height: 50vh;
        width: auto;
    }

    /* 3. About Section */
    .about-me { padding: 60px 20px; height: auto; }
    .about-container { flex-direction: column; padding: 30px 20px; height: auto; }
    .about-photo {
        margin: 0 0 20px 0; transform: scale(1);
        border-radius: 50% !important; width: 120px; height: 120px;
    }
    .about-content { padding-left: 0; text-align: center; }
    .about-name { margin: 0 0 15px 0; font-size: 2rem; }
    .about-description { margin: 0 0 20px 0; font-size: 1rem; padding: 0 10px; }
    .about-content .social-links { margin-left: 0; justify-content: center; margin: 0 auto; }


/* 5. Featured 3D Slider (Mobile - Bottom Aligned) */
    .featured-section {
        height: 100vh;
        overflow: hidden;
        position: relative;
    }

    /* 1. Reset Container to Bottom */
    .banner .content {
        top: auto !important;     /* Remove previous top positioning */
        bottom: 0 !important;     /* Anchor firmly to bottom */
        padding-bottom: 0;
        height: 100%;             /* Occupy full height for positioning */
        pointer-events: none;     /* Allow clicking through to slider */
    }

    /* 2. Position "PROJECTS" Text Behind Model */
    .banner .content h1 {
        font-size: 4rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 900;
        text-transform: uppercase;
        background: linear-gradient(135deg, #fff 0%, #b6a0f3 100%);
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        position: absolute;
        top: 50px;             /* Sits near the bottom edge */
        left: 0;
        width: 100%;
        margin: 0;
        opacity: 1;            /* Subtle background text */
        z-index: 0;
    }

    /* 3. Anchor Model to Very Bottom */
    .banner .content .model {
        width: 100%;
        height: 60vh;             /* Model takes up bottom 60% of screen */
        background-size: contain; 
        background-repeat: no-repeat;
        background-position: bottom center; /* Forces image to touch bottom */
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: 1;               /* In front of text */
    }

    /* 4. Position Slider at Chest Level */
    .banner .slider {
        width: 100px;
        height: 140px;
        
        /* Instead of top %, we use bottom % to align relative to the model */
        top: auto; 
        bottom: 25%;              /* Adjust this to move slider up/down on the body */
        
        left: calc(50% - 50px);   /* Center horizontally */
        z-index: 10;              /* In front of model */
    }

    /* 5. Spread Cards Out */
    .banner .slider .item {
        transform: 
            rotateY(calc( (var(--position) - 1) * (360 / var(--quantity)) * 1deg))
            translateZ(240px);    /* Keep the wider radius so cards don't overlap */
    }

    /* 6. Reviews & Contact */
    .reviews-section { padding: 150px 20px 50px 20px; height: auto; }
    .reviews-grid { grid-template-columns: 1fr; }
    .see-more-btn { margin-top: -100px; margin-bottom: 50px; font-size: 0.85rem; }
    
    .contact-section { padding: 80px 20px; height: auto; }
    .contact-window { padding: 30px 20px; }
    .input-group { flex-direction: column; gap: 15px; }
    .contact-section .social-links { flex-wrap: wrap; justify-content: center; border-radius: 30px; padding: 15px; }
}

@media (max-width: 480px) {
    .social-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
}