/* 
* Custom CSS for JAI DESIGN Portfolio Website
* Enhanced for professional portfolio presentation with animations
*/

/* Global Styles & Variables */
:root {
    --primary-gold: #c69c4f;
    --primary-gold-rgb: 198, 156, 79;
    --dark-bg: #000000;
    --dark-bg-rgb: 0, 0, 0;
    --white: #ffffff;
    --white-rgb: 255, 255, 255;
    --beige: #f5ecd6;
    --beige-rgb: 245, 236, 214;
    --neon-blue: #00ffff;
    --neon-pink: #ff00ff;
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    --box-shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --box-shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.2);
    --box-shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* Base Styles */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-bg);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    background-color: var(--white);
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    font-weight: 700;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-gold);
    text-decoration: none;
    transition: all var(--transition-fast);
}

a:hover {
    color: #a57b2e;
}

section {
    padding: 80px 0;
    position: relative;
}

.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--primary-gold);
    color: var(--white);
    padding: 8px;
    z-index: 9999;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Navigation */
.navbar {
    background-color: var(--primary-gold);
    padding: 15px 0;
    font-family: 'Orbitron', sans-serif;
    height: 80px;
    transition: all var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(var(--primary-gold-rgb), 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    padding: 0;
    margin: 0;
}

.navbar-brand img.logo {
    height: 50px;
    margin-left: 15px;
    transition: all var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    letter-spacing: 1px;
    margin: 0 15px;
    position: relative;
    font-size: 14px;
    padding: 8px 0;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: width var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link.active::after,
.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    width: 24px;
    height: 24px;
    background-image: none !important;
    position: relative;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--white);
    left: 0;
    transition: all 0.3s;
}

.navbar-toggler-icon::before {
    top: 0;
    transform: translateY(8px) rotate(0);
}

.navbar-toggler-icon::after {
    bottom: 0;
    transform: translateY(-8px) rotate(0);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(0) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(0) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 600px;
    position: relative;
    color: var(--white);
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: -1;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.hero-cta {
    margin-top: 30px;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-gold);
    border-color: var(--primary-gold);
    color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 15px rgba(var(--primary-gold-rgb), 0.3);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-gold-rgb), 0.4);
}

.btn-outline-light {
    color: var(--white);
    border-color: var(--white);
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
}

.btn-outline-light:hover {
    background-color: var(--white);
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--white-rgb), 0.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-indicator a {
    color: var(--white);
    font-size: 24px;
    transition: all var(--transition-fast);
}

.scroll-indicator a:hover {
    color: var(--primary-gold);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-20px) translateX(-50%);
    }
    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Intro Grid Section */
.intro-grid {
    padding: 0;
}

.intro-grid .row {
    margin: 0;
}

.intro-grid .grid-item {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
    transition: all var(--transition-medium);
}

.intro-grid .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-medium);
}

.intro-grid .grid-item:hover img {
    transform: scale(1.05);
}

.welcome-text, .concept-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    line-height: 1;
    text-align: center;
    color: var(--dark-bg);
    margin: 0;
    padding: 0;
    transition: all var(--transition-fast);
}

.intro-grid .grid-item:hover .welcome-text,
.intro-grid .grid-item:hover .concept-text {
    transform: scale(1.1);
    color: var(--primary-gold);
}

/* Social Bar */
.social-bar {
    background: linear-gradient(to right, rgba(var(--primary-gold-rgb), 0.7), rgba(var(--primary-gold-rgb), 0.9), rgba(var(--primary-gold-rgb), 0.7));
    padding: 20px 0;
    border-radius: 50px;
    margin: 50px auto;
    max-width: 90%;
    box-shadow: var(--box-shadow-medium);
}

.social-bar .row {
    margin: 0;
}

.social-icon {
    display: inline-block;
    margin: 0 15px;
    transition: all var(--transition-fast);
}

.social-icon img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: var(--white);
    transition: all var(--transition-fast);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon:hover img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: var(--white);
}

.gallery-filter {
    margin-bottom: 30px;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.filter-buttons li {
    padding: 8px 20px;
    margin: 5px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 500;
    transition: all var(--transition-fast);
    background-color: #f5f5f5;
}

.filter-buttons li.active,
.filter-buttons li:hover {
    background-color: var(--primary-gold);
    color: var(--white);
}

.featured-image {
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow-medium);
}

.featured-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

.featured-image:hover img {
    transform: scale(1.02);
}

.gallery-grid {
    margin: 0 -10px;
}

.gallery-item {
    margin-bottom: 20px;
    padding: 0 10px;
}

.gallery-item-inner {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--box-shadow-light);
    transition: all var(--transition-fast);
}

