/* === BASE STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: #0a0a0a; 
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}





/* === HEADER & LOGO STYLING === */

/* Header container ko full width aur fix karne ke liye */
.main-header {
    width: 100%;
    background-color: #0a0a0a; /* Dark background portfolio theme ke hisaab se */
    padding: 20px 0;
    position: fixed; /* Scroll karne par top par fixed rahega */
    top: 0;
    z-index: 1000; /* Baki elements ke upar dikhne ke liye */
    border-bottom: 1px solid #222;
}

/* Header ke andar ka content center aur space manage karne ke liye */
.header-container {
    display: flex;
    justify-content: space-between; /* Logo left mein, nav links right mein (agar honge) */
    align-items: center;
    max-width: 1600px; /* Website ki main width ke hisaab se adjust karein */
    margin: 0 auto;
    padding: 0 5%; /* Mobile par corners se gap ke liye */
}

/* Base Logo styling */
.logo {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    
}

/* First initial "A" ko highlight karne ke liye (Aapki theme ke orange color se match) */
.logo-initial {
    color: #f39c12; /* Previous snippets mein use hua orange color */
    font-weight: 900;
    margin-right: 2px;
    border: 2px solid #f39c12; /* Optional: letter ke aas paas border */
    padding: 0px 8px;
    border-radius: 4px;
}

.logo:hover {
    color: #f39c12; /* Hover karne par pura text orange ho jayega */
}

/* === RESPONSIVE FIX (Important!) === */
/* Kyunki header ab fixed hai, humein main content ko thoda niche shift karna padega 
   takki wo logo ke piche na chhup jaye. Apne hero section ki styling mein padding-top add karein */

#hero {
    padding-top: 120px; /* Header ki height ke hisaab se adjust karein */
}






/* === NAVIGATION STYLING === */
.nav-links {
    display: flex;
    gap: 30px; /* Links ke beech ki space */
    align-items: center;
}

.nav-links a {
    color: #cccccc; /* Light gray color */
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

/* Hover effect: Mouse le jane par aapka signature orange color aayega */
.nav-links a:hover {
    color: #f39c12; /* [cite: 14, 18] */
}

/* === SMOOTH SCROLL MAGIC === */
html {
    scroll-behavior: smooth; /* Ye single line jadoo karegi! */
}

/* Kyunki hamara header fixed hai, ye code ensure karega ki scroll hone par content header ke peeche na chhupe */
section {
    scroll-margin-top: 100px; /* Apne header ki height ke hisaab se adjust karein */
}


.accent { color: #f39c12; }

/* === WATERMARK === */
.watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    font-size: 15vw;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.02); /* Extremely subtle so it doesn't distract */
    z-index: -1;
    pointer-events: none;
    white-space: nowrap;
    user-select: none;
    transition: transform 0.1s linear;
}

/* === LAYOUT & SPACING === */
section {
    padding: 80px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* === HERO SECTION === */
#hero {
    min-height: 100vh;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 40px;
}

/* === HERO SECTION (Side-by-Side Layout) === */
#hero {
    min-height: 100vh;
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    padding-top: 100px;
}

.hero-split {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 50px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 40px;
}

/* Vertical Video Container Fix */
.hero-video-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.video-container-vertical {
    width: 100%;
    max-width: 350px; /* Perfect width for vertical video */
    aspect-ratio: 9/16;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(243, 156, 18, 0.2); /* Cinematic glowing effect */
    border: 1px solid #333;
}

.video-container-vertical iframe {
    width: 100%;
    height: 100%;
    border: none;
}


/* === WORK SECTION === */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1100px;
}

.work-card {
    background-color: #151515;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #222;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.work-card:hover {
    transform: translateY(-10px);
    border-color: #f39c12;
}

.work-card iframe {
    width: 100%;
    aspect-ratio: 9/16; 
    border-radius: 6px;
    border: none;
}

/* === SERVICES SECTION (NEW ALTERNATING LAYOUT) === */
#services { background-color: #0f0f0f; }

.services-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px; /* Space between each row */
    max-width: 1100px;
    width: 100%;
}

.service-row {
    display: flex;
    align-items: center;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #222;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.service-row:hover {
    transform: scale(1.02);
    border-color: #f39c12;
}

.service-row.reverse {
    flex-direction: row-reverse;
}

.service-img {
    flex: 1;
    width: 50%;
    min-height: 200px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-text {
    flex: 1;
    padding: 50px;
}

.service-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-text p {
    color: #aaaaaa;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* === CONTACT SECTION === */
#contact {
    text-align: center;
    padding-bottom: 100px;
}

.contact-text {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #0a0a0a;
    background-color: #f39c12;
    text-decoration: none;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn:hover {
    background-color: #fdebdb;
    transform: scale(1.05);
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #050505;
    color: #555;
    font-size: 0.8rem;
}

/* === JAVASCRIPT ANIMATION CLASSES === */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* === JAVASCRIPT ANIMATION CLASSES === */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}


/* === HAMBURGER MENU STYLES === */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 2000; /* Ensure it stays above the nav menu */
}

.hamburger .bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background-color: #ffffff;
}










