        :root {
    --primary-accent: #CD9900;
    --secondary-accent: #CD9900;
    --text-light: #f8f8f8;
    --text-muted: #a0a0a0;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: 'Teko', sans-serif;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0.5px;
    }
.site-navbar {
   

    -webkit-backdrop-filter: blur(10px); /* For Safari support */
    transition: background 0.3s ease;
    position: relative; /* Keep navbar on top */
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.site-navbar .navbar-brand {
    color: #fff !important;
    font-weight: 800;
    font-size: 1.8rem;
}

.site-navbar .navbar-brand span {
    color: var(--primary-accent);
}

.site-navbar .nav-link {
    color: #fff !important;
    margin-left: 20px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-navbar .nav-link:hover,
.site-navbar .nav-link.active {
    color: var(--primary-accent) !important;
}

.navbar-nav {
    font-size: 25px;
}

.navbar-logo {
    height: 150px;
    width: auto;
}

    /* Hero Slider */
    .hero-slider {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    }

    .hero-slider .swiper {
    width: 100%;
    height: 100%;
    }

    .hero-slider .swiper-slide {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 50px;
    font-weight: bold;
    color: #fff;
    background-size: cover;
    background-position: center;
    position: relative;
    }

    /* Video */
    .hero-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    }

    /* Dark overlay */
    .hero-slider .swiper-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    }

    /* Hero text */
    .hero-slider .swiper-slide h1 {
    position: absolute;
    top: 40%;
    left: 10%;
    transform: translateY(-50%);
    font-size: 90px;
    z-index: 2;
    animation: fadeUp 1s ease forwards;
    }

    .swiper-slide span.hunqie {
    color: #cd9900;
    }

    /* Animation */
    @keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
    }

    /* Swiper controls */
    .swiper-button-next,
    .swiper-button-prev {
    color: #fff;
    }

    .swiper-pagination {
    color: #fff;
    font-weight: bold;
    }

    /* Navbar text size */
    .navbar-nav {
    font-size: 25px;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
    .hero-slider .swiper-slide h1 {
        font-size: 50px;
        top: 30%;
        left: 10%;
        transform: translateY(-50%);
    }

    .navbar-nav {
        font-size: 20px;
    }
    }

    @media screen and (max-width: 991.98px) {
    .site-navbar {
        background-color: #000 !important;
    }
    .site-navbar .navbar-collapse {
        background-color: #000;
    }
    }

    /* Smooth transitions */
    .site-navbar,
    .navbar-collapse {
    transition: background 0.3s ease;
    }



 :root {
    --primary-bg: #0a0a0a;
    --secondary-bg: #1a1a1a;
    --primary-accent: #CD9900;
    --secondary-accent: #CD9900;
    --text-light: #f8f8f8;
    --text-muted: #a0a0a0;
    --card-bg: #151515;
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--primary-bg);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.studio-section-padding {
    padding: 100px 0;
}

.studio-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.studio-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.studio-col-md-2, .studio-col-md-3, .studio-col-md-4, .studio-col-md-7, .studio-col-md-12 {
    padding: 0 15px;
    position: relative;
}

.studio-col-md-2 { flex: 0 0 16.666667%; max-width: 16.666667%; }
.studio-col-md-3 { flex: 0 0 25%; max-width: 25%; }
.studio-col-md-4 { flex: 0 0 33.333333%; max-width: 33.333333%; }
.studio-col-md-7 { flex: 0 0 58.333333%; max-width: 58.333333%; }
.studio-col-md-12 { flex: 0 0 100%; max-width: 100%; }

.studio-mb-30 { margin-bottom: 30px; }
.studio-mb-15 { margin-bottom: 15px; }

/* Typography */
a {
    color: #CD9900;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.makeup h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-light);
    position: relative;
    display: inline-block;
}

.makeup h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-accent);
    transition: var(--transition);
}

.makeup h1:hover:after {
    width: 100%;
}

h5 {
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
}

h5 a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

h5 a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-accent);
    transition: var(--transition);
}

h5 a:hover {
    color: var(--primary-accent);
}

h5 a:hover:after {
    width: 100%;
}

p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

b {
    color: var(--text-light);
    font-weight: 600;
}

/* Line decoration */
.studio-separator {
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-accent), transparent);
}

/* Services Grid */
.studio-services {
    margin-top: 50px;
}

.studio-item {
    background: var(--card-bg);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    height: 100%;
}

.studio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.3);
}

.studio-position-re {
    position: relative;
    overflow: hidden;
}

.studio-position-re img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition);
}

.studio-item:hover .studio-position-re img {
    transform: scale(1.1);
    filter: brightness(1.1) contrast(1.05);
}