.gallery-item-inner img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-medium);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-gold-rgb), 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-info {
    text-align: center;
    color: var(--white);
    transform: translateY(20px);
    transition: transform var(--transition-fast);
}

.gallery-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-info p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.gallery-popup {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--white);
    color: var(--primary-gold);
    border-radius: 50%;
    transition: all var(--transition-fast);
}

.gallery-popup:hover {
    background-color: var(--dark-bg);
    color: var(--white);
}

.gallery-item-inner:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
}

.gallery-item-inner:hover img {
    transform: scale(1.1);
}

.gallery-item-inner:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item-inner:hover .gallery-info {
    transform: translateY(0);
}

.production-tagline {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    margin-top: 60px;
    letter-spacing: 1px;
    line-height: 1.4;
    text-align: center;
    color: #333;
}

.production-tagline strong {
    font-weight: 700;
    color: var(--primary-gold);
}

/* Animations Section */
.animations-section {
    padding: 100px 0;
    background-color: #f9f9f9;
    position: relative;
}

.animations-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48ZyBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxnIGZpbGw9IiNjNjljNGYiIGZpbGwtb3BhY2l0eT0iMC4wNSI+PHBhdGggZD0iTTM2IDM0djZoNnYtNmgtNnptMC0zMHY2aDZ2LTZoLTZ6bTAgMTJ2Nmg2di02aC02em0wIDEydjZoNnYtNmgtNnptMCAxMnY2aDZ2LTZoLTZ6bTEyLTQ4djZoNnYtNmgtNnptMCAxMnY2aDZ2LTZoLTZ6bTAgMTJ2Nmg2di02aC02em0wIDEydjZoNnYtNmgtNnptMCAxMnY2aDZ2LTZoLTZ6bTEyLTQ4djZoNnYtNmgtNnptMCAxMnY2aDZ2LTZoLTZ6bTAgMTJ2Nmg2di02aC02em0wIDEydjZoNnYtNmgtNnptMCAxMnY2aDZ2LTZoLTZ6Ii8+PC9nPjwvZz48L3N2Zz4=');
    opacity: 0.5;
    z-index: 0;
}

.animations-section .container {
    position: relative;
    z-index: 1;
}

.featured-animation {
    margin-bottom: 50px;
}

.video-container {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow-heavy);
}

.video-js {
    width: 100%;
    height: 500px;
    border-radius: 10px;
}

.vjs-custom-theme {
    --vjs-primary-color: var(--primary-gold);
    --vjs-secondary-color: var(--white);
}

.vjs-custom-theme .vjs-big-play-button {
    background-color: rgba(var(--primary-gold-rgb), 0.8);
    border: none;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all var(--transition-fast);
}

.vjs-custom-theme .vjs-big-play-button:hover {
    background-color: var(--primary-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

.vjs-custom-theme .vjs-control-bar {
    background-color: rgba(var(--dark-bg-rgb), 0.7);
    border-radius: 0 0 10px 10px;
}

.video-caption {
    margin-top: 20px;
    text-align: center;
}

.video-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #333;
}

.video-caption p {
    color: #666;
}

.animation-filter {
    margin-bottom: 30px;
}

.animation-grid {
    margin: 0 -10px;
}

.animation-item {
    margin-bottom: 30px;
    padding: 0 10px;
}

.animation-item-inner {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
    transition: all var(--transition-fast);
}

.animation-thumbnail {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.animation-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-medium);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background-color: rgba(var(--primary-gold-rgb), 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0;
    transition: all var(--transition-fast);
}

.animation-item-inner:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
}

.animation-item-inner:hover .animation-preview {
    transform: scale(1.1);
}

.animation-item-inner:hover .play-button {
    opacity: 1;
}

.animation-info {
    padding: 15px;
}

.animation-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.animation-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.process-showcase {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow-light);
}

.process-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

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

.before-after-slider {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background-color: var(--white);
    transform: translateX(-50%);
    cursor: ew-resize;
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: var(--white);
    border: 3px solid var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-handle::after {
    content: '↔';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-gold);
    font-size: 20px;
    font-weight: bold;
}

.process-video {
    height: 100%;
}

.process-info {
    margin-top: 15px;
}

.process-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.process-info p {
    color: #666;
    margin-bottom: 0;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background-color: var(--white);
}

.featured-project {
    margin-bottom: 60px;
}

.project-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: var(--box-shadow-medium);
}

.project-image img {
    width: 100%;
    height: auto;
    transition: transform var(--transition-medium);
}

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

.project-details {
    padding: 20px;
}

.project-category {
    display: inline-block;
    background-color: #f5f5f5;
    color: #666;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-title {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
}

.project-description {
    margin-bottom: 20px;
    color: #666;
}

