* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Times New Roman", Times, serif;
    scroll-behavior: smooth;
}

:root {
    --bg-color: #030408; 
    --glow-color: #ffdf00;
    --text-light: #e0e6ed;
    --nav-bg: rgba(3, 4, 8, 0.95);
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--nav-bg);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 223, 0, 0.1);
    backdrop-filter: blur(10px);
}

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

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    filter: drop-shadow(0 0 5px var(--glow-color));
    transition: 0.3s;
}

.logo img:hover {
    filter: drop-shadow(0 0 15px var(--glow-color));
    transform: scale(1.05);
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.3s ease;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--glow-color);
    text-shadow: 0 0 8px var(--glow-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 0 5px var(--glow-color);
}

.banner-container {
    width: 100%;
    margin-top: 80px;
    display: flex;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
}

.hero-banner {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    object-position: center;
}

.page-section {
    padding: 60px 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.hero-section {
    padding-top: 40px;
    padding-bottom: 20px;
    min-height: auto;
}

.hero-desc {
    font-size: 1.4rem;
    max-width: 800px;
    margin-bottom: 30px;
    font-style: italic;
    color: #ccc;
}

h1, h2 {
    color: var(--glow-color);
    text-shadow: 0 0 15px rgba(255, 223, 0, 0.4);
    margin-bottom: 20px;
    letter-spacing: 2px;
}

h2 { 
    font-size: 2.5rem; 
    border-bottom: 1px solid rgba(255, 223, 0, 0.3); 
    padding-bottom: 10px; 
}

p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.btn {
    padding: 12px 35px;
    background: transparent;
    color: var(--glow-color);
    border: 1px solid var(--glow-color);
    border-radius: 30px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: 0.4s;
    box-shadow: 0 0 10px rgba(255, 223, 0, 0.2);
    letter-spacing: 1px;
}

.btn:hover {
    background: var(--glow-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px var(--glow-color);
}

.demo-section {
    padding-top: 60px;
    min-height: 100vh;
}

.demo-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 800px;
}

.demo-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    gap: 20px;
    transition: 0.3s;
}

.demo-card:hover {
    border-color: rgba(255, 223, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.demo-card img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.demo-info {
    flex-grow: 1;
    text-align: left;
}

.demo-info h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 2px;
    letter-spacing: 1px;
}

.demo-info p {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 12px;
    font-style: italic;
}

audio {
    width: 100%;
    height: 35px;
    outline: none;
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0px;
        height: 100vh;
        top: 80px;
        background-color: var(--nav-bg);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 60%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        border-left: 1px solid rgba(255, 223, 0, 0.2);
    }

    .nav-links li {
        margin: 25px 0;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .burger {
        display: block;
    }

    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

    .demo-card {
        flex-direction: column;
        text-align: center;
    }

    .demo-info {
        text-align: center;
        width: 100%;
    }

    .demo-card img {
        width: 120px;
        height: 120px;
    }
}

/* =========================================
   Services Section Styles
   ========================================= */

.services-section {
    padding-top: 120px; 
    min-height: 100vh;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #a0aab5;
    margin-bottom: 50px;
    font-style: italic;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    border-color: rgba(255, 223, 0, 0.6); 
    box-shadow: 0 10px 30px rgba(255, 223, 0, 0.15); 
    transform: translateY(-5px); 
    background: rgba(255, 255, 255, 0.05);
}

.icon-container {
    width: 60px;
    height: 60px;
    margin-bottom: 25px;
    color: var(--glow-color); 
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-container svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(255, 223, 0, 0.4));
    transition: transform 0.3s ease;
}

.service-card:hover .icon-container svg {
    transform: scale(1.1); 
}

.service-card h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: none;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--glow-color);
}

.service-card p {
    color: #8892b0;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
}

/* =========================================
   Contact Section Styles
   ========================================= */

.contact-section {
    padding-top: 120px;
    min-height: 100vh;
}

.contact-container {
    display: flex;
    gap: 60px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: left;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info h3 {
    font-size: 2.2rem;
    color: var(--glow-color);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.info-desc {
    color: #a0aab5;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.info-item svg {
    width: 26px;
    height: 26px;
    color: var(--glow-color);
    filter: drop-shadow(0 0 5px rgba(255, 223, 0, 0.3));
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    color: var(--text-light);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a svg {
    width: 20px;
    height: 20px;
}

.social-links a:hover {
    color: var(--bg-color);
    background: var(--glow-color);
    box-shadow: 0 0 15px var(--glow-color);
    transform: translateY(-5px);
    border-color: var(--glow-color);
}

.contact-form-wrapper {
    flex: 1.2;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    width: 100%;
}

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

.input-row {
    display: flex;
    gap: 20px;
}

.input-row input {
    flex: 1;
}

input, textarea {
    width: 100%;
    padding: 16px;
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    outline: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit; 
}

input::placeholder, textarea::placeholder {
    color: #666;
}

input:focus, textarea:focus {
    border-color: var(--glow-color);
    box-shadow: 0 0 10px rgba(255, 223, 0, 0.2);
    background: rgba(0, 0, 0, 0.6);
}

textarea {
    resize: vertical;
}

.submit-btn {
    align-self: flex-start;
    cursor: pointer;
    margin-top: 10px;
}

@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .input-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

/* =========================================
   Portfolio Section Styles
   ========================================= */

.portfolio-section {
    padding-top: 120px;
    min-height: 100vh;
}

.portfolio-category {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 60px auto;
}

.mt-50 {
    margin-top: 50px;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.category-header h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    letter-spacing: 1px;
    margin: 0;
}

.category-header svg {
    width: 30px;
    height: 30px;
}

.youtube-icon {
    color: #ff0000; 
    filter: drop-shadow(0 0 5px rgba(255, 0, 0, 0.5));
}

.ig-icon {
    color: #e1306c; 
    filter: drop-shadow(0 0 5px rgba(225, 48, 108, 0.5));
}


.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.video-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
}

.video-card:hover {
    border-color: var(--glow-color);
    box-shadow: 0 5px 20px rgba(255, 223, 0, 0.15);
}

.iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; 
    height: 0;
    border-radius: 8px;
    overflow: hidden;
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-items: center;
}

.reel-card {
    width: 100%;
    max-width: 350px; 
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.reel-card:hover {
    border-color: var(--glow-color);
    box-shadow: 0 5px 20px rgba(255, 223, 0, 0.15);
}


@media screen and (max-width: 768px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .reels-grid {
        grid-template-columns: 1fr;
    }
}