@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Space+Grotesk:wght@300..700&display=swap');

:root {
  --main-color: #EDBE18;
  --primary-color: linear-gradient(to right,
      #FFFED5 0%,
      #EDBE18 50%,
      #FFFED5 100%);
  --secondary-color: linear-gradient(160deg, #FFFFFF 30%, #EDBE18 50%, #FFFFFF 65%);
  --heading-font: "Space Grotesk", sans-serif;
  --body-font: 'IBM Plex Mono', monospace;
  --button-font: 'Inter Tight', monospace;
}

body {
  font-size: 16px;
  font-family: var(--body-font);
  font-weight: 400;
  background-color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  margin: 0;
}

.container {
  max-width: 1400px;
}

.gradient-text {
  background: var(--primary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.text-gold {
  background: var(--secondary-color);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 800;
}

.navbar {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 24px 0;
}

.navbar-brand img {
  height: auto;
}

.navbar .icon-btn {
  color: #fff;
  font-size: 20px;
  cursor: pointer;

}

.navbar .nav-btn {
  color: #fff;
  font-size: 42px;
  cursor: pointer;
  margin-left: 30px;
  border: none !important;
}

#mainMenu {
  background: #000;
}

.offcanvas .nav-link {
  color: #fff;
  font-size: 22px;
  padding: 14px 0;
}

.offcanvas .nav-link:hover {
  color: var(--main-color) !important;
}

.navbar-nav .nav-link.active {
  color: var(--main-color) !important;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--main-color) !important;
}

.hero-section {
  position: relative;
  height: 100vh;
  background: url(../img/hero-img.png) center/cover no-repeat;
  color: #fff;
  padding-top: 180px;
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
  z-index: 1;
}



.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}

.hero-title {
  font-size: 70px;
  font-weight: 800;
  line-height: 1.1;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: .3s;
  font-family: var(--button-font);
}

.hero-btn:hover {
  background: var(--primary-color);
  color: #000 !important;
  border-color: none;
}

.hero-btn:hover img {
  filter: brightness(0);
}

.about h2 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;

}

.btn-light {
  border-radius: 0;
  width: fit-content;
}

.btn-light:hover {
  background: var(--primary-color) !important;
  border-color: none;
  color: #000;
}

.services-section {
  padding: 80px 0;
  background: #000;
}

.services-section h2 {
  font-size: 50px;
  font-weight: 800;
  color: #fff;
}

.service-card {
  background: #fff;
  color: #000;
  padding: 16px;
  padding-bottom: 42px;
  height: 100%;
  position: relative;
}

.service-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;

  transition: transform .6s ease;
}

.img-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.service-card:hover img {
  transform: scale(1.05);
  transition: transform .7s ease;

}

.service-meta {
  font-size: 16px;
  margin-top: 12px;
}

.service-title {
  font-weight: 700;
  font-size: 24px;
}

/* arrow button */
.service-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 0px;
  bottom: 0px;
  width: 100%;
  height: 7%;
  background: #EDBE18;
  filter: blur(18px);
  opacity: 1;
  transition: opacity .35s ease;
  z-index: 1;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  display: none;
}

.service-card:hover::after {
  display: block;
}

.btn-wrap {
  margin-top: 160px;
}

.featured {
  position: relative;
  z-index: 1;
  top: 120px;
}

.content-wrap {
  background: var(--primary-color);
}

.content-wrap h2 {
  font-size: 50px;
  font-weight: 800;
  color: #000;
}

.content-wrap p {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  font-family: var(--button-font);
}

.stats-container {
  margin: 40px 0px;
}

.stats-box {
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  padding: 10px 12px;
}

.stats-box:first-child {
  border-left: none;
}

.stats-box h2 {
  font-weight: 600;
  font-size: 3rem;
}

.stats-box span {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-transform: lowercase;
  font-family: var(--button-font);
}

.content-wrap .btn-light:hover {
  background: transparent !important;
  border: 1px solid #000;
}

.gallery-heading {
  background: #000;
  overflow: hidden;
}

.gallery-heading .container {
  position: relative;
  z-index: 2;
}


.section-label {
  display: block;
  font-size: 18px;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 15px;
}


.main-title {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.2;
  position: relative;
  z-index: 3;
}




.bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24rem;

  font-weight: 900;
  color: rgba(255, 255, 255, 0.06);
  text-transform: capitalize;
  letter-spacing: 10px;
  z-index: 1;
  pointer-events: none;
  font-family: var(--heading-font);
}



.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.portfolio-col {
  display: grid;
  grid-template-rows: auto auto;
  gap: 10px;
}

.gallery-card {
  position: relative;
  overflow: hidden;
}

.gallery-card .img-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
}

.gallery-card .img-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  transition: transform 0.7s ease;
  object-fit: cover;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(237, 191, 24, 0) 65%,
      rgba(237, 191, 24, 1) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 1;
}

.gallery-card:hover .img-wrap::after {
  opacity: 1;
}

.portfolio-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: left;
  text-align: left;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-card:hover .portfolio-content {
  opacity: 1;
}



.video-hero {
  position: relative;
  height: 80vh;
  overflow: hidden;
  background: #000;
}

/* Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 1;
}

/* Dark overlay */
.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 2;
}

/* Content */
.video-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 80px;
  max-width: 700px;
  color: #fff;
}

.hero-tag {
  font-size: 20px;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
  display: inline-block;
}

.video-content h2 {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}



.video-content p {
  font-size: 16px;
  color: #d1d1d1;
  margin-bottom: 32px;
  max-width: 480px;
}



.newsletter-section {
  position: relative;
  padding: 200px 0;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.newsletter-box {
  max-width: 800px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 5;
}

.newsletter-box small {
  letter-spacing: 2px;
}

.newsletter-box h2 {
  font-size: 4rem;
  font-weight: 400;
  margin: 20px 0;
}

.newsletter-box h2 span {
  color: #ffcf2f;
}

.newsletter-box p {
  font-size: 15px;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  border: 1px solid #737373;
  max-width: 480px;
  margin: 0 auto;
  padding: 6px 0px;
}

body form.es_subscription_form.es_subscription_form[data-form-id="1"].wysiwyg-form {
  background-color: transparent !important;
  padding: 0px !important;
  border-radius: 0 !important;
  display: flex;
  justify-content: end;
  flex-wrap: wrap;
  position: relative;
  gap: 15px;
}

.es_spinner_image {
  height: max-content !important;
  position: relative;
  margin-top: -10px;
}

form[data-form-id="1"] .es-subscribe-btn {
  margin-top: 22px !important;
}

label.es-field-label {
  text-align: start;
}

.newsletter-form input {
  background: #000;
  color: #fff;
  padding: 5px 16px;
  width: 300px !important;
  height: 40px;
  border: none;
  outline: none;
}

.newsletter-form button {
  background: #fff;
  border: none;
  padding: 6px 24px;
  font-weight: 600;
  display: inline-block;
}

.float-img {
  position: absolute;
  width: 260px;
  overflow: hidden;
}

.float-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-top-left {
  top: 20px;
  left: 25%;
}

.img-top-right {
  top: 80px;
  right: 10%;
  width: 300px;
  box-shadow: rgba(242, 209, 78, 0.48) 6px 2px 16px 0px, rgba(242, 209, 78, 0.8) -6px -2px 16px 0px;
}

.img-bottom-left {
  bottom: 30px;
  left: 15%;
  box-shadow: rgba(242, 209, 78, 0.48) 6px 2px 16px 0px, rgba(242, 209, 78, 0.8) -6px -2px 16px 0px;

}

.img-bottom-right {
  bottom: 0;
  right: 15%;
  width: 300px;

}

.cinematic-footer {
  position: relative;
  background: #000;
  color: #fff;
  padding: 80px 0 0;
  overflow: hidden;
}

.contact-wrap {
  margin-top: 4rem;
  padding: 2rem 0;
  background: #0d0d0d;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.footer-heading {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  text-transform: uppercase;
}




.footer-cta {
  display: inline-block;
  padding: 24px;
  background: linear-gradient(to right,
      #fff1a8,
      #f1c84c,
      #fff1a8);
  color: #000;
  font-weight: 600;
  text-decoration: none;
  transition: transform .3s ease;
}

.footer-cta:hover {
  transform: translateY(-2px);
}




.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #fff;
}

.footer-links li {
  font-size: 18px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
}


.footer-brand-text {
  font-size: 27rem;
  font-weight: 800;
  letter-spacing: 6px;
  line-height: 0.7;
  text-align: center;
  background: linear-gradient(to top, #EDBE18, #FFFED5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 40px;
  user-select: none;
  opacity: 0.4;
}

/* inner page css  */
.breadcrum {
  height: 80vh;
  background: url(../img/breadcrum-bg.png) center/cover no-repeat;
  color: #fff;
  position: relative;
}

.breadcrum .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}

.breadcrum::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 1));
  z-index: 1;
}

.breadcrum h1 {
  font-size: 4rem;
  font-weight: 700;
  margin: 20px 0px;

}

.breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.portfolio-tabs-section h2 {
  font-size: 60px;
  font-weight: bold;
}

.portfolio-tabs {
  display: flex;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid #222;
}

.portfolio-tabs li {
  cursor: pointer;
  padding-bottom: 12px;
  font-size: 18px;
  letter-spacing: 1px;
  color: #fff;
  position: relative;
}

.portfolio-tabs li.active {
  color: var(--main-color);
}

.portfolio-tabs li.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background: var(--main-color);
}

.portfolio-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.portfolio-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
}


.portfolio-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;

}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: all 0.7s ease;
}

.portfolio-card:hover img {
  transform: scale(1.05);
}

.portfolio-card.big {
  height: 1020px;
}

.portfolio-card.small {
  height: 520px;
}

.card-info {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  padding: 8px 12px;
  font-size: 18px;
  font-weight: 600;
  color: #000;
  font-family: var(--button-font);
}

.portfolio-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  justify-items: center;
  grid-gap: 10px;
}

.item {
  width: 100%;
  overflow: hidden;
  background: #000;
}

.item img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s, opacity 0.5s;
  object-fit: cover;
}

