@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  padding: 0px;
  margin: 0px;
  font-family: "Poppins", sans-serif !important;
}
.g-all-btn{
  margin: 0px auto 20px auto;
  display: block;
  border: none;
  background-color: transparent;
}
.g-all-btn a{
  background-color: #ffb013;
  color: #000;
  padding: 10px 50px;
  border-radius: 3px;
  text-decoration: none;
  font-size: 16px;
}
html {
  scroll-behavior: smooth;
}

.hero h1 {
  font-size: 30px;
  font-weight: 800;
}

header {
  background-color: rgb(22, 22, 22);
  color: white;
  padding: 15px 20px;
  display: flex !important;
  justify-content: space-between;
  align-items: center;
}

.logo img{
    height: 40px;
}

nav {
  display: flex !important;
  gap: 50px !important;
}

nav a {
  color: rgb(255, 255, 255) !important;
  text-decoration: none !important;
  font-weight: 500 !important;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  width: 25px;
  height: 20px;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Cross animation */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}


@media (max-width: 768px) {
  nav {
    position: absolute;
    top: 60px;
    right: 0;
    left: 0px;
    background-color: #000000;
    flex-direction: column;
    width: 100%;
    display: none !important;
    gap: 30px;
    padding: 40px;
  }

  nav.active {
    display: flex !important;
  }

  .menu-toggle {
    display: flex;
  }

  .logo {
    font-size: 22px;
    font-weight: 600;
  }
}

/* hero sec */

#hero {
  height: 700px;
  display: grid;
  place-items: center;
  text-align: center;
  background: linear-gradient(rgba(0, 0, 0, 0.733), rgba(0, 0, 0, 0.746)),
    /* black overlay */
    url('../media/portrait-bearded-man-with-light-circle-around-head.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#hero h4 {
  font-size: 18px;
  color: #000;
  padding: 4px 30px;
  border-radius: 40px;
  background-color: #ffb013;
  width: fit-content;
  text-align: center;
  margin: 0px auto;
}

#hero h1 {
  font-size: 80px;
  color: #fff;
  font-weight: 700;
  margin: 20px 0px 20px 0px;
}

#hero p {
  color: #8d8d8d;
  font-size: 14px;
  max-width: 1100px;
  margin: 10px auto;
  text-align: center;
}

.about-rs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
  max-width: 1320px;
  margin: 30px auto;
}

.about-rs h4 {
  color: #000000;
  font-size: 20px;
  margin: 0px 0px 20px 0px;
  font-weight: 600;
}

.about-rs p {
  font-size: 14px;
  color: #393939;
  margin: 25px 0px;
  text-align: justify;
}

.about-rs a {
  background-color: #000000;
  color: #ffffff;
  padding: 7px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
}

.about-rs img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}


.rs-service-inner {
  max-width: 1320px;
  margin: 60px auto 20px auto;
}

.rs-service-inner h4 {
  color: #ffb013;
  font-size: 35px;
  margin: 0px 0px 0px 0px;
  font-weight: 600;
  text-align: center;
}

.rs-service-inner p {
  font-size: 14px;
  color: #393939;
  margin: 10px auto;
  text-align: center;
  max-width: 1000px;
}

.rs-ser-list-sec {
  /* background: #000;  */
  padding: 10px 20px;
}

.ser-list {
  max-width: 1300px;
  margin: 20px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 25px;
}

.ser-img img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.ser-card {
  background: #ffffff;
  border: 4px solid #ffb013;
  padding: 5px;
  border-radius: 12px;
  text-align: center;
  color: #fff;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.ser-card:hover {
  transform: translateY(-8px);
  border-color: #555;
}

.ser-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.ser-card h3 {
  font-size: 20px;
  margin: 0px;
  color: #000;
  font-weight: 600;
}

.ser-card p {
  font-size: 14px;
  color: #8d8d8d;
  margin: 5px 0px 10px 0;
  line-height: 1.6;
}

