/* ================ VARIABLES & BASE STYLES ================ */
:root {
    --primary-color: #d62828;
    --secondary-color: #ba181b;
    --accent-color: #e5383b;
    --dark-color: #161a1d;
    --light-color: #f5f3f4;
    --gold-color: #d4af37;
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark-color);
    overflow-x: hidden;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

/* ================ PRELOADER ================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader .logo .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--gold-color);
    animation: spin 1s ease-in-out infinite;
    margin-bottom: 20px;
}

.preloader .logo span {
    color: var(--gold-color);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-align: center;
}

/* ================ HEADER & NAVIGATION ================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    padding: 1rem 5% !important;
    box-shadow: var(--box-shadow);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 50px;
    margin-right: 15px;
    transition: var(--transition);
}

.logo-text h1, .logo-text p {
    color: white;
    transition: var(--transition);
    margin: 0;
}

header.scrolled .logo-text h1, 
header.scrolled .logo-text p {
    color: var(--dark-color);
}

.logo-text h1 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.logo-text span {
    color: var(--gold-color);
}

.logo-text p {
    font-size: 0.7rem;
    letter-spacing: 2px;
    font-weight: 300;
}

/* Navigation */
#main-nav {
    margin-right: auto;
    margin-left: 40px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.nav-item {
    margin-left: 15px;
    position: relative;
}

.nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: var(--transition);
    padding: 8px 15px;
    border-radius: 30px;
    position: relative;
}

header.scrolled .nav-link {
    color: var(--dark-color);
}

.nav-link:hover {
    color: var(--gold-color) !important;
    background: rgba(255, 255, 255, 0.1);
}

header.scrolled .nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
}

.nav-link.active {
    background: var(--gold-color);
    color: var(--dark-color) !important;
    font-weight: 600;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 5px 10px;
    z-index: 1001;
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

header.scrolled .mobile-menu-btn {
    color: var(--dark-color);
}

/* ================ HERO SECTION ================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(22, 26, 29, 0.7), rgba(22, 26, 29, 0.5));
    z-index: 0;
}

.hero-content {
    max-width: 1200px;
    padding: 0 5%;
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease forwards;
}

.hero h1 span {
    color: var(--gold-color);
    position: relative;
}

.hero h1 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gold-color);
    z-index: -1;
    opacity: 0.5;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s forwards;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.6s forwards;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn i {
    margin-right: 8px;
}

.btn-primary {
    background: var(--gold-color);
    color: var(--dark-color);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    background: #c9a227;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    border: 2px solid var(--gold-color);
    color: var(--gold-color);
    background: transparent;
}

.btn-secondary:hover {
    background: var(--gold-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

/* ================ ABOUT SECTION ================ */
.section {
    padding: 6rem 5%;
}

.about {
    background: var(--light-color);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--gold-color);
    border-radius: 50%;
    opacity: 0.1;
    z-index: 0;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--gold-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-image {
    flex: 1;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

.stats {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    flex: 1;
    min-width: 120px;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ================ SERVICES SECTION ================ */
.services {
    background: white;
    position: relative;
}

.services::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: var(--light-color);
    z-index: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
    transform-style: preserve-3d;
    transform: perspective(1000px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
}

.service-card:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg) translateY(-10px) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: white;
}

.service-card:hover::before {
    opacity: 0.9;
}

.service-card:hover .service-content h3,
.service-card:hover .service-content p,
.service-card:hover .service-link {
    color: white;
}

.service-card:hover .service-link i {
    color: white;
}

.service-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
    opacity: 0.8;
}

.service-content {
    padding: 25px;
    position: relative;
}

.service-content h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: var(--transition);
}

.service-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.service-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.service-link i {
    margin-left: 8px;
    transition: var(--transition);
    color: var(--primary-color);
}