.studio-position-re:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.7));
    opacity: 0;
    transition: var(--transition);
}

.studio-item:hover .studio-position-re:after {
    opacity: 1;
}

.studio-con {
    padding: 20px;
}

/* Icon Services */
.studio-specialized-services .studio-item {
    text-align: center;
    padding: 40px 30px;
    background: var(--secondary-bg);
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.studio-specialized-services .studio-item:hover {
    border-bottom: 3px solid var(--primary-accent);
    background: var(--card-bg);
}

.studio-icon {
    font-size: 48px;
    color: var(--primary-accent);
    margin-bottom: 20px;
    display: block;
    transition: var(--transition);
}

.studio-specialized-services .studio-item:hover .studio-icon {
    transform: scale(1.2) rotate(5deg);
    color: var(--secondary-accent);
}

.studio-underline-text {
    color: var(--primary-accent);
    text-decoration: none;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.studio-underline-text:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--primary-accent);
    transition: var(--transition);
}

.studio-underline-text:hover {
    color: var(--secondary-accent);
}

.studio-underline-text:hover:after {
    transform: translateY(3px);
    opacity: 0;
}

.studio-text-right {
    text-align: right;
}

/* Animations */
.studio-animate-box {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.studio-fadeInUp {
    transform: translateY(50px);
}

.studio-is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) !important;
}

/* Staggered animation delay */
.studio-services .studio-item:nth-child(1) { transition-delay: 0.1s; }
.studio-services .studio-item:nth-child(2) { transition-delay: 0.2s; }
.studio-services .studio-item:nth-child(3) { transition-delay: 0.3s; }
.studio-services .studio-item:nth-child(4) { transition-delay: 0.4s; }
.studio-services .studio-item:nth-child(5) { transition-delay: 0.5s; }
.studio-services .studio-item:nth-child(6) { transition-delay: 0.6s; }

.studio-specialized-services .studio-item:nth-child(1) { transition-delay: 0.1s; }
.studio-specialized-services .studio-item:nth-child(2) { transition-delay: 0.2s; }
.studio-specialized-services .studio-item:nth-child(3) { transition-delay: 0.3s; }
.studio-specialized-services .studio-item:nth-child(4) { transition-delay: 0.4s; }

/* Glow effects */
.studio-glow-effect:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
    background: transparent;
    border-radius: 10px;
    opacity: 0;
    transition: var(--transition);
}

.studio-item:hover .studio-glow-effect:before {
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Responsive */
@media (max-width: 992px) {
    .studio-col-md-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }
    .makeup h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .studio-col-md-3, .studio-col-md-4, .studio-col-md-7 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .studio-section-padding {
        padding: 60px 0;
    }
    .makeup h1 {
        font-size: 32px;
    }
}

