@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Varela+Round&display=swap");
.varela-round-regular {
  font-family: "Varela Round", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.roboto {
  font-family: "Roboto", sans-serif;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
/* :::::::::::::::::::::::Common Css:::::::::::::::::::::::: */
.d-flex {
  display: flex;
}
.justify-between {
  justify-content: space-between;
}
.align-items-center {
  align-items: center;
}
.border {
  border: 2px solid red;
}
/* :::::::::::::::::::::::body:::::::::::::::::::::::: */
body {
  width: 100vw;
  overflow-x: hidden;
}

/* :::::::::::::::::::::::Top Navbar:::::::::::::::::::::::: */
.top-nav {
  width: 100%;
  padding: 10px;
  background-color: #e8d000;
  font-size: 12px;
  position: relative;
  z-index: 9999;
}
.left-top-nav {
  width: 60%;
}
.left-top-nav .fa-phone {
  margin-right: 10px;
  font-size: 16px;
}
.left-top-nav .fa-location-dot {
  margin-right: 10px;
  margin-left: 100px;
  font-size: 16px;
}
.right-top-nav {
  font-size: 14px;
  font-weight: 500;
}
/* :::::::::::::::::::::::Wrapper:::::::::::::::::::::::: */
.wrapper {
  width: 75%;
  margin: 0 auto;
}

/* :::::::::::::::::::::::Navbar:::::::::::::::::::::::: */
nav {
  background-color: #ceb500;
  background-color: #fff;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
nav.navbar {
  position: sticky;
  top: 0;
  background-color: #fff; 
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo img {
  width: 70px;
}

.menu-toggle {
  font-size: 1.8rem;
  cursor: pointer;
  background: none;
  border: none;
  display: none;
  color: black;
  z-index: 1100;
}

/* Nav links default (desktop) */
.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: #000;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  font-family: "Varela Round", Sans-serif;
  font-size: 15px;
  font-weight: 300;
  text-transform: uppercase;
  position: relative;
}
.nav-links a:hover {
  color: #e8d000;
}
.nav-links a.active {
  color: #e8d000;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%) translateY(0); 
  width: 80%;
  height: 8px;
  background-color: #e8d000;
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: translateX(-50%) translateY(30px);
}
/* Show on active/current page */
.nav-links a.active::after {
  opacity: 1;
  transform: translateX(-50%) translateY(30px);
}
#navLinks {
  position: fixed;
}
.nav-links-mobile {
  display: none;
}

/* Mobile */

@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .nav-links-mobile {
    display: block;
  }
  .nav-links-mobile {
    flex-direction: column;
    position: fixed;
    top: -400px;
    left: 0;
    width: 100%;
    background-color: white;
    transition: all 0.5s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    padding-top: 40px;
    margin-top: -40px;
  }

  .nav-links-mobile.show {
    top: 130px;
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links-mobile a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    top: -300px; 
    left: 0;
    width: 100%;
    background-color: white;
    color: #000;
    padding: 2rem;
    transition: all 0.5s ease;
  }
  .nav-links-mobile a:hover {
    background-color: #e8d000;
    color: #000;
  }
  .nav-links-mobile a:active {
    background-color: #e8d000;
    color: #000;
  }

  nav .nav-links-inline {
    display: none;
  }
}

/* :::::::::::::::::::::::Hero Slider:::::::::::::::::::::::: */

.hero-slider {
  position: relative;
  width: 100vw;
  height: 70vh; 
  overflow: hidden;
}
.hero-slider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); 
  z-index: 1;
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-fit: fill;
  opacity: 0;
  animation: fadeSlide 21s infinite;
  z-index: 0;
}

.hero-slider .slide:nth-child(1) {
  animation-delay: 0s;
}
.hero-slider .slide:nth-child(2) {
  animation-delay: 3s;
}
.hero-slider .slide:nth-child(3) {
  animation-delay: 6s;
}
.hero-slider .slide:nth-child(4) {
  animation-delay: 9s;
}
.hero-slider .slide:nth-child(5) {
  animation-delay: 12s;
}
.hero-slider .slide:nth-child(6) {
  animation-delay: 15s;
}
.hero-slider .slide:nth-child(7) {
  animation-delay: 18s;
}

@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  5% {
    opacity: 1;
    transform: scale(1);
  }
  25% {
    opacity: 1;
    transform: scale(1.05); 
  }
  30% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
    transform: scale(1.05);
  }
}

.hero-content {
  position: absolute;
  top: 40%;
  left: 37%;
  z-index: 2;
  transform: translate(-50%, -50%);
  color: white;
  padding: 20px;
  max-width: 800px;
  border-radius: 8px;
}

