@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@600&display=swap");
* {
  margin: 0;
  padding: 0;
}
body {
  display: flex;
  flex-direction: column;
  width: 100%;
  font-family: inter, Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}
main{
  position: relative;
  z-index: 1;
}
header {
  background-color: black;
  position: fixed;
  top: 0;
  margin: 0;
  padding: 0;
  width: 100%;

  z-index: 100;
  /* background: transparent; Initially transparent */
  display: flex;
  justify-content: center;
  /* transition: background 0.3s ease, padding 0.3s ease; */
}

/* Logo */
.logo {
  height: 60px;
  width: auto;
}

/* Basic Navbar Styling */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  color: white;
  position: relative;
  width: 100%;
}

.logo {
  height: 50px;
}

/* Desktop Navigation - Show normally */
.desktop-nav {
  list-style: none;
  display: flex;
  gap: 20px;
}

.desktop-nav li {
  list-style: none;
}

.desktop-nav li a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  transition: color 0.3s;
}

.desktop-nav li a:hover {
  color: #ffcc00;
}

/* Hide the hamburger icon by default (desktop mode) */
.hamburger {
  font-size: 30px;
  cursor: pointer;
  display: none; /* Hidden on large screens */
  z-index: 100;
  color: white;
}

/* Fullscreen Overlay Menu (Only for Mobile) */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transform: translateY(-100%);
  transition: transform 0.4s ease-in-out;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
}

/* Show the overlay when active */
.nav-overlay.active {
  transform: translateY(0);
  visibility: visible;
  opacity: 1;
}

/* Mobile Navigation Links */
.mobile-nav {
  list-style: none;
  text-align: center;
  padding: 0;
}

.mobile-nav li {
  margin: 20px 0;
}

.mobile-nav li a {
  color: white;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  transition: color 0.3s;
}

.mobile-nav li a:hover {
  color: #ffcc00;
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  cursor: pointer;
  color: white;
}

/* Responsive Styles - Show Hamburger Only on Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block; /* Show only on small screens */
  }

  .desktop-nav {
    display: none; /* Hide normal menu on mobile */
  }
}





.book-appointment-btn {
  position: fixed;
  bottom: 20px;
  right: 40%;
  padding: 12px 24px;
  background: black;
  color: gold;
  font-size: 18px;
  font-weight: bold;
  border: 2px solid gold;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 0 10px gold;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 999;
}
@keyframes shine {
  from {
    left: -100%;
  }
  to {
    left: 100%;
  }
}
/* Shiny Light Effect */
.book-appointment-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 215, 0, 0.6),
    transparent
  );
  animation: shine 2s infinite linear;
  /* background: linear-gradient(120deg, transparent, rgba(255, 215, 0, 0.5), transparent); */
  transition: all 0.6s ease-in-out;
}

.book-appointment-btn:hover::before {
  left: 100%;
}

.book-appointment-btn:hover {
  box-shadow: 0 0 20px gold, 0 0 40px gold;
}




/* Navigation Links */


.hero-cont{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background: url("./assets/AMR_7800.JPG") no-repeat center center/cover;
}

.hero {
  border: 0px solid transparent;
  border-radius: 20px;
  width: 60%;
  height: 70vh;
  overflow: hidden;
  position: relative;
  /* margin: 80px auto; */
  align-self: center;
}
.video-container {
  display: flex;
  width: 300vw;
  height: 100vh;
  transition: transform 1s ease-in-out;
}
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-wrapper {
  position: relative;
  width: 100vw;
  height: 100%;
  
}

.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}
.video-text {
  position: absolute;
  left: 1%;
  bottom: 60%;
  width: 40%;
  text-align: Left;
  font-family: "Poppins", sans-serif; /* Use Montserrat or Raleway as alternatives */
  font-size: 3rem; /* Adjust based on screen size */
  font-weight: 600;
  color: white;
  z-index: 10;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.our-services {
  padding: 50px 20px;
  /* background-color: #f4f4f4; */
  text-align: center;
  background: url("./assets/bg2.jpg") no-repeat center center/cover transparent;
}
.our-services center {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
}
.our-services ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 0;
}
/*  */

.img-service {
  width: 1080px;

  height: 20px;
  object-fit: cover;
  border-radius: 8px;
}