.project-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.project-specs li {
    margin-bottom: 5px;
    color: #666;
}

.project-specs li strong {
    color: #333;
}

.btn-outline-primary {
    color: var(--primary-gold);
    border-color: var(--primary-gold);
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.btn-outline-primary:hover {
    background-color: var(--primary-gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(var(--primary-gold-rgb), 0.3);
}

.project-card {
    margin-bottom: 30px;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow-light);
    transition: all var(--transition-fast);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-medium);
}

.project-card .project-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    box-shadow: none;
    border-radius: 8px 8px 0 0;
}

.project-card .project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--dark-bg-rgb), 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    padding: 20px;
}

.project-info .project-category {
    font-size: 0.8rem;
    margin-bottom: 10px;
}

.project-info .project-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.project-summary {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0;
}

.skills-section {
    margin-top: 80px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
}

.skills-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.skills-category h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    border-bottom: 2px solid var(--primary-gold);
    padding-bottom: 10px;
    display: inline-block;
}

.skill-item {
    margin-bottom: 15px;
}

.skill-name {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: #333;
}

.skill-bar {
    height: 10px;
    background-color: #e9e9e9;
    border-radius: 5px;
    overflow: hidden;
}

.skill-level {
    height: 100%;
    background: linear-gradient(to right, var(--primary-gold), #e0b980);
    border-radius: 5px;
    position: relative;
    transition: width 1.5s ease;
}

.skill-level::after {
    content: attr(data-level);
    position: absolute;
    right: 0;
    top: -25px;
    font-size: 0.8rem;
    color: #666;
}

.clients-section {
    margin-top: 80px;
}

.clients-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.client-logo {
    flex: 0 0 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.client-logo:hover {
    filter: grayscale(0);
    opacity: 1;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
}

.testimonials-section {
    margin-top: 80px;
}

.testimonials-slider {
    position: relative;
    padding: 30px 0;
}

.testimonial-item {
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: var(--box-shadow-light);
    margin: 0 15px;
}

.testimonial-content p {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    position: relative;
    padding-left: 25px;
}

.testimonial-content p::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 40px;
    color: var(--primary-gold);
    font-family: Georgia, serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
    border: 2px solid var(--primary-gold);
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: #333;
}

.author-info span {
    font-size: 0.9rem;
    color: #666;
}

/* Services Section */
.services-section {
    background-color: var(--beige);
    padding: 80px 0 0;
    position: relative;
    border-radius: 0 0 20px 20px;
}

.subsection-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #333;
}

.services-list, .genres-list {
    list-style-type: none;
    padding-left: 20px;
    margin-bottom: 30px;
}

.services-list li, .genres-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #444;
}

.services-list li::before, .genres-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
    font-size: 1.5rem;
    line-height: 1;
}

.genres-grid {
    margin-top: 20px;
}

.coffee-mug {
    position: relative;
    margin: 40px 0;
    text-align: center;
    transition: all var(--transition-medium);
}

.coffee-mug:hover {
    transform: translateY(-10px);
}

.coffee-mug img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: var(--box-shadow-medium);
}

.production-banner {
    position: relative;
    margin-top: 50px;
    width: 100%;
    overflow: hidden;
}

.production-banner img {
    width: 100%;
    display: block;
    filter: brightness(0.7);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
}

.banner-text {
    font-family: 'Rajdhani', sans-serif;
    color: var(--white);
    text-align: center;
    font-size: 2.2rem;
    letter-spacing: 2px;
    line-height: 1.4;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
}

.about-intro {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: #333;
}

.question {
    font-style: italic;
    font-size: 1.3rem;
    margin: 40px 0 20px;
    color: #555;
}

.together-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin: 50px 0;
    text-transform: uppercase;
    color: #333;
}

.about-images {
    margin: 50px 0;
}

.about-images img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: var(--box-shadow-medium);
    transition: transform var(--transition-medium);
}

.about-images img:hover {
    transform: scale(1.03);
}

.awards-section {
    margin-top: 80px;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: var(--box-shadow-light);
}

.awards-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: #333;
    text-align: center;
}

.award-item {
    text-align: center;
    margin-bottom: 30px;
}

.award-icon {
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 15px;
}

.award-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.award-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Contact Section */
.contact-section {
    padding: 0 0 100px;
    background-color: var(--white);
}

.contact-hero {
    position: relative;
    margin-bottom: 60px;
    height: 400px;
    overflow: hidden;
}

.contact-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.7);
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
}

.future-text {
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    font-size: 3.5rem;
    letter-spacing: 3px;
    text-shadow: 0 0 30px rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
}

