:root {
  --Title_color: #1b1b1b;
  --secoundary-color: #f5b754;
  --third-theme-color: #222222;
  --color-fill: #f0f0f0;
  --white: #fff;
}

body {
  scroll-behavior: smooth;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Nunito", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Outfit", sans-serif;
}

a {
  text-decoration: none;
  font-size: 1.1em;
}

a:active {
  color: var(--secoundary-color);
}

p {
  font-size: 19px;
  line-height: 1.5em;
}

.uni-padding {
  padding: 100px 0;
}

.title2 {
  font-size: 1.5em;
  font-weight: 600;
}

header {
  padding: 15px 20px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  /* Semi-transparent background */
  backdrop-filter: blur(10px);
  /* Glass effect */
  transition: 0.3s ease-in-out;
}

.nav_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Logo */
.logo_box img {
  width: 150px;
}

/* Navigation */
.navigation ul {
  display: flex;
  gap: 1.5em;
  margin: 0;
  padding: 0;
}

.navigation ul li {
  list-style: none;
}

.navigation ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.navigation ul li a:hover {
  color: #ffcc00;
  /* Highlight color */
}

/* Mobile Navigation */
.menu-toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navigation {
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    flex-direction: column;
    text-align: center;
    padding: 20px 0;
  }


  .navigation.active {
    display: flex;
  }

  .navigation ul {
    flex-direction: column;
    gap: 1.2em;
  }

  .menu-toggle {
    display: block;
  }
}

/*Home*/
.home_section {
  /* padding: 100px 20px; */
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url(./assests/slide-2.jpg);
  background-size: cover;
  background-position: center center;
  text-align: left;
}

.home_container {
  display: flex;
  justify-content: center;
  align-items: start;
  flex-direction: column;
  transform: translateX(-50px);
}

.home_container h1 {
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: var(--Title_color);
  max-width: 60%;
}

.home_container h2 {
  font-size: 2rem;
  font-weight: 400;
  max-width: 50%;
  /* margin: 0 auto; */
  color: var(--secoundary-color);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .home_section h1 {
    font-size: 2.5rem;
  }

  .home_section h3 {
    font-size: 1.2rem;
  }
}

.CTA_btn {
  padding: 10px 17px;
  background: var(--secoundary-color);
  border: none;
  outline: none;
  border-radius: 20px;
  color: #fff;
}

/*ABout*/
.about_text {
  color: var(--Title_color);
  padding: 40px;
}

.about_text .list_service span {
  color: var(--color-fill);
  font-size: 2em;
  padding: 8px;
  border-radius: 20px;
}

.about_text .list_service span:hover {
  background-color: var(--secoundary-color);
  color: var(--Title_color);
  font-size: 2em;
  transition: all 0.5s ease-in;

}

.list_service span p {
  font-size: 0.65em;
  margin-left: 0.5em;
  margin-bottom: 0;
  color: var(--third-theme-color);
}



.display_number {
  background-color: var(--third-theme-color);
}



/*Number Box*/
.number_box span {
  font-size: 2.5em;
  font-weight: 600;
  color: var(--secoundary-color);
}

.number_box p {
  color: var(--white);
  font-size: 1.25em;
  margin-bottom: 0;
}


/*Service*/
.service_box {
  max-width: 350px;
  outline: none;
  border: none;
}

.item {
  overflow: hidden;
  isolation: isolate;
  border-radius: 25px 25px 25px 0;
  position: relative;
  outline: none;
  border: none;
}

.item img {
  aspect-ratio: 5/6;
  transition: all 0.5s ease-in;
}

.curve_box {
  width: 100px;
  height: 100px;
  border-radius: 0 35px 0 0;
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--white);
}

.curve-box-left {
  position: absolute;
  left: -2px;
  top: -24px;
  height: 24px;
  width: 24px;
  transform: rotate(270deg);
}

.curve-box-right {
  position: absolute;
  right: -20px;
  bottom: 0px;
  height: 24px;
  width: 24px;
  transform: rotate(270deg);
}

.Contact-link {
  transition: all 0.5s ease;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  height: 70px;
  width: 70px;
  background-color: var(--third-theme-color);
}

.Contact-link a {
  color: var(--color-fill);
}

.item:hover .Contact-link a {
  color: var(--secoundary-color);
}

.item:hover .Contact-link {
  background-color: var(--Title_color);
  color: var(--secoundary-color);
}

.item:hover img {
  transform: scale(1.05);
}

.service_section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: hidden;
}



.service_box {
  width: 350px;
  outline: none;
  border: none;
  margin: auto;
}

.dark_gradient_box {
  background: linear-gradient(rgba(0, 0, 0, 0.0), rgba(0, 0, 0, 0.9));
  width: 100%;
  position: absolute;
  height: 100px;
  bottom: 0;
}

.dark_gradient_box h3 {
  text-align: right;
  padding: 20px;
  font-weight: 700;
  color: var(--white);
  font-size: 1.8em;
}

/*swiper*/
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}


.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo_section {
  background: var(--third-theme-color);
  margin: auto;
}

.img_logo {
  max-width: 200px;
}

/*logo slider*/
.logos-slider {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0, #000 15%, #000 85%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0, #000 15%, #000 85%, rgba(0, 0, 0, 0) 100%);
}

.logos-slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  animation: slide 30s linear infinite;
}

.logos-slider-container img {
  width: 150px;
  max-width: 150px;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0)
  }

  100% {
    transform: translate3d(-100%, 0, 0)
  }
}

