main {
  overflow: hidden;
}
.header-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 60px;
  border-bottom: 1px solid rgba(225, 227, 230, 0.2);
  background-color: #fff;
  /* position: absolute; */
  z-index: 999;
  width: 100%;
}

.header-top .header-top-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.header-top .header-top-inner .header-top-left {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header-top .header-top-inner .header-top-left .top-left-content {
  display: flex;
  align-items: center;
}

.header-top .header-top-inner .header-top-left .top-left-content .ct-item {
  display: flex;
}

.header-top .header-top-inner .header-top-left .top-left-content .ct-item a {
  flex: none;
  margin-right: 17px;
  font-size: 16px;
  font-weight: 600;
  padding: 3px 0px 1px 0px;
  margin-left: 5px;
}
.header-top .header-top-inner .header-top-left .top-left-content .ct-item a:hover{
  color: #dda01c;
  text-decoration: none;
}

.header-top .header-top-inner .header-top-left .top-left-content .ct-item a i {
  font-size: 20px;
  color: #000;
  margin-top: 5px;
}

.header-top .header-top-inner .header-top-left .top-left-content .ct-item i {
  font-size: 20px;
  color: #000;
  margin-top: 5px;
}

.header-top .header-top-inner .header-top-left .top-left-content .ct-item p {
  margin-bottom: 0;
  font-size: 16px;
  color: #000;
}

.header-top
  .header-top-inner
  .header-top-left
  .top-left-content
  .ct-item
  p
  label {
  font-size: 15px;
}

.header-top
  .header-top-inner
  .header-top-left
  .top-left-content
  .ct-item:last-child {
  margin-left: 50px;
  z-index: 9999;
}
.header img {
  width: 82px;
  border-radius: 66px;
  margin-top: 5px;
  height: 81px;
  margin-left: 32px;
  /* padding: 2px; */
  padding-top: 0px;
  margin-bottom: -12px;
}

.header-top .header-top-inner .header-top-right {
  display: flex;
  align-items: center;
}

.header-top .header-top-inner .header-top-right .ct-time p {
  margin-bottom: 0;
  font-size: 15px;
  color: #000;
}

.header-top .header-top-inner .header-top-right .top-right-button {
  margin-left: 30px;
}

.header {
  /* background: transparent;
  position: absolute;
  top: 60px; */
  z-index: 9999;
  width: 100%;
}

 .mobilenavbar {
  display: none;
} 


 .toggle-btn {
  display: none;
  cursor: pointer;
}

.toggle-btn span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #dda01c;
} 

.sticky-header {
  position: sticky;
  top: -1px;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  width: 100%;
  background-color: #fff;
} 

.navbar {
  display: flex;
  justify-content: center;
}

.navbar .nav .actives{
  color: goldenrod;
}

.navbar .nav li a {
  color: #000;
  font-size: 15px;
  font-weight: 700;
  padding: 0px 25px;
  text-decoration: none;
}


.navbar .nav li a:hover{
  color: goldenrod;
}


.social-icons a i {
  color: #000;
  font-size: 15px;
}
.navbar .nav li a {
  color: #000;
  font-size: 18px;
  font-weight: 700;
  padding: 0px 25px;
  text-decoration: none;
}



.background-section {
  background-image: url('../img/background.jpg');
  background-size: cover;
  background-attachment: fixed;
  background-position: center;
  padding: 50px 0;
  color: rgb(255, 255, 255);
}

h2 {
  color: #d4af37; /* Gold color */
}

.lead {
  color: #020202;
}

.img-fluid {
  border: 1px solid #d4af37;
  border-radius: 10px;
  width: 72%;
}

.background-section p{
color: #000;  
padding: 12px 0;
font-size: 18px;
line-height: 32px;

}
.services-section {
  background-color: #ffffff;
  padding: 60px 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
}

.services-section h2 {
  font-size: 36px;
  font-weight: bold;
  color: #d4af37;
}