.view-more-btn {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  background: #007bff;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.view-more-btn:hover {
  background: #0056b3;
}

.our-services li {
  font-size: 1.2rem;
  background-color: #fff;
  padding: 15px 30px;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.our-services li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.service-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 50px;
  margin: 20px 0;
}

.service-images img {
  width: auto;
  margin: 0 50px;
  height: 450px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.logoside img {
  width: 50%;
}
.about-us {
  padding: 50px 20px;
  background: url("./assets/bg.png") no-repeat center center/cover;
  text-align: center;
  color: #333;
  height: 70vh;
}
.about-us-content {
  /* background-color: white; */
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}
.heading-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.heading-normal {
  font-size: 3.5rem;
  font-weight: bold;
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: block;
}

.heading-cursive {
  font-size: 3.5rem;
  font-family: "Satisfy", serif;
  font-weight: 400;
  font-style: normal;
  position: absolute;
  /* top: 0px; */
  margin-top: 90px;
  padding: 0;
  line-height: 1;
  display: block;
  z-index: 2;
  /* padding: 0 10px; */
}
.instagram-wrapper {
  max-width: 300px; /* Adjust width */
  max-height: 500px; /* Adjust height */
  overflow: hidden;
  margin: auto;
}

.instagram-wrapper blockquote {
  width: 100% !important;
  height: 100% !important;
  transform: scale(0.9); /* Adjust scale to fit */
  transform-origin: top left;
}

.owl-carousel .instagram-wrapper {
  display: flex;
  justify-content: center;
}
.social {
  background: url("./assets/bg3.jpg") no-repeat center center/cover;
}

/* Brands Section */
.brand-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.brand-logos img {
  width: 150px;
}

/* Footer */
footer {
  display: flex;
  background-color: #111;
  /* color: white; */
  padding: 40px 20px;
}

.footer-content {
  background-image: url("./assets/20.png");
  background-color: black;
  display: flex;
  color: white;
  justify-content: space-around;
  align-items: center;
}

.footer-logo img {
  width: 100px;
}

.footer-info h3 {
  color: #e0c07a;
}

.footer-info a {
  color: #e0c07a;
  text-decoration: none;
}

.footer-info iframe {
  width: 200px;
  height: 150px;
  border: none;
}
.owl-carousel .owl-nav {
  /* display: none; */
}
.ffffffffff{
  margin-top: 45px;
  display: block; /* Removes default inline spacing */
  max-height: 100px; /* Adjust height as needed */
}
@media (max-width: 768px){
  body{
    display: flex;
 
    flex-direction: column;
    /* row-gap: 20px; */
  }
  .about-us{
    height: auto;
  }
  
  .ffffffffff{
    display: none;
  }
  .about-us-content {
    height: auto;

    margin-top: 80px;
    flex-direction: column;
  }
  
  .os-m{
    margin-bottom: 40px;
  }
  .footer-content{
    display: flex;
    flex-direction: column;
  }
  .book-appointment-btn{
    right: 20%;
  }
  .video-text{
    font-size: 38px;
    text-align: center;
    left: 20%;
    bottom: 35%;
  }
  .footer-logo{
    text-align: center;
    text-wrap: wrap;
  }
  .hero{
    width: 80%;
    height: 70vh;
  }
}


/* //Popup */
.popup-overlay {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
}

/* Popup Box */
.popup-overlay {
  display: none; /* Initially hidden */
  position: fixed; /* Ensures it stays on top */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999; /* Ensure it's above the main content */
}

/* Popup Box */
.popup-box {
  z-index: 1000; /* Higher than overlay */
  background: white;
  padding: 20px;
  max-height: 75vh;
  max-width: 50vw;
  overflow: hidden;
  border-radius: 8px;
  text-align: center;
  position: relative; /* Works with z-index */
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  font-size: 20px;
  color: red;
}
.blog-card {
  display: block;
}
.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-wrap: wrap;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-img {
  max-height: 300px;
  object-fit: cover;
  border-radius: 8px;
}
.blog-group {
  padding: 50px 20px;
  background: url("./assets/bg.png") no-repeat center center/cover;
  text-align: center;
  color: #333;
}