.service-link:hover {
    color: var(--secondary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ================ CTA SECTION ================ */
.cta {
    padding: 6rem 5%;
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    opacity: 0.9;
}

.btn-cta {
    background: var(--gold-color);
    color: var(--dark-color);
    padding: 18px 50px;
    font-size: 1.1rem;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.btn-cta i {
    margin-right: 10px;
}

.btn-cta:hover {
    background: #c9a227;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

/* ================ FOOTER ================ */
footer {
    background: var(--dark-color);
    color: white;
    padding: 6rem 5% 3rem;
    position: relative;
}

.footer-wave {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23161a1d" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23161a1d" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23161a1d"/></svg>') no-repeat;
    background-size: cover;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 15px;
    font-weight: 700;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: var(--gold-color);
    bottom: 0;
    left: 0;
    border-radius: 3px;
}

.footer-column p {
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    font-size: 1.1rem;
}

.social-links a:hover {
    background: var(--gold-color);
    color: var(--dark-color);
    transform: translateY(-5px);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.footer-links a i {
    margin-right: 10px;
    color: var(--gold-color);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-color);
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: scale(1.2);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info i {
    color: var(--gold-color);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-info div {
    flex: 1;
}

.contact-info h4 {
    margin: 0 0 5px 0;
    font-size: 1rem;
    color: white;
    font-weight: 600;
}

.contact-info p, 
.contact-info a {
    margin: 0;
    color: #aaa;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.contact-info a:hover {
    color: var(--gold-color);
}

.copyright {
    text-align: center;
    padding-top: 3rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #777;
    font-size: 0.9rem;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-color);
    color: var(--dark-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background: #c9a227;
}

/* ================ ANIMATIONS ================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from { 
        opacity: 0;
        transform: translateY(30px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-20px) translateX(-50%); }
    60% { transform: translateY(-10px) translateX(-50%); }
}

.fade-in {
    opacity: 0;
}

/* ================ PREMIUM ELEMENTS ================ */
/* Particle Background */
.particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -2;
    pointer-events: none;
}

/* Micro Interactions */
.hover-scale {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}
.hover-scale:hover {
    transform: scale(1.03) !important;
}

/* Animated Underline */
.underline-animation {
    position: relative;
    display: inline-block;
}
.underline-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold-color);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.4s ease-out;
}
.underline-animation:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/* Floating Elements */
.floating {
    animation: floating 6s ease-in-out infinite !important;
}
@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Glow Effect */
.glow-on-hover {
    position: relative;
    z-index: 1;
}
.glow-on-hover::before {
    content: '';
    background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 400%;
    z-index: -1;
    filter: blur(5px);
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    animation: glowing 20s linear infinite;
    opacity: 0;
    transition: opacity .3s ease-in-out;
    border-radius: 50px;
}
.glow-on-hover:hover::before {
    opacity: 0.7;
}
@keyframes glowing {
    0% { background-position: 0 0; }
    50% { background-position: 400% 0; }
    100% { background-position: 0 0; }
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(90deg, var(--primary-color), var(--gold-color));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--gold-color);
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

/* Neumorphism Effect */
.neumorphism-card {
    border-radius: 15px;
    background: #f5f3f4;
    box-shadow:  8px 8px 16px #d9d7d8,
                -8px -8px 16px #ffffff;
}

/* Text Stroke Effect */
.text-stroke {
    -webkit-text-stroke: 1px var(--gold-color);
    color: transparent;
}

/* Gradient Border */
.gradient-border {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-color), var(--gold-color));
    z-index: -1;
    border-radius: 16px;
}

/* Hover Tilt Effect */
.hover-tilt {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hover-tilt:hover {
    transform: rotateY(10deg) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Shine Effect */
.shine-effect {
    position: relative;
    overflow: hidden;
}

.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.shine-effect:hover::after {
    left: 100%;
}

/* Animated Gradient Background */
.animated-gradient {
    background: linear-gradient(-45deg, #161a1d, #d62828, #ba181b, #d4af37);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Liquid Fill Effect */
.liquid-fill {
    position: relative;
    overflow: hidden;
}

.liquid-fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-color);
    clip-path: circle(0% at 50% 50%);
    transition: clip-path 0.8s ease;
    z-index: -1;
}

.liquid-fill:hover::before {
    clip-path: circle(100% at 50% 50%);
}

.liquid-fill:hover {
    color: var(--dark-color);
}

/* Floating Elements */
.floating-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-element {
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    filter: blur(2px);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-50px) translateX(10px); }
    50% { transform: translateY(0) translateX(20px); }
    75% { transform: translateY(-30px) translateX(-10px); }
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
}

.hero-shapes .shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gold-color);
    top: 20%;
    left: 10%;
    animation: float 15s ease-in-out infinite;
}