.hero-content h1 {
  font-size: 2em;
  text-transform: uppercase;
  line-height: 1.3em;
  text-shadow: 0px 0px 10px rgba(22, 22, 22, 0.95);
  color: #ffffff;
  font-family: "Roboto", Sans-serif;
  margin: 20px 0;
}
.hero-content p {
  font-family: "Roboto", Sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.4em;
  text-shadow: 0px 0px 5px #383838;
  color: #fefefe;
  margin: 20px 0;
}

.hero-content strong {
  font-family: "Roboto", Sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.4em;
  text-shadow: 0px 0px 5px #383838;
  color: #fefefe;
}
/* :::::::::::::::::::::::Upper Footer:::::::::::::::::::::::: */
.upper-footer {
  background-color: #474747;
  padding: 40px 0;
  color: #fff;
}
.footer-logo img {
  width: 50px;
}
.footer-logo p {
  margin: 15px 0;
}
.upper-footer h3 {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #e8d000;
  font-family: "Roboto", Sans-serif;
}
.footer-navigation {
  flex-direction: column;
  margin: 0 80px;
}
.footer-navigation h3 {
  margin-bottom: 35px;
}
.footer-navigation a {
  text-decoration: none;
  color: #fff;
  margin: 10px 0;
}
.learn-more h3 {
  margin-bottom: 40px;
}

.learn-more a {
  text-decoration: none;
  background-color: #ceb500;
  padding: 10px 15px;
  color: #000;
  font-weight: bold;
}
.learn-more a:hover {
  background-color: #e8d000;
}
.footer-logo i {
  color: #fff;
  font-size: 16px;
  margin-left: 4px;
}

/* :::::::::::::::::::::::Lower Footer:::::::::::::::::::::::: */
footer {
  background-color: #272727;
  font-size: 12px;
  font-weight: 300;
  color: #adadad;
  padding: 20px 0;
}
/* :::::::::::::::::::::::Work With Us:::::::::::::::::::::::: */

.work-with-us-banner {
  position: relative;
  height: 40vh;
  background-image: url("images/Work-With-Us-Title.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transform: translateY(5px);
  opacity: 0;
  transition: transform 0.4s ease;
}

.work-with-us-banner.active {
  transform: translateY(0);
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); 
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-text {
  color: white;
  font-size: 3rem;
  font-family: sans-serif;
  text-align: center;
}

/* :::::::::::::::::::::::What We Do:::::::::::::::::::::::: */

.what-we-do-banner {
  position: relative;
  height: 40vh;
  background-image: url("images/What-We-do-Title.png");
  background-size: cover;
  background-position: center;
  overflow: hidden;
  transform: translateY(5px);
  opacity: 0;
  transition: transform 0.4s ease;
}

.what-we-do-banner.active {
  transform: translateY(0);
  opacity: 1;
}

.what-we-do-banner.overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4); 
  display: flex;
  justify-content: center;
  align-items: center;
}

.what-we-do-banner.banner-text {
  color: white;
  font-size: 3rem;
  font-family: sans-serif;
  text-align: center;
}
.our-services{
  width: 100%;
}
.our-services video{
  width: 100%;
  height: 400px;
  object-fit: cover;
}
/* :::::::::::::::::::::::Main Section:::::::::::::::::::::::: */

main {
  width: 100vw;
  padding-top: 100px;
}
.work-with-us-left {
  width: 60%;
  padding: 0 50px 0 0;
  min-width: 800px;
}
.work-with-us-left p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  line-height: 30px;
  margin: 40px 0;
}
.work-with-us-left span {
  font-size: 20px;
  font-weight: 500;
  color: #ceb500;
}
.work-with-us-left img {
  width: 100%;
}
.work-with-us-right {
  width: 40%;
}
.work-with-us-right video {
  width: 100%;
  height: 400px;
  object-fit: cover; 
  display: block;
}
.work-with-us-right img {
  width: 100%;
  height: 600px;
  min-width: 350px;
}
/* :::::::::::::::::::::::Slider Section:::::::::::::::::::::::: */

.slider-container {
  position: relative;
  width: 100%;
  height: 400px;
  max-width: 800px;
  aspect-ratio: 2 / 1; /* Keeps height proportional to width */
  margin: auto;
  overflow: hidden;
}

.slider-track {
  display: flex;
  transition: transform 0.6s ease-in-out;
  height: 100%;
}

.slide-work {
  flex: 0 0 100%;
  height: 100%;
  object-fit: cover; /* Fill area and crop if needed */
}

/* :::::::::::::::::::::::::Slider 1::::::::::::::::::::::::::::: */