.ser-btn {
  display: inline-block;
  padding: 7px 30px;


  color: #fff;
  font-size: 13px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
  margin-bottom: 10px;

  background: #D4AF37;

}

.ser-btn:hover {
  background: #ffffff;
  color: #000;
}

.cinematic-film {
  height: 500px;
  background-color: #000;
  margin: 0px auto;
  padding: 20px 10px;
}

.cinematic-film h2 {
  color: #ffb013;
  margin: 0px auto 20px auto;
  text-align: center;
  font-size: 35px;
  font-weight: 600;
}


.heading {
  text-align: center;
  color: #454343;
  font-size: 30px;
  font-weight: 700;
  position: relative;
  margin-bottom: 70px;
  text-transform: uppercase;
  z-index: 999;
}

.white-heading {
  color: #ffffff;
}

.heading:after {
  content: ' ';
  position: absolute;
  top: 100%;
  left: 50%;
  height: 40px;
  width: 180px;
  border-radius: 4px;
  transform: translateX(-50%);
  background: url(img/heading-line.png);
  background-repeat: no-repeat;
  background-position: center;
}

.white-heading:after {
  background: url(https://i.ibb.co/d7tSD1R/heading-line-white.png);
  background-repeat: no-repeat;
  background-position: center;
}

.heading span {
  font-size: 18px;
  display: block;
  font-weight: 500;
}

.white-heading span {
  color: #ffffff;
}

/*-----Testimonial-------*/

.testimonial:after {
  position: absolute;
  top: -0 !important;
  left: 0;
  content: " ";
  background: url(img/testimonial.bg-top.png);
  background-size: 100% 100px;
  width: 100%;
  height: 100px;
  float: left;
  z-index: 99;
}

.testimonial {
  min-height: 375px;
  position: relative;
  background: url(https://i.ibb.co/PTJDkgb/testimonials.jpg);
  padding-top: 50px;
  padding-bottom: 50px;
  background-position: center;
  background-size: cover;
}

#testimonial4 .carousel-inner:hover {
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

#testimonial4 .carousel-inner:active {
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

#testimonial4 .carousel-inner .item {
  overflow: hidden;
}

.testimonial4_indicators .carousel-indicators {
  left: 0;
  margin: 0;
  width: 100%;
  font-size: 0;
  height: 20px;
  bottom: 15px;
  padding: 0 5px;
  cursor: e-resize;
  overflow-x: auto;
  overflow-y: hidden;
  position: absolute;
  text-align: center;
  white-space: nowrap;
}

.testimonial4_indicators .carousel-indicators li {
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  text-indent: 0;
  margin: 2px 3px;
  cursor: pointer;
  display: inline-block;
  background: #ffffff;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators .active {
  padding: 0;
  width: 14px;
  height: 14px;
  border: none;
  margin: 2px 3px;
  background-color: #9dd3af;
  -webkit-border-radius: 100%;
  border-radius: 100%;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar {
  height: 3px;
}

.testimonial4_indicators .carousel-indicators::-webkit-scrollbar-thumb {
  background: #eeeeee;
  -webkit-border-radius: 0;
  border-radius: 0;
}

.testimonial4_control_button .carousel-control {
  top: 175px;
  opacity: 1;
  width: 40px;
  bottom: auto;
  height: 40px;
  font-size: 10px;
  cursor: pointer;
  font-weight: 700;
  overflow: hidden;
  line-height: 38px;
  text-shadow: none;
  text-align: center;
  position: absolute;
  background: transparent;
  border: 2px solid #ffffff;
  text-transform: uppercase;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
  transition: all 0.6s cubic-bezier(0.3, 1, 0, 1);
}

.testimonial4_control_button .carousel-control.left {
  left: 7%;
  top: 50%;
  right: auto;
}

.testimonial4_control_button .carousel-control.right {
  right: 7%;
  top: 50%;
  left: auto;
}

.testimonial4_control_button .carousel-control.left:hover,
.testimonial4_control_button .carousel-control.right:hover {
  color: #000;
  background: #fff;
  border: 2px solid #fff;
}

.testimonial4_header {
  top: 0;
  left: 0;
  bottom: 0;
  width: 550px;
  display: block;
  margin: 30px auto;
  text-align: center;
  position: relative;
}

.testimonial4_header h4 {
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  position: relative;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.testimonial4_slide {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 70%;
  margin: auto;
  padding: 20px;
  position: relative;
  text-align: center;
}

.testimonial4_slide img {
  top: 0;
  left: 0;
  right: 0;
  width: 136px;
  height: 136px;
  margin: auto;
  display: block;
  color: #f2f2f2;
  font-size: 18px;
  line-height: 46px;
  text-align: center;
  position: relative;
  border-radius: 50%;
  box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -moz-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -o-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
  -webkit-box-shadow: -6px 6px 6px rgba(0, 0, 0, 0.23);
}

.testimonial4_slide p {
  color: #ffffff;
  font-size: 20px;
  line-height: 1.4;
  margin: 40px 0 20px 0;
}

.testimonial4_slide h4 {
  color: #ffffff;
  font-size: 22px;
}

.testimonial .carousel {
  padding-bottom: 50px;
}

.testimonial .carousel-control-next-icon,
.testimonial .carousel-control-prev-icon {
  width: 35px;
  height: 35px;
}

/* ------testimonial  close-------*/


.mansory-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 30px auto;
  max-width: 1320px;
}



.mansory-gallery .column img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.gallery-title {
  margin: 10px auto;
  text-align: center;
}

.gallery-title h2 {
  color: #000000;
  margin: 20px auto 5px auto;
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

.gallery-title p {
  color: #393939;
  font-size: 14px;
  margin: 5px 0px;
}

footer {

  background: #000;
  width: 100%;
  position: relative;

}

footer::before {
  content: '';
  position: absolute;
  left: 0;
  top: 100px;
  height: 1px;
  width: 100%;
  background: #000;
}

footer p {
  color: #8d8d8d;
  font-size: 14px;
}

footer img {
  height: 50px !important;
}

footer .content {
  max-width: 1250px;
  margin: auto;
  padding: 30px 40px 40px 40px;
}

footer .content .top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}

.content .top .logo-details {
  color: #fff;
  font-size: 30px;
}

.content .top .media-icons {
  display: flex;
}

.content .top .media-icons a {
  height: 40px;
  width: 40px;
  margin: 0 8px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  font-size: 22px;
  text-decoration: none;
  transition: all 0.4s ease;
}

.top .media-icons a:nth-child(1) {
  background: #4267B2;
}

.top .media-icons a:nth-child(1):hover {
  color: #4267B2;
  background: #fff;
}

.top .media-icons a:nth-child(2) {
  background: #1DA1F2;
}

.top .media-icons a:nth-child(2):hover {
  color: #1DA1F2;
  background: #fff;
}

.top .media-icons a:nth-child(3) {
  background: #30e153;
}

.top .media-icons a:nth-child(3):hover {
  color: #E1306C;
  background: #fff;
}

.top .media-icons a:nth-child(4) {
  background: #0077B5;
}

.top .media-icons a:nth-child(4) {
  background: #FF0000;
}

.top .media-icons a:nth-child(4):hover {
  color: #FF0000;
  background: #fff;
}

footer .content .link-boxes {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

footer .content .link-boxes .box {
  width: calc(100% / 5 - 10px);
}

.content .link-boxes .box .link_name {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  position: relative;
}

.link-boxes .box .link_name::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 35px;
  background: #fff;
}

.content .link-boxes .box li {
  margin: 6px 0;
  list-style: none;
}

.content .link-boxes .box li a {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  opacity: 0.8;
  transition: all 0.4s ease
}

.content .link-boxes .box li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.content .link-boxes .input-box {
  margin-right: 55px;
}

.link-boxes .input-box input {
  height: 40px;
  width: calc(100% + 55px);
  outline: none;
  border: 2px solid #AFAFB6;
  background: #140B5C;
  border-radius: 4px;
  padding: 0 15px;
  font-size: 15px;
  color: #fff;
  margin-top: 5px;
}

.link-boxes .input-box input::placeholder {
  color: #AFAFB6;
  font-size: 16px;
}

.link-boxes .input-box input[type="button"] {
  background: #fff;
  color: #140B5C;
  border: none;
  font-size: 18px;
  font-weight: 500;
  margin: 4px 0;
  opacity: 0.8;
  cursor: pointer;
  transition: all 0.4s ease;
}

.input-box input[type="button"]:hover {
  opacity: 1;
}

footer .bottom-details {
  width: 100%;
  background: #2c303a;
}

footer .bottom-details .bottom_text {
  max-width: 1250px;
  margin: auto;
  padding: 20px 10px;
  display: flex;
  justify-content: space-between;
}

.bottom-details .bottom_text span,
.bottom-details .bottom_text a {
  font-size: 14px;
  font-weight: 300;
  color: #fff;
  opacity: 0.8;
  text-decoration: none;
}

.bottom-details .bottom_text a:hover {
  opacity: 1;
  text-decoration: underline;
}

.bottom-details .bottom_text a {
  margin-right: 10px;
}

@media (max-width: 900px) {
  footer .content .link-boxes {
    flex-wrap: wrap;
  }

  footer .content .link-boxes .input-box {
    width: 40%;
    margin-top: 10px;
  }
}

@media (max-width: 700px) {
  footer {
    position: relative;
  }

  .content .top .logo-details {
    font-size: 26px;
  }

  .content .top .media-icons a {
    height: 35px;
    width: 35px;
    font-size: 20px;
    /* line-height: 35px; */
    display: grid;
    place-items: center;
    text-decoration: none;
  }

  footer .content .link-boxes .box {
    width: calc(100% / 3 - 10px);
  }

  footer .content .link-boxes .input-box {
    width: 60%;
  }

  .bottom-details .bottom_text span,
  .bottom-details .bottom_text a {
    font-size: 12px;
  }

  .about-rs {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    padding: 10px;
  }
}

@media (max-width: 520px) {
  #hero h1 {
    font-size: 35px;
    color: #fff;
    font-weight: 700;
    margin: 20px 0px 20px 0px;
    padding: 0px 10px;
  }

  .rs-service-inner {
    max-width: 1320px;
    margin: 20px auto 20px auto;
    padding: 0px 10px;
  }

  .testimonial4_slide {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: fit-content;
    max-width: 400px;
    margin: auto;
    padding: 20px 10px;
    position: relative;
    text-align: center;
  }

  .testimonial4_slide p {
    color: #ffffff;
    font-size: 14px;
    line-height: 1.4;
    margin: 40px 0 20px 0;
  }

  .testimonial4_slide h4 {
    color: #ffffff;
    font-size: 20px;
    margin: 5px 0px;
  }

  footer::before {
    top: 145px;
  }

  footer .content .top {
    flex-direction: column;
  }

  .content .top .media-icons {
    margin-top: 16px;
  }
  footer ul{
    padding: 0px !important;
  }

  footer .content .link-boxes .box {
    width: 100% !important;
  }

  footer .content .link-boxes .input-box {
    width: 100%;
  }

  footer .content {
    max-width: 1250px;
    margin: auto;
    padding: 30px 10px 40px 10px;
  }

  .rs-ser-list-sec {

    padding: 0px 0px !important;
  }

  .mansory-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 30px auto;
    max-width: 1320px;
    padding: 10px;
  }
}


@media (max-width: 480px) {
  .rs-whatsapp-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
    right: 15px;
    bottom: 15px;
  }
}

.rs-whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  z-index: 9999;
  transition: all 0.25s ease;
}

.rs-whatsapp-btn:hover {
    background: #25D366;
    color: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5);
}