.makeup h4{
    color: #CD9900;
    
}



    body {
      background: #111;
      color: #fff;
      font-family: 'Teko', sans-serif;
    }

        .testimonial-section {
      background: url("https://i.pinimg.com/736x/c1/ec/3a/c1ec3a06358eaa7d1249b570ccef3829.jpg") center/cover no-repeat fixed;
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px 15px;
      animation: bgZoom 30s ease-in-out infinite alternate;
    }

    /* Background zoom animation */
    @keyframes bgZoom {
      0% {
        background-size: 100%;
      }
      100% {
        background-size: 110%;
      }
    }

    /* Dark overlay */
    .testimonial-section::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(0, 0, 0, 0.6); 
      z-index: 1;
      border-radius: 15px;
    }

    /* Container Styling */
    .testimonial-container {
      position: relative;
      z-index: 2;
      max-width: 1200px;
    }

    .testimonial-container h2 {
      font-size: 2.8rem;
      margin-bottom: 50px;
      letter-spacing: 1px;
      color: #fff;
    }

    .carousel-item {
      padding: 0 15px;
    }

    .testimonial-card {
      background: rgba(255, 255, 255, 0.05);
      border-radius: 15px;
      padding: 30px 25px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
      transition: transform 0.5s ease, border-color 0.3s ease, box-shadow 0.5s ease;
    }

    .testimonial-card:hover {
      transform: translateY(-15px);
      border-bottom: 3px solid #cd9900;
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
    }

    .testimonial-text {
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 25px;
      font-style: italic;
      color: #fff;
    }

    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 15px;
    }

    .testimonial-author img {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid #cd9900;
    }

    .author-name {
      font-weight: 700;
      font-size: 1rem;
      color: #fff;
    }

    .author-role {
      font-size: 0.85rem;
      color: #cd9900;
      margin-top: 2px;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: #cd9900;
      border-radius: 50%;
      padding: 10px;
    }

    @media (max-width: 991px) {
      .carousel-item .col-md-4 {
        margin-bottom: 20px;
      }
    }

    /* ===== Contact Section ===== */
    .contact-section h2 { letter-spacing: 1px; }
    .contact-section .contact-form input,
    .contact-section .contact-form textarea {
      border-radius: 10px; padding: 12px 15px; transition: all 0.3s ease;
    }
    .contact-section .contact-form input:focus,
    .contact-section .contact-form textarea:focus {
      outline: none; box-shadow: 0 0 10px #cd9900; background: rgba(255,255,255,0.15);
    }
    .contact-section .btn-warning { background-color: #cd9900; border: none; transition: all 0.3s ease; }
    .contact-section .btn-warning:hover { background-color: #e6b800; }

    /* ===== Footer ===== */
    footer {
      background: #000;
      padding: 40px 0 20px;
      border-top: 2px solid rgba(255,255,255,0.1);
    }
    footer h5 { color: #cd9900; margin-bottom: 20px; }
    footer a {
      color: #bbb;
      text-decoration: none;
      transition: color 0.3s ease;
    }
    footer a:hover { color: #cd9900; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      margin-top: 20px;
      padding-top: 15px;
      text-align: center;
      font-size: 0.85rem;
      color: #777;
    }

 /* About Us Section */
        .about-us-section {
            background: var(--darker-color);
            position: relative;
            padding: 100px 0;
            overflow: hidden;
        }
        
        .about-us-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            opacity: 0.1;
            animation: pulse 8s infinite ease-in-out;
        }
        
        .about-us-section::after {
            content: '';
            position: absolute;
            bottom: -150px;
            left: -150px;
            width: 400px;
            height: 400px;
            border: 2px solid var(--primary-color);
            border-radius: 50%;
            opacity: 0.1;
            animation: pulse 10s infinite ease-in-out;
        }
        
        .about-img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
            transform: perspective(1000px) rotateY(5deg);
            transition: all 0.5s ease;
        }
        
        .about-img-wrapper:hover {
            transform: perspective(1000px) rotateY(0deg);
            box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
        }
        
        .about-img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }
        
        .about-img-wrapper:hover .about-img {
            transform: scale(1.05);
        }
        
        .about-us-section h6 {
            letter-spacing: 2px;
            color: var(--primary-color);
            font-weight: 500;
            position: relative;
            display: inline-block;
            padding-left: 15px;
        }
        
        .about-us-section h6::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background-color: var(--primary-color);
            border-radius: 50%;
        }
        
        .about-us-section h2 {
            font-size: 2.8rem;
            line-height: 1.3;
            margin-bottom: 20px;
            position: relative;
            text-transform: uppercase;
        }
        
        .about-us-section h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 3px;
            background-color: var(--primary-color);
        }
        
        .about-us-section p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* Stats */
        .stats-container {
            display: flex;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .stat-card {
            background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
            border: 1px solid rgba(255, 215, 0, 0.1);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            flex: 1;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .stat-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            z-index: -1;
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), transparent);
            border-radius: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        .stat-card:hover::before {
            opacity: 1;
        }
        
        .stat-card h3 {
            font-size: 2.5rem;
            margin-bottom: 5px;
            color: var(--primary-color);
        }
        
        .stat-card small {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }
        
        /* Button */
        .btn-warning {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            border: none;
            color: var(--darker-color);
            font-weight: 600;
            padding: 15px 30px;
            border-radius: 30px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .btn-warning::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--secondary-color), var(--primary-color));
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .btn-warning:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 215, 0, 0.3);
        }
        
        .btn-warning:hover::before {
            left: 0;
        }
        
        /* Animation Keyframes */
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.1;
            }
            50% {
                transform: scale(1.1);
                opacity: 0.15;
            }
            100% {
                transform: scale(1);
                opacity: 0.1;
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .about-us-section h2 {
                font-size: 2.2rem;
            }
            
            .stats-container {
                flex-wrap: wrap;
                justify-content: center;
            }
            
            .stat-card {
                flex: 0 0 calc(50% - 15px);
                margin-bottom: 15px;
            }
        }
        
        @media (max-width: 768px) {
            .about-us-section h2 {
                font-size: 1.8rem;
            }
            
            .stat-card {
                flex: 0 0 100%;
            }
            
            .about-img-wrapper {
                transform: perspective(1000px) rotateY(0deg);
                margin-bottom: 30px;
            }
        }


/*Branding Section*/
  .branding-section {
      background-color: #ffffff;
      padding: 50px 0;
    }
    .carousel-item img {
      max-height: 120px;
      object-fit: contain;
      margin: auto;
    }