.btn-help, .btn-book {
    background-color: var(--primary-gold);
    color: var(--white);
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    padding: 12px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
    border: 2px solid var(--primary-gold);
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(var(--primary-gold-rgb), 0.3);
}

.btn-help:hover, .btn-book:hover {
    background-color: transparent;
    color: var(--primary-gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(var(--primary-gold-rgb), 0.4);
}

.help-button, .book-button {
    text-align: center;
    margin: 30px 0;
}

.contact-intro {
    text-align: center;
    font-size: 1.2rem;
    margin: 40px 0;
    color: #555;
}

.contact-form {
    margin: 50px 0;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: var(--box-shadow-medium);
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #ddd;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    transition: all var(--transition-fast);
}

.form-control:focus {
    box-shadow: none;
    border-color: var(--primary-gold);
}

.contact-info {
    margin-top: 80px;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-right: 20px;
    box-shadow: 0 5px 15px rgba(var(--primary-gold-rgb), 0.3);
}

.info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
}

.info-content p {
    color: #666;
    margin-bottom: 0;
}

/* Footer */
.footer {
    position: relative;
    margin-top: 50px;
}

.footer-bar {
    position: relative;
}

.footer-bar img {
    width: 100%;
    display: block;
}

.footer-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.website-url {
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--white);
    text-transform: uppercase;
    font-size: 1.2rem;
}

.footer-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-icon {
    display: block;
    transition: all var(--transition-fast);
}

.footer-icon img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.footer-icon:hover {
    transform: translateY(-5px);
}

.footer-icon:hover img {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.copyright-section {
    background-color: #222;
    color: #999;
    padding: 20px 0;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-links li {
    margin-left: 20px;
}

.footer-links li a {
    color: #999;
    transition: all var(--transition-fast);
}

.footer-links li a:hover {
    color: var(--primary-gold);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(var(--primary-gold-rgb), 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #a57b2e;
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(var(--primary-gold-rgb), 0.4);
}

/* Video Modal */
.modal-content {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    border: none;
}

.modal-header {
    border-bottom: 1px solid #333;
    padding: 15px 20px;
    background-color: #111;
}

.modal-title {
    color: var(--white);
    font-size: 1.2rem;
}

.btn-close {
    color: var(--white);
    opacity: 0.8;
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body {
    padding: 0;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Cursor Effects */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: rgba(var(--primary-gold-rgb), 0.5);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
    mix-blend-mode: difference;
}

.custom-cursor.active {
    width: 50px;
    height: 50px;
    background-color: rgba(var(--primary-gold-rgb), 0.2);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s, visibility 0.5s;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--primary-gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .welcome-text, .concept-text {
        font-size: 2.5rem;
    }
    
    .intro-grid .grid-item {
        height: 250px;
    }
    
    .video-js {
        height: 400px;
    }
    
    .future-text {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .welcome-text, .concept-text {
        font-size: 2.2rem;
    }
    
    .intro-grid .grid-item {
        height: 220px;
    }
    
    .navbar-collapse {
        background-color: rgba(var(--primary-gold-rgb), 0.95);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
        box-shadow: var(--box-shadow-medium);
    }
    
    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
    }
    
    .video-js {
        height: 350px;
    }
    
    .future-text {
        font-size: 2.5rem;
    }
    
    .banner-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-section {
        height: 80vh;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .welcome-text, .concept-text {
        font-size: 2rem;
    }
    
    .intro-grid .grid-item {
        height: 180px;
    }
    
    .social-icon {
        margin: 0 10px;
    }
    
    .social-icon img {
        width: 40px;
        height: 40px;
    }
    
    .video-js {
        height: 300px;
    }
    
    .future-text {
        font-size: 2rem;
    }
    
    .banner-text {
        font-size: 1.5rem;
    }
    
    .process-showcase {
        padding: 20px;
    }
    
    .before-after-slider {
        height: 250px;
        margin-bottom: 30px;
    }
    
    .contact-hero {
        height: 300px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .footer-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .footer-links li {
        margin: 0 10px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-section {
        height: 70vh;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .welcome-text, .concept-text {
        font-size: 1.8rem;
    }
    
    .intro-grid .grid-item {
        height: 150px;
    }
    
    .social-icon img {
        width: 35px;
        height: 35px;
    }
    
    .video-js {
        height: 250px;
    }
    
    .future-text {
        font-size: 1.5rem;
    }
    
    .banner-text {
        font-size: 1.2rem;
    }
    
    .contact-hero {
        height: 250px;
    }
    
    .btn-help, .btn-book {
        padding: 10px 25px;
        font-size: 1rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
    
    .website-url {
        font-size: 1rem;
    }
    
    .footer-icon img {
        width: 35px;
        height: 35px;
    }
}
