* {
    box-sizing: border-box
}

/* GENERAL */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}

/* LOADER */
#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: rgba(15, 15, 15, 0.566);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

body.loaded #loader {
    display: none;
}

body:not(.loaded) main,
body:not(.loaded) header,
body:not(.loaded) footer {
    display: none;
}

/* HEADER */
.header {
   background: rgba(58,39,96,0.5);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border: 1px solid rgba(58,39,96,0.25);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    font-size: 24px;
    margin-bottom: 0.5rem;
}

/* MENU TOGGLE */
.menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    text-align: center;
    transition: transform 0.3s ease;
}

/* NAVBAR */
.navbar {
    width: 100%;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
    display: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-links.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.nav-links li {
    margin: 0.8rem 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
}

/* DESKTOP VIEW */
@media screen and (min-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle {
        display: none;
    }

    .navbar {
        display: flex !important;
        width: auto;
    }

    .nav-links {
        flex-direction: row;
        display: flex;
        justify-content: flex-end;
        opacity: 1;
        transform: none;
    }

    .nav-links li {
        margin: 0 1rem;
    }
}

/* BANNER */
.banner {
    position: relative;
    background: url('banner.jpg') no-repeat center/cover;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.banner-content {
    position: relative;
    z-index: 2;
}

/* SECTIONS */
.section {
    padding: 3rem 0;
    margin-bottom: 10px;
    background: white;
}

.why_us {
    padding: 55px 0;
    background: #ffffff;
}

.details_wrapper {
    margin: 30px 0 0;
}

.details_wrapper .whyus_details {
    text-align: center;
    margin: 0 30px;
}

.details_wrapper .whyus_details img {
    width: 100%;
    max-width: 90px;
    margin: 0 auto 15px;
}

.details_wrapper .whyus_details h3 {
    color: #5c5c5c;
    font-size: 20px;
    font-weight: bold;
    margin: 0 0 20px;
    line-height: 27px;
    font-family: "AvenirLTStd-bolder";
}

.details_wrapper .whyus_details p {
    color: #333333;
    font-size: 16px;
    line-height: 24px;
    font-family: "AvenirLTStd-medium";
}


/* FEATURES */
.features-list {
    list-style: none;
    padding-left: 1rem;
}

.features-list li {
    margin: 0.5rem 0;
}

/* TESTIMONIALS */
.container1 {
  max-width: 1100px;
  margin: auto;
  padding: 0 15px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #e1e1e1;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  text-align: left;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.testimonial-header img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin-right: 15px;
  object-fit: cover;
}

.testimonial-card h5 {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}

.city {
  font-size: 0.85rem;
  color: #777;
  margin: 0;
}

.testimonial-card p {
  margin: 0;
  color: #333;
  font-size: 0.95rem;
  line-height: 1.5;
}


/* CONTACT FORM */
.contact.section {
  padding: 4rem 0;
  background: #f4f4f4;
}

.common_heading {
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.common_heading::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background-color: #007bff;
  margin: 10px auto 0;
  border-radius: 2px;
}

.contact .card {
  background: rgba(138, 159, 193, 0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(138, 159, 193, 0.25);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease-in-out;
}

.contact .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* Form Labels */
.contact label.form-label {
  font-weight: 600;
  color: #333;
}

/* Input Fields */
.contact input.form-control,
.contact textarea.form-control,
.contact select.form-select {
  border-radius: 10px;
  border: 1px solid #ced4da;
  padding: 0.75rem;
  transition: border-color 0.3s ease;
  font-size: 0.95rem;
}

.contact input.form-control:focus,
.contact textarea.form-control:focus,
.contact select.form-select:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.15);
}

/* Placeholder Text */
.contact input::placeholder,
.contact textarea::placeholder {
  color: #aaa;
}

/* Form Text Help */
.contact .form-text {
  font-size: 0.85rem;
  color: #666;
}

/* Button Styles */
.contact button.btn-primary {
  background-color: #007bff;
  border: none;
  border-radius: 30px;
  padding: 0.6rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.contact button.btn-primary:hover {
  background-color: #0056b3;
}

/* Icon spacing */
.contact i.bi {
  color: #007bff;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .contact .card {
    padding: 1.5rem;
  }

  .contact h2.common_heading {
    font-size: 1.75rem;
  }
}

@media (max-width: 576px) {
  .contact .row .col-md-6 {
    margin-bottom: 1rem;
  }

  .contact button.btn {
    width: 100%;
  }
}


/* FOOTER */
footer {
  background-color: #111;
  color: #fff;
  padding: 50px 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  font-family: Arial, sans-serif;
}

footer h2 {
  font-size: 18px;
  margin-bottom: 15px;
}

footer p,
footer a {
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
}

footer a:hover {
  color: red;
  border-bottom: #0d6efd 1px solid;
}

footer .social a {
  font-size: 20px;
  margin-right: 15px;
}


/* LOADING SHAPE ANIMATION */
.shapes {
    width: 57.6px;
    height: 57.6px;
    display: flex;
    transform-origin: 50% 125%;
    animation: shapes-zacm6c 1.8s infinite linear;
}

.shapes:before,
.shapes:after {
    content: "";
    flex: 1;
    background: #ffb147;
    animation: inherit;
    transform-origin: bottom left;
    animation-name: shapes-9intnl;
}

.shapes:before {
    transform-origin: bottom right;
    --s: -1;
}

@keyframes shapes-zacm6c {

    0%,
    10% {
        transform: translateY(0) scaleY(1);
    }

    49.99% {
        transform: translateY(-75%) scaleY(1);
    }

    50% {
        transform: translateY(-75%) scaleY(-1);
    }

    90%,
    100% {
        transform: translateY(-150%) scaleY(-1);
    }
}

@keyframes shapes-9intnl {

    10%,
    90% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(calc(var(--s, 1)*90deg));
    }
}

.hero-section {
  position: relative;
  overflow: hidden;
}

.image-wrapper {
  position: relative;
}

.hero-img {
  width: 90%;
  height: auto;
  display: block;
}

.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  background: rgba(0, 0, 0, 0.3);
  padding: 2rem;
  border-radius: 1rem;
  width: 90%;
  max-width: 700px;
}

.banner-content h1,
.banner-content p {
  margin: 0.5rem 0;
}


/* PRODUCTS */
.gallery {
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease;
  position: relative;
}

.gallery:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  display: none;
  transition: opacity 0.9s ease-in-out;
}

.gallery:hover .product-image {
  display: block;
  opacity: 1;
}

.gallery .desc:hover + .product-image {
  display: block;
}

.card-body.desc {
  z-index: 2;
  background: #fff;
  transition: background 1s;
}

/* WHY US */
.common_heading span {
  color: #0d6efd;
}

.whyus_box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whyus_box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.card.gallery {
    overflow: hidden;
    position: relative;
  }

  .options-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 2;
    padding: 10px;
  }

  .card.gallery:hover .options-hover {
    opacity: 1;
  }

  .option-item {
    text-align: center;
    margin-bottom: 10px;
  }

  .option-item img {
    width: 80px;
    height: auto;
    border-radius: 8px;
    margin-bottom: 5px;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .option-item img:hover {
    transform: scale(10);
  }

  .option-item span {
    font-size: 14px;
    color: #333;
    font-weight: 500;
  }