.item:hover img {
  transform: scale(1.03);
}




/* pricing page css */


.tab-btn {
  background: var(--main-color);
  color: #000 !important;
  border-radius: 0px !important;
  padding: 10px 35px;
  margin: 0 8px;
  transition: 0.3s;
}

.tab-btn.active {
  background: var(--primary-color) !important;
}

/* Card */
.pricing-card {
  background: #fff;
  padding: 35px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  height: 100%;
  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-card.popular {
  position: relative;
}

/* Badge */
.badge-popular {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main-color);
  color: #000;
  padding: 12px 18px;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  font-size: 14px;
  width: 100%;
}

/* Typography */
.pricing-card h4 {
  margin-bottom: 15px;
}

.small-title {
  font-weight: 600;
  margin-bottom: 12px;
  color: #444;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 14px;
}

.pricing-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #5c7f7d;
  font-size: 13px;
}

.ig_es_field_label {
  display: none !important;
}

.btn-light img {
  filter: invert(1);
}

.content-wrap {
  display: flex;
}

.content-wrap>div {
  display: flex;
  flex-direction: column;
}

.why-choose-us img {
  object-fit: cover;
}

.wpcf7-response-output {
  text-align: center;
}

.lead {
  color: #fff;
}

.es_subscription_message.success {
  color: #008000;
  font-size: 16px;
  background: #fff !important;
  display: block !important;
}

.search-box{
position: relative;
display: inline-block;
}

.icon-btn{
font-size:20px;
cursor:pointer;
}

/* dropdown search */

.search-dropdown{
position:absolute;
top:35px;
right:-65px;
width:320px;
background:#fff;
padding:10px;
border-radius:8px;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
display:none;
z-index:999;
}

.search-dropdown input{
border-radius:6px;
}
@media (max-width: 1400px) {
  .img-bottom-right {
    bottom: 0;
    right: 5%;
  }

  .img-bottom-left {
    bottom: 18px;
    left: 4%;
  }

  .img-top-right {
    top: 15px;
    right: 10%;
  }

  .img-top-left {
    top: 15px;
    left: 10%;
  }

  .footer-brand-text {
    font-size: 20rem;
  }
}

@media(max-width:1320) {
  .footer-brand-text {
    font-size: 17rem;
  }
}


@media (max-width: 991px) {

  .hero-section {

    height: 60vh;
  }

  .about h2 br {
    display: none;
  }

  .about h2 {
    font-size: 40px;
  }

  .services-section .row {
    row-gap: 20px;
  }

  .featured {
    top: 0;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .float-img {
    display: none;
  }

  .newsletter-box h2 {
    font-size: 32px;
  }


  .main-title {
    font-size: 36px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-card.big {
    height: 420px;
  }

  .portfolio-card.small {
    height: 240px;
  }

  .newsletter-section {
    padding: 30px 0px;
  }

  .video-hero {
    height: 40vh;
  }

  .float-img {
    width: 200px !important;
  }

  .contact-wrap {
    margin-top: 0px;
  }

  .btn-wrap {
    margin-top: 60px;
  }

  .service-card img {
    width: 100%;
    height: auto;
  }

  .video-content {
    padding-left: 20px;
  }

  .footer-links li {
    font-size: 13px;
  }

  .footer-brand-text {
    font-size: 13rem;
  }

  .breadcrum {
    height: 40vh;
    padding-top: 100px;
  }

  .portfolio-category[data-category="all"] .portfolio-container {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }

}

@media (max-width: 767px) {

  .hero-section {
    padding-top: 90px;
    background-position-x: 55%;
  }

  .breadcrum {
    height: 60vh;
  }

  .breadcrum h1 {
    font-size: 2rem;
  }

  .hero-title {
    font-size: 40px;
  }

  .about h2 {
    font-size: 24px;
  }

  .content-choose-us {
    padding: 20px !important;
  }

  .content-wrap h2 {
    font-size: 32px;
  }

  .stats-box {
    border: none !important;
    width: 100%;
  }


  .video-content h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 20px;
  }

  .stats-container {
    margin: 0 0 20px 0;
  }

  .video-hero {
    height: 65vh;
  }

  .services-section h2 {
    font-size: 40px;
  }

  .footer-brand-text {
    font-size: 9rem;
  }

  .badge-popular {
    top: 0;
  }

  .pricing-card.popular {
    position: relative;
    padding-top: 50px;
  }
}

@media (max-width: 480px) {

  .newsletter-form input {
    padding: 5px 5px;
    width: 260px !important;
    font-size: 14px;
  }

  form[data-form-id="1"] .es-subscribe-btn {
    padding: 0 0.5rem !important;
  }

  .footer-brand-text {
    font-size: 6rem;
  }

  .portfolio-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }

  .portfolio-tabs li {
    font-size: 12px;
  }
}

@media (max-width: 400px) {
  .hero-section {
    height: 75vh;
  }

  .newsletter-form input {
    width: 205px !important;
  }

  .footer-brand-text {
    font-size: 5.8rem;
  }
}

.wpcf7-not-valid-tip:not(:nth-child(1)):not(:nth-child(2)) {
  display: none;
}