.service-item {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.image-box {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  transition: transform 0.5s ease;
  border-radius: 15px;
}

.service-item:hover .image-box img {
  transform: scale(1.2);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
}

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

.text {
  border: 2px solid #d4af37;
  padding: 3px;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  text-align: center;
}

.text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 2px solid #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: transform 0.3s ease, opacity 0.3s ease;
  border-radius: 15px;
}

.service-item:hover .text::before {
  opacity: 1;
  transform: scale(1);
}
.our_gallery {
  padding: 42px 0px;
  text-align: center;
}
.our_gallery a img {
  height: 200px;
  border-radius: 20px;
}
.fs {
  font-size: 36px;
  font-weight: bold;
  color: #d4af37;
}

.testimonials {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-item {
  background: linear-gradient(145deg, #e6e6e6, #ffffff);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.6s ease-in-out;
}

.testimonial-item:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.testimonial-quote {
  font-size: 32px;
  color: black;
  position: absolute;
  /* top: -30px; */
  left: 2px;
}

.testimonial-text {
  font-size: 18px;
  color: #555;
  margin: 20px 0;
}

.testimonial-info {
  margin-top: 20px;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.testimonial-info h5 {
  margin-top: 10px;
  font-weight: 600;
}

.testimonial-info p {
  color: #777;
  font-size: 14px;
}




.testimonials {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 50px 0;
}

.testimonial-item {
  background: linear-gradient(145deg, #f6f5f0, #d4af37);
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  transform-style: preserve-3d;
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.6s ease-in-out;
  width: 80%;
  max-width: 822px;
  }


  /* Services Section */
#services .card {
  border: none;
  transition: transform 0.3s ease;
}

#services .card:hover {
  transform: translateY(-10px);
}
.card-title {
  margin-bottom: 0.75rem;
  font-size: 20px;
  font-weight: bold;
  color: #d4af37;
}
.card-text{
  font-size: 12px;
  /* font-weight: bold; */
  color: #191916;
  font-weight: 400;
}
/* Services Section with Box Shadow */
#services .card {
  border: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgb(164 133 33);
  height: 400px;
}

#services .card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px #00000033; /* Enhance shadow on hover */
}

.card-img-top{
  height: 280px;
}


  .fixed-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 99999;
}

.fixed-buttons a {
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background-color: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 5px rgb(0 0 0 / 20%);
  transition: background-color 0.3s ease;
}

.fixed-buttons .call-button {
    background-color: #007BFF;
}

.fixed-buttons img {
  width: 30px;
  height: 30px;
}

.fixed-buttons a:hover {
    background-color: #33af234b;
}

.fixed-buttons .call-button:hover {
    background-color: #0056b3;
}
footer{
  padding-bottom: 30px;
}
footer h5 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

footer a {
  text-decoration: none;
}

.text-light a:hover {
  color: #ffdd57 !important;
  transition: 0.5s;
  
}


footer .form-control,
footer .form-select {
  border-radius: 0;
    border: none;
    background: #fff;
    color: #fff;
}

footer .form-control:focus,
footer .form-select:focus {
  box-shadow: none;
  border-color: #ffdd57;
}

footer button {
  width: 100%;
  border-radius: 0;
  background-color: #ffdd57;
  border: none;
  color: #333;
  font-weight: bold;
}

footer button:hover {
  background-color: #ffc107;
  color: #fff;
}


.main-heading:before {
  position: absolute;
  content: "";
  z-index: -1;
  left: 2px;
  top: 0;
  bottom: auto;
  right: 2px;
  border-width: 9px 9px 0;
  border-style: solid;
  border-color: #000;
  padding: 19px;
  z-index: 0;
}
.main-heading.heading-2 {
  font-size: 65px;
  line-height: 90px;
  letter-spacing: 12px;
  text-align: center;
}
.background-section .artist {
  font-size: 58px;
  line-height: 148px;
  letter-spacing: 11px;
  text-align: center;
 
}