.hero-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background: var(--primary-color);
    bottom: 10%;
    right: 10%;
    animation: float 18s ease-in-out infinite reverse;
}

.hero-shapes .shape-3 {
    width: 200px;
    height: 200px;
    background: var(--secondary-color);
    top: 50%;
    right: 20%;
    animation: float 12s ease-in-out infinite alternate;
}

/* Dynamic Card Effect */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: calc(var(--y, 0) - 100px);
    left: calc(var(--x, 0) - 100px);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover::after {
    opacity: 1;
}

/* Text Scramble Effect */
.dud {
    color: rgba(255,255,255,0.6);
}

/* ================ RESPONSIVE STYLES ================ */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-image {
        margin-bottom: 30px;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    /* Header Mobile Styles */
    header {
        padding: 1rem 5% !important;
    }
    
    .logo img {
        height: 40px;
        margin-right: 10px;
    }
    
    .logo-text h1 {
        font-size: 1.3rem;
    }
    
    .logo-text p {
        font-size: 0.6rem;
        letter-spacing: 1px;
    }
    
    /* Mobile Menu */
    #main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--dark-color);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 30px 30px;
        transition: all 0.5s ease;
        z-index: 999;
        margin: 0;
        box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2);
    }
    
    #main-nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        margin: 10px 0;
        width: 100%;
        text-align: left;
    }
    
    .nav-link {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 1rem;
        padding: 10px 15px;
        display: block;
        border-radius: 5px;
    }
    
    .nav-link:hover {
        background: rgba(255, 255, 255, 0.1) !important;
    }
    
    .mobile-menu-btn {
        display: block !important;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 600px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem !important;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 1rem !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }
    
    /* About Section Mobile */
    .section {
        padding: 4rem 5%;
    }
    
    .section-title h2 {
        font-size: 1.8rem !important;
    }
    
    .section-title p {
        font-size: 1rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .stats {
        gap: 15px;
    }
    
    .stat-item {
        min-width: calc(50% - 15px);
    }
    
    /* Services Section Mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* CTA Section Mobile */
    .cta h2 {
        font-size: 1.8rem;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .btn-cta {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    /* Footer Mobile */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-column h3 {
        font-size: 1.3rem;
    }
    
    .copyright {
        padding-top: 2rem;
        margin-top: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem !important;
    }
    
    .stat-item {
        min-width: 100%;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 90px;
        right: 20px;
    }
}

/* Volume control styles */
.volume-control {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.volume-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffa600, #ff9100);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    outline: none;
}

.volume-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.volume-icon {
    width: 24px;
    height: 24px;
    fill: rgb(0, 0, 0);
    transition: all 0.3s ease;
}

.volume-slider {
    width: 56px;
    height: 8px;
    -webkit-appearance: none;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    outline: none;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: all 0.3s ease;
}

.volume-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    cursor: pointer;
}

.volume-control:hover .volume-slider {
    opacity: 1;
    transform: scaleY(1);
}

/* Animation for volume icon when muted */
.muted #volumePath {
    animation: muteAnimation 0.3s ease;
}

@keyframes muteAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(0.8); }
    100% { transform: scale(1); }
}