.card {
  border: none;
  background: var(--third-theme-color);
  padding: 2rem;
  border-radius: 1rem;
  margin: 0 auto;
  /* box-shadow: 0px 3px 8px rgb(61 74 84 / 10%), 0px 3px 12px rgb(61 74 84 / 6%) */
}

.fa-message {
  font-size: 1.5rem;
}

.item2 {
  height: auto;
  padding: 100px 20px;
  background: var(--color-fill);
  border-radius: 30px 30px 30px 0;
}

.item2 .curve_box {
  color: var(--secoundary-color);
  font-size: 2rem;
}

.banner_contact {
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.36)), url(./assests/im2.jpg) no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 120px;
  text-align: center;
}

.m_image {
  filter: grayscale(0.9);
  transition: all 0.3s ease;
}

.m_image:hover {
  filter: grayscale(0);
}

.banner_contact h3 {
  font-weight: 700;
  font-size: 3rem;
  color: var(--white);
}

.c_inner_box {
  background: var(--secoundary-color);
  border-radius: 30px;
}

.item_block {
  background-color: var(--color-fill);
  padding: 35px 20px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 10px;
  text-align: center;
  word-break: break-all;
}

.item_block i {
  font-size: 3rem;
  margin-bottom: 10px;
}

.item_block span {
  font-size: 1.2rem;
  font-weight: 700;
}

.contact_element {
  position: relative;
  bottom: 80px;
}

.contact_form {
  background: var(--color-fill);
}

input,
textarea,
select {
  width: 100%;
  border-radius: 20px;
  padding: 12px;
  margin: 7px;
  border: none;
  outline: none;
}

select {
  background: var(--white);
}

#submit_btn {
  border-radius: 20px;
  padding: 12px;
  margin: 7px;
  background: var(--secoundary-color);
}

#contact-image_box {
  overflow: hidden;
  isolation: isolate;
  border-radius: 25px 25px 25px 0;
  position: relative;
  outline: none;
  border: none;
  padding: 0;
  margin: auto;
}

#contact-image_box img {
  transition: all 0.5s ease-in;
  width: 100%;
  height: auto;
}

#contact-image_box:hover img {
  transform: scale(1.1);
  /* Zooms in the image slightly */
}

.footer-top {
  padding: 60px 0;
  background: #333;
  text-align: left;
  color: #aaa;
}

.footer-top h3 {
  padding-bottom: 10px;
  color: #fff;
}

.footer-about img.logo-footer {
  max-width: 200px;
  margin-top: 0;
  margin-bottom: 18px;
}

.footer-about p a {
  border: 0;
}

.footer-about p a:hover,
.footer-about p a:focus {
  border: 0;
}

.footer-contact p {
  word-wrap: break-word;
}

.footer-contact i {
  padding-right: 10px;
  font-size: 18px;
  color: #666;
}

.footer-contact p a {
  border: 0;
}

.footer-contact p a:hover,
.footer-contact p a:focus {
  border: 0;
}

.footer-links a {
  color: #aaa;
  border: 0;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #fff;
}

.footer-bottom {
  padding: 15px 0 17px 0;
  background: #444;
  text-align: left;
  color: #aaa;
}

.footer-social {
  padding-top: 3px;
  text-align: right;
}

.footer-social a {
  margin-left: 20px;
  color: #777;
  border: 0;
}

.footer-social a:hover,
.footer-social a:focus {
  color: #79a05f;
  border: 0;
}

.footer-social i {
  font-size: 24px;
  vertical-align: middle;
}

.footer-copyright {
  padding-top: 5px;
}

.footer-copyright a {
  color: #fff;
  border: 0;
}

.footer-copyright a:hover,
.footer-copyright a:focus {
  color: #aaa;
  border: 0;
}

@media screen and (max-width : 998px) {
  .banner_contact {
    padding: 70px 40px;
  }
}


.g-container {
  overflow: hidden;
  width: 450px;
  aspect-ratio: 4/3;
}

.g-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px;
}

.gallery_section h3 {
  font-size: 3rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.image-container{
  margin-bottom: 25px;
}
.load_block {
  height: 100vh;
  width: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1002;
}

/* Button Container */
.btn-container {
  display: flex;
  justify-content: center;
  gap: 15px;
  padding: 20px 0px;
}

/* Button Styling */
.show-btn {
  padding: 12px 18px;
  font-size: 16px;
  background-color: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.show-btn:hover {
  background-color: #0056b3;
}

/* Overlay Styling */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
  z-index: 1001;
  padding: 20px;
}

/* Show the overlay */
.overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Image Styling */
.overlay img {
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease-in-out;
}

.overlay img:hover {
  transform: scale(1.03);
}

/* Close Button Styling */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: white;
  background: transparent;
  border: none;
  cursor: pointer;
}

.close-btn:hover {
  color: red;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .show-btn {
    font-size: 14px;
    padding: 10px 15px;
  }

  .overlay img {
    max-width: 90%;
  }
  
}
@media screen and (max-width : 990px) {
  .home_section {
    background-position: left center;
    height: auto;
  }
  .home_container{
    transform: translateX(0);
  }
  .home_container h1 {
    max-width: 100%;
  }
  
  .home_container h2 {
    max-width: 100%;
  }
  
}

@media (max-width: 480px) {
  .show-btn {
    font-size: 12px;
    padding: 8px 12px;
  }

  .close-btn {
    font-size: 25px;
    top: 10px;
    right: 15px;
  }
}