.slider-track1 {
  width: calc(100% * 4); /* 4 slides total */
}
.slider-track2 {
  width: calc(100% * 5); /* 5 slides */
}
.slider-track3 {
  width: calc(100% * 7); /* 5 slides */
}
.slide-work {
  max-width: 25%; /* 4 images visible at once */
}
.slide-work2 {
  max-width: 20%; /* 4 images visible at once */
}
.slide-work3 {
  max-width: 14.2857%; /* 7 images visible at once */
}
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: white;
  border: none;
  font-size: 1.5rem;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 2;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.dots {
  text-align: center;
  position: absolute;
  bottom: 5%;
  width: 100%;
}

.dot {
  height: 8px;
  width: 8px;
  margin: 0 4px;
  background-color: #fff;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.dot.active {
  background-color: #333;
}


/* :::::::::::::::::::::::Contact Main Section:::::::::::::::::::::::: */

.contact-left {
  width: 50%;
  margin: 0 0 40px 0;
}
.contact-right {
  width: 50%;
  margin: 40px 0;
}

.contact-form {
  max-width: 600px;
  background-color: #c4c4c4;
  padding: 30px;
  border-radius: 20px;
  margin: auto;
  font-family: "Roboto", sans-serif;
}

label {
  display: block;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}

.required {
  color: red;
}

.name-fields {
  display: flex;
  gap: 10px;
}

.name-fields input {
  flex: 1;
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #444;
  border-radius: 4px;
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

small {
  display: block;
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

.recaptcha-note {
  font-weight: bold;
  font-size: 14px;
  margin-top: 20px;
}

.submit-btn {
  background-color: #ceb500;
  color: #000;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 600;
  margin-top: 20px;
  cursor: pointer;
  border: none;
}

.submit-btn:hover {
  background-color: #e8d000;
}
.contact-right {
  padding: 0 60px;
}
.contact-right p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  line-height: 30px;
  margin: 20px 0;
}
.contact-right strong {
  font-size: 20px;
}

/* :::::::::::::::::::::::Media Queries:::::::::::::::::::::::: */
@media only screen and (max-width: 1530px) {
  .work-main {
    flex-direction: column;
  }
  .work-with-us-left {
    width: 100%;
    padding: 0;
    min-width: unset;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .work-with-us-left img {
  width: 50%;
}
  .work-with-us-right {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 20px 0 60px 0;
  }
  .work-with-us-right img {
    width: 60%;
  }
    .work-with-us-right video {
    width: 80%;
    height: auto;
  }
}
@media only screen and (max-width: 1022px) {
  .work-with-us-main{
    flex-direction: column;
  }
  .contact-left {
  width: 100%;
}
.contact-right {
  width: 100%;
    padding: 0;
}
.slider-container {
height: auto;
}
    .work-with-us-left img {
    width: 75%;
  }
}
@media only screen and (max-width: 880px) {
  .hero-content {
    width: 80%;
    left: 50%;
  }
  .footer-navigation {
    margin: 0 42px;
  }
}

@media only screen and (max-width: 768px) {
  .right-top-nav {
    display: none;
  }
  .left-top-nav {
    width: 100%;
    justify-content: space-between;
  }
  .hero-content {
    top: 50%;
  }
  .upper-footer .inner {
    flex-direction: column;
  }
  .learn-more {
    margin-top: 40px;
    border-top: 1px solid gray;
    padding: 30px 0;
  }
  .dots {
display: none;
  }
   .work-with-us-right video {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 580px) {
  .hero-content {
    width: 90%;
  }
  .hero-content h1 {
    font-size: 1.6rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .footer-navigation {
    margin: 0 20px;
  }
      .work-with-us-left img {
    width: 100%;
  }
  .our-services video {
  height: 284px;
  }
}
@media only screen and (max-width: 480px) {
  .left-top-nav .fa-location-dot {
    margin-left: 30px;
  }
  .upper-footer .inner {
    margin-right: 30px;
  }
  .right-area {
    flex-direction: column;
  }
  .footer-navigation {
    margin: 40px 0 0 0;
    border-top: 1px solid gray;
    padding: 30px 0;
  }
  .contact-form {
    padding: 15px;
  }
}
@media only screen and (max-width: 400px) {
.hero-slider {
  height: 90vh;
}
}

/* :::::::::::::Session Css:::::::::::::::::::: */

.success {
    background: #d4edda;
    color: #155724;
    padding: 10px;
    border-left: 5px solid #28a745;
    margin-bottom: 15px;
}

.error {
    background: #f8d7da;
    color: #721c24;
    padding: 10px;
    border-left: 5px solid #dc3545;
    margin-bottom: 15px;
}