.artist:before {
  position: absolute;
  content: "";
  z-index: -1;
  left: 2px;
  top: 0;
  bottom: auto;
  right: 2px;
  border-width: 9px 9px 0;
  border-style: solid;
  border-color: #d4af37;
  padding: 19px;
  z-index: 0;
}
.artist:after {
  position: absolute;
  content: "";
  z-index: -1;
  left: 2px;
  top: auto;
  bottom: 0;
  right: 2px;
  border-width: 0 9px 9px;
  border-style: solid;
  border-color:#d4af37;
  padding: 19px;
  z-index: 0;
}
.profile-section .about-heading {
  font-size: 24px;
  line-height: 26px;
  z-index: 1;
  margin: 0 0 30px;
  padding: 0 0 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  position: relative;
  color: #d4af37;

}
.text1 {
  color: #000;
  padding: 12px 0;
  font-size: 15px;
  line-height: 25px;

}

.profile-img {
  width: 100%;
    max-width: 309px;
    border: 10px solid #333;
    padding: 5px;
    margin-top: 68px;
}
.profile-section {
  margin: 50px 0;
  border: 2px solid #f6e7be;
  padding: 30px;
  border-radius: 5px;
  background-color: #fff9e1;
}
.profile-section h2 {
  margin-top: 20px;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.profile-section p {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}
.text-muted {
  color: #888;
}
.profile-section .about-heading:before {
  position: absolute;
  content: "";
  z-index: -1;
  left: 0;
  top: auto;
  bottom: 0;
  right: auto;
  width: 145px;
  height: 4px;
  background:#d4af37;
}
.count-section {
  display: flex;
  gap: 50px;
  background-color: #f6e6c1;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.count-box {
  text-align: center;
  border-right: 1px solid #000;
  padding: 10px 20px;
  flex: 1;
}

.count-box:last-child {
  border-right: none;
}

.count {
  font-size: 48px;
  font-weight: bold;
  color: #000;
}

.label {
  display: block;
  margin-top: 10px;
  font-size: 16px;
  color: #666;
}
.contact-section {
  padding: 70px 0px;
  /* background-image: url(../image/); */
  /* background-size: cover; */
  background: #e19d0a4d;
  
    
  }
  .contact-section ::after{
    background-color: #000000;
  }
  .contact-section .column-right {
    width: calc(100% - 380px);
  }
  .contact-section h3 {
    padding-bottom: 40px;
  }
  .contact-section .column-right .btn {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
  }
  textarea.form-control {
    height: auto;
    min-height: 100px;
    padding: 10px 20px;
    resize: none;
  }
  @media (max-width: 767px) {
    .contact-section {
      padding: 40px 10px;
    }
  }
  .contact-section h3 {
    padding-bottom: 40px;
    font-family: sans-serif;
  }
  .contact-section .column-left {
    width: 340px;
  }
  @media (max-width: 767px) {
    .contact-section .column-left {
      width: 100%;
    }
  }
  .contact-section .column-left .box {
    position: relative;
    padding: 10px 0px;
    padding-left: 100px;
    margin-bottom: 20px;
  }
  .contact-section .column-left .box p{
    font-size: 14px;
    text-align: justify;
    color: #060606;
    font-weight: 600;
    font-family: sans-serif;
  }
  .contact-section .column-left .box span {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 70px;
    height: 70px;
    border: solid 1px #dda01c;
    border-radius: 50%;
    line-height: 74px;
    text-align: center;
  }
  .contact-section .column-left .box span img {
    display: inline-block;
    vertical-align: middle;
  }
  .contact-section .column-left .box h6 {
    color: #000000;
    font-weight: 700;
  }

  
  
  .contact-section .column-right {
    width: calc(100% - 380px);
  }
  @media (max-width: 767px) {
    .contact-section .column-right {
      width: 100%;
      margin-top: 30px;
    }
  }
  .contact-section .column-right .btn {
    font-family: 'Poppins', sans-serif;
      font-size: 18px;
      width: 171px;
      margin-top: 14px;
      margin-bottom: 10px;
  
  }
  /*@media (max-width: 767px) {
    .contact-section .column-right .btn {
      width: 100%;
    }
  }
  */
  .contact-section .column-left .box span img {
    display: inline-block;
    vertical-align: middle; 
    width: 42px;
  
  }
  
  .form-control {
    width: 100%;
    padding: 0px 20px;
    font-size: 16px;
    height: 44px;
    outline: none;
    border-radius: 4px;
    border: solid 1px #ddd;
    font-family: 'Poppins', sans-serif;
  }
  input, textarea {
    margin-top: 5px;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 7px;
    background: rgba(255, 255, 255, 0.7);
    font-family: cursive;
    font-size: 15px;
  }
  
  .contact-section .column-left {
    width: 340px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  /* -----FAQ -----*/
  .Copyright {
    background-color: #000; 
    text-align: center;
     padding: 1px 0px; 
}
.Copyright p {
  color: #fff3f3;
  padding: 0px 0px;
  background: black;
  margin-top: 10px;
}
.Copyright p a {
  color: #d4af37;
  font-size: 15px;
}
.btn-warning:hover {
  color: white;
  transition: 0.5s;
}
.mobilenav{
  display: none;
}
.side-bar {
  background: #fd8904;
  backdrop-filter: blur(15px);
  width: 350px;
  height: 100vh;
  position: fixed;
  top: 0;
  left: -350px;
  overflow-y: auto;
  transition: 0.6s ease;
  transition-property: left;
  z-index: 99999;
}
.side-bar::-webkit-scrollbar {
  width: 0px;
}
.side-bar.active {
  left: 0;
}
.side-bar .menu {
  width: 100%;
  margin-top: 30px;
}
.side-bar .side-logo {
  background-color: #fff;
}
.side-bar .side-logo img {
  width: 200px;
  margin: 15px;
  margin-left: 70px;
}
.side-bar .menu .item {
  position: relative;
  cursor: pointer;
}
.side-bar .menu .item a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  display: block;
  padding: 5px 30px;
  line-height: 40px;
}
.side-bar .menu .item a:hover {
  background: #db4242;
  transition: 0.3s ease;
}
.side-bar .menu .item i {
  margin-right: 15px;
}
.side-bar .menu .item a .dropdown {
  position: absolute;
  right: 0;
  margin: 20px;
  transition: 0.3s ease;
}
.side-bar .menu .item .sub-menu {
  background: #262627;
  display: none;
}
.side-bar .menu .item .sub-menu a {
  padding-left: 80px;
}
.rotate {
  transform: rotate(90deg);
}
.close-btn {
  position: absolute;
  color: #000;
  font-size: 23px;
  right: 0px;
  margin: 15px;
  cursor: pointer;
}
.menu-btn {
  position: absolute;
  color: rgb(195 74 22);
  font-size: 30px;
  right: 10px;
  top: 10px;
  cursor: pointer;
  display: none;
}

#social-sidebar {
 
     margin-top: 120px;
     position: fixed;
     left: 1px;
     z-index: 999999;
}
.nav-holder:after {
  content: "";
  display: block;
  clear: both;
}
#social-sidebar li:first-child a {
  border-radius: 0px 11px 0px 0px;
}
#social-sidebar a {
  background: #dda01c;
  color: #ffffff;
  display: block;
  height: 46px;
  font-size: 15px;
  line-height: 40px;
  position: relative;
  text-align: center;
  width: 46px;
  border-radius: 0px 0 0px;
}
#social-sidebar a:hover{
  color: black;
  transition: 0.3s;
}
side-icon {
  position: fixed;
  top: 92%;
  width: 70px;
  text-align: center;
  transform: translateY(-50%);
  padding: 2px;
  border-radius: 100px;
  z-index: 99999;
  right: 20px;
  display: none;
}


.side-icon.whatsapp-logo {
  display: block;
  width: 50px;
  height: 50px;
  margin: 0 auto 10px;
}

.side-icon.contact-link {
  display: block;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
}


/* #scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  z-index: 99;
  left: 7px;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #dda01c;
  color: white;
  cursor: pointer;
  padding: 15px;
  border-radius: 10px;
}

#scrollTopBtn:hover {
  background-color: #333; 
} */