@import url(./home.css);
@import url(./Comman.css);

:root {
  --background-color: #000000; /* Dark Gray */
  --text-color: #f7f7f7; /* Light Gray */
  --primary-color: #f6c90e; /* Yellow */
  --secondary-color: #2e4750; /* Dark Blue-Gray */
  --black-color: #000000;
}
*,
*::after,
*::before {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

img {
  width: 70%;
  height: 100%;
}

a {
  display: inline-block;
  text-decoration: none;
}

button {
  border: none;
  background-color: transparent;
}

.header {
  background-color: var(--background-color);
}

.header .logo {
  width: 100%;
  max-width: 80px;
  height: 80px;
  aspect-ratio: 1/1;
}

.header .logo a {
  display: inline-block;
  width: 80%;
  height: 100%;
}

.header .logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  aspect-ratio: 1/1;
}

.navbar-nav .nav-item .nav-link {
  padding: 0px 0px;
  margin: 0 15px;
  color: var(--text-color);
  font-size: 16px;
  font-weight: 500;
  position: relative;
  width: max-content;
}
.navbar-nav .nav-item .nav-link::before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  left: 0;
  bottom: -2px;
  transition: all 0.5s ease-in-out;
}

.navbar-nav .nav-item:hover .nav-link::before {
  width: 100%;
}

.navbar-nav .nav-item .nav-link.active {
  color: var(--primary-color);
}

.navbar-toggler {
  font-size: 20px;
  color: var(--text-color);
}

.navbar-nav .nav-item .nav-link.active::before {
  width: 100%;
}

.navbar-nav .nav-item .dropdown-toggle::after {
  display: none;
}

.navbar-nav .nav-item .dropdown-menu {
  border-radius: 5px;
  background-color: var(--text-color);
}

.header .navbar .navbar-toggler {
  padding: 0px;
  border: none;
  box-shadow: none;
}

.navbar-nav {
  margin-left: auto;
}

