 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {
   font-family: 'Poppins', sans-serif;
   background: #0f0f0f;
   color: #fff;
   overflow-x: hidden;
 }

 html {
   scroll-behavior: smooth;
 }

 /* Navbar */
 .navbar-nav .nav-item.active .nav-link {
   color: #ffb400 !important;
 }

 .navbar {
   background: rgba(0, 0, 0, 0.8);
   backdrop-filter: blur(10px);
   padding: 15px 0;
   transition: 0.4s;
 }

 .navbar-brand {
   font-size: 28px;
   font-weight: 700;
   color: #ffb400 !important;
   letter-spacing: 2px;
 }

 .nav-link {
   color: #fff !important;
   margin-left: 20px;
   font-weight: 500;
   transition: 0.3s;
 }

 .nav-link:hover {
   color: #ffb400 !important;
 }

 @media only screen and (max-width: 414px) {
   .navbar-brand {
     font-size: 18px;
     font-weight: 700;
     color: #ffb400 !important;
     letter-spacing: 2px;
   }
 }

 @media only screen and (max-width: 414px) {
   .abt-rps {
     padding-top: 0px !important;
   }
 }

 @media only screen and (max-width: 414px) {
   .cnt-rps {
     padding-top: 0px !important;
   }
 }

 /* Hero Section */
 .hero {
   height: 100vh;
   background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.8)),
     url('https://images.unsplash.com/photo-1513364776144-60967b0f800f?auto=format&fit=crop&w=1400&q=80');
   background-size: cover;
   background-position: center;
   display: flex;
   align-items: center;
   text-align: center;
   position: relative;
 }

 .hero-content h1 {
   font-size: 70px;
   font-weight: 700;
   margin-bottom: 20px;
   animation: fadeInDown 1s ease;
 }

 .hero-content p {
   font-size: 20px;
   max-width: 700px;
   margin: auto;
   color: #ddd;
   animation: fadeInUp 1s ease;
 }

 .btn-custom {
   margin-top: 30px;
   background: #ffb400;
   color: #000;
   border-radius: 50px;
   padding: 12px 35px;
   font-weight: 600;
   transition: 0.4s;
   border: none;
 }

 .btn-custom:hover {
   background: #fff;
   transform: translateY(-3px);
   box-shadow: 0 10px 20px rgba(255, 180, 0, 0.3);
 }

 /* Section Title */
 .section-title {
   text-align: center;
   margin-bottom: 60px;
 }

 .section-title h2 {
   font-size: 42px;
   font-weight: 700;
   color: #ffb400;
   position: relative;
   display: inline-block;
 }

 .section-title h2::after {
   content: '';
   width: 80px;
   height: 4px;
   background: #ffb400;
   position: absolute;
   left: 50%;
   bottom: -15px;
   transform: translateX(-50%);
   border-radius: 10px;
 }

 /* section {
      padding: 100px 0;
    } */

 /* About */
 .about-img img {
   width: 100%;
   border-radius: 20px;
   box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
 }

 .about-text h3 {
   font-size: 36px;
   margin-bottom: 20px;
 }

 .about-text p {
   color: #bbb;
   line-height: 1.8;
 }

 /* ==========================================
        BUTTON
==========================================*/

 .artist-btn {

   position: relative;

   overflow: hidden;

   z-index: 1;
   background-color: #ffb400;

 }

 .artist-btn::before {

   content: '';

   position: absolute;

   left: -100%;

   top: 0;

   width: 100%;

   height: 100%;

   background: #111;

   transition: .5s;

   z-index: -1;

 }

 .artist-btn:hover::before {

   left: 0;

 }

 .artist-btn:hover {

   color: #fff;

 }

 /* Gallery */
 .gallery-item {
   position: relative;
   overflow: hidden;
   border-radius: 20px;
   margin-bottom: 30px;
 }

 .gallery-item img {
   width: 100%;
   transition: 0.5s;
   border-radius: 20px;
 }

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

 .gallery-overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.7);
   display: flex;
   align-items: center;
   justify-content: center;
   opacity: 0;
   transition: 0.5s;
 }

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

 .gallery-overlay h4 {
   color: #fff;
   font-size: 24px;
   font-weight: 600;
 }

 @media only screen and (max-width: 762px) {
   .glr-main {
     padding: 0px !important;
   }
 }

 /* Services */
 .service-card {
   background: #1b1b1b;
   padding: 10px 10px;
   border-radius: 20px;
   text-align: center;
   transition: 0.4s;
   height: 100%;
 }

 .service-card:hover {
   transform: translateY(-10px);
   background: #242424;
   box-shadow: 0 15px 30px rgba(255, 180, 0, 0.2);
 }

 .service-card i {
   font-size: 50px;
   color: #ffb400;
   margin-bottom: 20px;
 }

 .service-card h4 {
   margin-bottom: 15px;
   font-weight: 600;
 }

 .service-card p {
   color: #bbb;
 }

 /* Testimonials */
 .testimonial {
   background: #1c1c1c;
   padding: 40px;
   border-radius: 20px;
   text-align: center;
 }

 .testimonial img {
   width: 90px;
   height: 90px;
   border-radius: 50%;
   margin-bottom: 20px;
   object-fit: cover;
 }

 .testimonial p {
   color: #ccc;
   font-style: italic;
 }

 .testimonial h5 {
   margin-top: 20px;
   color: #ffb400;
 }

 /* Contact */
 .contact-box {
   background: #1b1b1b;
   padding: 50px;
   border-radius: 20px;
 }

 .form-control {
   background: #2b2b2b;
   border: none;
   color: #fff;
   height: 50px;
   border-radius: 10px;
 }

 textarea.form-control {
   height: 150px;
 }

 .form-control:focus {
   background: #2b2b2b;
   color: #fff;
   box-shadow: none;
   border: 1px solid #ffb400;
 }

 /* Footer */
 footer {
   background: #000;
   padding: 30px 0;
   text-align: center;
 }

 .social-icons a {
   width: 45px;
   height: 45px;
   line-height: 45px;
   display: inline-block;
   background: #1f1f1f;
   color: #fff;
   border-radius: 50%;
   margin: 0 8px;
   transition: 0.4s;
 }

 .social-icons a:hover {
   background: #ffb400;
   color: #000;
   transform: translateY(-5px);
 }

 @keyframes fadeInDown {
   from {
     opacity: 0;
     transform: translateY(-50px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @keyframes fadeInUp {
   from {
     opacity: 0;
     transform: translateY(50px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 @media(max-width: 768px) {
   .hero-content h1 {
     font-size: 42px;
   }

   .hero-content p {
     font-size: 16px;
   }

   .about-text {
     margin-top: 40px;
   }
 }

 /* Carousel */

 .carousel-item img {
   height: 730px !important;

 }


 /* About Me Css */
 .Aboutme-head {
   /* margin-top: 155px;
    text-align: center; */
 }



 /* Contact us  Css */
 .Contactus-head {
   margin-top: 155px;
   text-align: center;
 }

 /* Galary Css */
 .Galary-head {
   margin-top: 155px;
   text-align: center;
 }


 /* Awars */
 .awards-section{
    background:#f8f9fa;
}

.award-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.award-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.15);
}

.award-image{
    position:relative;
    overflow:hidden;
}

.award-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.4s;
}

.award-card:hover img{
    transform:scale(1.08);
}

.overlay{
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    transition:.3s;
}

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

.award-content{
    padding:20px;
}

.award-content h4{
    font-size:22px;
    font-weight:600;
}

.award-content p{
    color:#666;
    min-height:60px;
}