.navbrIcon-section {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.navbrIcon-section a {
  font-size: 18px;
  color: var(--text-color);
  transition: all 0.3s ease-in-out;
}

.navbrIcon-section a:hover {
  color: var(--primary-color);
}

.home-section .dashboard-slider {
  display: block;
}

.home-section .dashboard-slider .slider-item {
  height: 100vh;
  width: 100%;
}

.home-section .dashboard-slider .slider-item img {
  object-fit: fill;
}

.section {
  padding: 80px 0;
}

.home-section {
  padding: 0px;
}

.title-main-section {
  text-align: center;
}

.footer {
  background-color: var(--background-color);
  padding: 30px 0;
  position: relative;
}

.footer .contact-link {
  position: fixed;
  top: 8rem;
  right: -50px;
  background-color: #ff4500;
  padding: 8px;
  border-radius: 2px;
  transform: rotate(-90deg);
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1.2rem;
  font-weight: 600;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer .footer-title {
  font-size: 24px;
  margin-bottom: 10px;
  padding-bottom: 20px;
  color: var(--primary-color);
  position: relative;
}

.footer .footer-title::after {
  position: absolute;
  content: "";
  width: 100%;
  background-color: var(--secondary-color);
  height: 2px;
  left: 0;
  right: auto;
  bottom: 5px;
  border-radius: 100px;
}

.footer .footer-title::before {
  position: absolute;
  content: "";
  width: 70%;
  background-color: var(--primary-color);
  height: 2px;
  left: 0;
  right: auto;
  bottom: 5px;
  border-radius: 100px;
  z-index: 99;
}

.service-areas-columns {
  display: flex;
  gap: 20px; /* spacing between the two columns */
}

.footer .footer-nav-list {
   list-style: none;
   padding: 0;
   margin: 0;
   flex: 1;
}

.footer .footer-nav-list li {
  margin-bottom: 6px;
}

.footer .footer-nav-list li a {
  font-size: 1rem;
  color: var(--text-color);
  transition: all 0.5s ease-in-out;
}

.footer .footer-nav-list li a.footer-nav-link {
  width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer .footer-nav-list li.footer-nav-item:hover a.footer-nav-link {
  color: var(--primary-color);
  transform: translateX(5px);
}

.footer .footer-nav-list li.contact-nav-link {
  position: relative;
  padding-left: 25px;
}

.footer .footer-nav-list li.contact-nav-link i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
  font-size: 14px;
}

.footer-Social-link .footer-social-section {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 15px;
}

.footer-Social-link .footer-social-section a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  padding: 15px;
  border: 1px solid var(--primary-color);
  border-radius: 5px;
}
.footer-Social-link .footer-social-section a:hover {
  color: var(--primary-color);
}

.working-hourse-section .working-hourse-section-title {
  font-size: 18px;
  color: var(--text-color);
}

.working-hourse-section .working-hourse-section-text {
  font-size: 14px;
  color: var(--primary-color);
}

.footer .google-review-link {
  color: var(--primary-color);
  font-size: 14px;
}

@media screen and (min-width: 1025px) and (max-width: 1199px) {
  .navbar-nav .nav-item .nav-link {
    padding: 0px 8px;
  }

  .header .logo {
    max-width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 1024px) {
  .navbar-nav .nav-item .nav-link {
    padding: 0px 8px;
  }

  .header .logo {
    max-width: 60px;
    height: 60px;
  }
}

@media screen and (max-width: 991px) {
  .navbar-nav .nav-item .nav-link {
    padding: 5px 10px;
  }

  .header .navbar .navbar-collapse {
    padding: 10px;
    margin-top: 10px;
    border-radius: 10px;
    background-color: var(--background-soft);
    transition: all 0.5s ease-in-out;
  }
}

@media screen and (max-width: 767px) {
  /* .footer .contact-link {
    position: unset;
    transform: rotate(0deg);
    margin-top: 20px;
    text-align: center;
  } */

  /* .footer .contact-link {
    top: auto;
    bottom: 1rem;
    right: 1rem;
    transform: rotate(0deg);
    border-radius: 5px;
    font-size: 1rem;
  } */

  .owl-carousel .owl-item img{
    height: 250px;
  }

  .home-nav-button{
    width: 30px;
    height: 30px;
    font-size: 10px !important;
  }

  .section{
    padding: 50px 0;
  }

}


@media screen and (max-width:575px) {
  .section{
    padding: 30px 0;
  }
}



.contact-area input,
.contact-area select,
.contact-area textarea {
  border: 1px solid #ccc;
  padding: 10px 15px;
  font-size: 16px;
  width: 100%;
}

.contact-area textarea {
  resize: none;
  border-radius: 15px;
}

.contact-area input,
.contact-area select {
  border-radius: 30px;
}

.contact-area .btn-warning {
  background-color: #ffc107;
  border: none;
}

.contact-area .btn-warning:hover {
  background-color: #e0a800;
}

/* Position submenu */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: 0;
  margin-right: 0;
  display: none;
}

.dropdown-submenu:hover .dropdown-menu {
  display: block;
  position: absolute;
}




.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  max-width: 280px;
  margin: auto;
  transition: 0.3s ease;
}

.review-card:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.avatar img {
  width: 60px;
  height: 60px;
  border-radius: 20%;
  margin-bottom: 10px;
}

.review-name {
  font-weight: 700;
  margin: 5px 0;
  font-size: 1.1rem;
}

.review-handle {
  font-size: 0.85rem;
  color: #666;
  margin-bottom: 10px;
}

.google-icon {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
}

.review-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
}

.product-detail-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}



.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px; /* smaller gap for tight look */
}

.gallery-item {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 🔹 Makes each box square (1:1 aspect ratio) */
  overflow: hidden;
  border-radius: 6px;
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* 🔹 Fill the square nicely */
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


