* {
  box-sizing: border-box;
  margin: 0;
}

/* CSS for body */
body {
  background-color: darkgray;
}

h2 {
  color: #fff;
  text-decoration: none;
}


/* CSS for the wrapper div */
#wrapper {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  background: #000;
}

/* Rules for Navigation */

.logo{
  height: 75px;
  width: 300px;
  /* width: 75px; */
  /* border-radius:50%; */
}

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1;
}





/* Rules for navigation links */

#nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav-links li {
  margin: 0 10px;
}


nav li a {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
  position: relative;
  font-family: 'Lexend Deca', sans-serif;
  font-weight: 700;

}

nav li a::before {
  content: '';
  display: block;
  height: 5px;
  background: #331c00;
  position: absolute;
  top: -.75em;
  left: 0;
  right: 0;
  transform: scale(0, 1);
  transition: transform ease-in-out 350ms;
}

nav li a:hover::before {
  transform: scale(1, 1);
}

/* style for slider */
.image-sliderfade {
  display: none;
}

img {
  vertical-align: middle;
}

/* Slideshow container */
.slider-container {
  max-width: 100%;
  position: relative;
  margin: auto;
  /* padding-top: 10px; */
  background-color: #000;
}

/* Caption text */
.text {
  font-family:'Nunito', Times, serif;
  color: #f2f2f2;
  font-size: 15px;
  padding: 20px 15px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 40%;
  background: rgba(0, 0, 0, 0.7);
  text-align: left;
}

/* The dots/bullets/indicators */

#dots {
  background-color: #000;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: transparent;
  border-color: #ddd;
  border-width: 5 px;
  border-style: solid;
  border-radius: 50%;
  display: inline-block;
  transition: border-color 0.6s ease;
}

.active {
  border-color: #666;
}

/* Animation */
.fade {
  -webkit-animation-name: fade-image;
  -webkit-animation-duration: 1.5s;
  animation-name: fade-image;
  animation-duration: 1.5s;
}

.quote {
  margin: 0;
  background: #eee;
  padding: 1em;
  border-radius: 1em;
}

.quote figcaption,
.quote blockquote {
  margin: 1em;
}

.fancy {
  padding: 1em;
  width: 100%;
  height: 200px;
  box-sizing: border-box;


  /* At the bottom of our background stack,
     let's have a misty grey solid color */
  background-color: #e4e4d9;
}

.grid-container {
  display: grid;
  grid-template-columns: auto auto;
  /* grid-gap: 10px;  */
  /* background-color: wheat; */
}

.box {
  padding: 20px;
  background-color: thistle;
  box-shadow: rgba(255, 0, 0, 0.15) 0px 5px 15px 0px;
  border: 1px solid #000;
}

.box1 {
  grid-row: span 2;
  /* Spanning two rows */
  background-color: #006970;
  margin: 200px;


}


@-webkit-keyframes fade-image {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

@keyframes fade-image {
  from {
    opacity: 0.4;
  }

  to {
    opacity: 1;
  }
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .text {
    font-size: 11px;
  }
}

#banner {
  position: relative;
  background-color: rgb(70, 127, 132);
}
#banner img{
  object-fit: cover;
  width:100%;
  height: 100vh;
  opacity: 0.7;
  /* aspect-ratio: 16/9; */
}
/* style Rules for overlay div */
.overlay {
  position: absolute;
  /* top: 390px; */
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 250px;
}

#sub-header{
  font-family: 'Nunito';
  font-weight: 600;
}

/* Section 1 */

.section1 {
  padding-top: 0px;
  margin-top: 0px;
  background-color: #000;
}

.sub_section1 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.sec1_text {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  text-align: center
}

.section1_img{
  padding-top: 70px;
  width: 100%;
  justify-content: center;
}
 .fullscreen-image {      
  object-fit: cover; 
  margin-left: 250px;    
  /* display: block; */
  max-width: 100%;
  height: auto;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

}  

/* syle for repair service container div */
.repair-services-container {
  width: 100%;
  max-width: 960px;
  display: flex;
  justify-content: space-evenly;
  background-color: #fff7ef;
  align-items: center;
  flex-flow: wrap;
  padding: 70px 0 70px 0;
}

.repair-service {
  width: 274px;
  margin: 0px;
  background-color: #f2f2f2;
  border-radius: 5px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  margin: auto;

}

.repair-service-image img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
}

.repair-service-title {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 700;
  color: #FFF;
}

.repair-service-description {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}


#services-section {
  position: relative;
  background-color: #fff7ef;
}

/* #repair-service-head h2 {
  display: block;
} */

/* Style for card container div */
.card-container {
  width: 100%;
  max-width: 960px;
  display: flex;
  justify-content: space-evenly;
  background-color: silver;
  align-items: center;
  flex-flow: wrap;
  padding: 70px 0 70px 0;
}

.card-1 .card-2 .card-3 h1 {
  color: #000;
}

.card {
  width: 300px;
  padding: 15px;
  min-height: 630px;
}

.card-1 {
  background-color: #331c00;
  border-radius: 10px;
  position: relative;
  top: 0;
  transition: top ease 0.5s;
}

.card-1:hover {
  top: -10px;
}

.card-2 {
  background-color: #00391f;
  border-radius: 10px;
  position: relative;
  top: 0;
  transition: top ease 0.5s;
}

.card-2:hover {
  top: -10px;
}

.card-3 {
  background-color: #004241;
  border-radius: 10px;
  position: relative;
  top: 0;
  transition: top ease 0.5s;
}

.card-3:hover {
  top: -10px;
}

.card-content {
  padding: 10px;
}

/* CSS for h1 tags */

h1 {
  color: #fff;
  text-transform: uppercase;
  font-family: 'Lexend Deca', sans-serif;
  margin: 20px 0;
}

/* CSS for p tags */
p {
  color: #fff;
  font-family: 'Nunito','Big Shoulders Display', sans-serif;
  padding: 5px;
  font-size: 18px;
}

/* CSS for buttons on cards */
.btn {
  margin: 60px 0;
  padding: 15px 40px;
  border: 0;
  border-radius: 30px;
  outline: none;
  background-color: #FFF;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Lexend Deca', sans-serif;
  font-weight: 700;
}

.btn-1 {
  color: hsl(31, 77%, 52%);
}

.btn-2 {
  color: hsl(184, 100%, 22%);
}

.btn-3 {
  color: #004241;
}

.btn:hover {
  background-color: transparent;
  border: 2px solid #FFF;
  color: #FFF;
  transition: 0.4s;
}

#info-section {
  height: 350px;
  background-color: silver;
}

/* CSS for footer */
footer {
  background-color: #24262b;
  color: #fff;
  padding: 3em 1em;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  color: #cccccc;
}

.main {
  display: flex;
  margin-bottom: 3em;
}

.main img {
  height: 40px;
  width: 40px;
}

.footer-column {
  flex-basis: 200px;
  flex-grow: 1;
  text-align: left;
  margin-left: 87px;
}

.footer-heading {
  margin-bottom: 1em;
  color: #fff;
}

.main img {
  position: relative;
  top: 0;
  transition: top ease 0.5s;
}

.main img:hover {
  top: -10px;
}


.footer-link {
  display: block;
  padding: 5px 10px;

}

.footer-bott {
  display: flex;
}

.copyright {
  margin: 0 auto;
  text-align: center;
}


/* about us page */


.about-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-around;
  margin-top: 50px;
  background-color: #fff;
}

.founder-pic {
  margin-right: 50px;
  border-radius: 10px;
  /* object-fit: cover; */
}

.about-container p
{
  color: #000;

}

.founder-details {
  max-width: 400px;
  text-align: center;
  color: #fff;
  padding-left: 50px;
  font-family: 'Lexend Deca', sans-serif;
}

.company-details {
  margin-top: 50px;
  text-align: left;
  /* padding-left: 50px; */
  color: #000;
  margin-bottom: 50px;
  font-family: 'Lexend Deca', sans-serif;
}

.vtm-text{
  text-align: center;
  font-family:'Nunito', Times, serif;
  color: #f2f2f2;
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 25px;

}

/* CSS for the table */
table {
  border: 1px solid #000;
  width: 700px;
  margin: 0 auto;
  border-collapse: collapse;
  margin-bottom: 50px;
}

table#table-about-us {
  border: 1px solid #000;
  width: 510px;
  border-collapse: collapse;
}

/*  CSS for table cell  */
table tr td {
  padding: 5px;
  border: 1px solid #999;
  border-spacing: 0;
  border-collapse: collapse;
  font-weight: 400;
  color: #FFF;
}

/*   CSS for the table Top row  */
table tr th {
  background-color: #000;
  color: #fff;
  border: 1px solid #999;
  padding: 5px;
  font-weight: 700;
  border-spacing: 0;
}

/* CSS For Table Caption */
table caption {
  background-color: #999;
  color: #000;
  border-bottom: none;
  font-family: Cabin, Arial, sans-serif;
  font-weight: 700;
}

/* Contact us form */

form {
  max-width: 630px;
  margin: 50px auto;
  padding: 20px;
  background-color: #f4f7f8;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

select {
  padding: 10px;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: border-color 0.3s ease-in-out;
}

select:focus {
  border-color: #006970;
  outline: none;
}

#form-container button {
  padding: 15px;
  color: #FFF;
  background-color: #000;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  width: 100%;
  border: 1px solid #004241;
  transition: background-color 0.3s ease;
}

#form-container button:hover {
  background-color: #004241;
  cursor: pointer;
  /* background-color: transparent; */
  border: 2px solid #000;
  color:#fff;
  transition: 0.4s;
}

.btn:hover{
  background-color: transparent;
  border: 2px solid #FFF;
  color: #FFF;
  transition: 0.4s;
}
.btn{
  margin: 60px 0;
  padding: 15px 40px;
  border: 0;
  border-radius: 30px;
  outline: none;
  background-color: #FFF;
  font-size: 15px;
  cursor: pointer;
  font-family: 'Lexend Deca', sans-serif;
  font-weight: 700;
}

fieldset {
  margin-bottom: 30px;
  border: none;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

legend {
  text-align: center;
  font-size: 26px;
  font-family: 'Big Shoulders Display', sans-serif;
  color: #006970;
  margin-bottom: 20px;
}

input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select {
  display: block;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  margin-bottom: 20px;
  width: 100%;
  font-size: 16px;
  transition: border-color 0.3s ease-in-out;
}

input:focus, 
textarea:focus, 
select:focus {
  border-color: #006970;
  outline: none;
}

textarea {
  resize: vertical;
}

/* appointment form */

#appointment-container button {
  padding: 19px 39px 18px 39px;
  color: #FFF;
  background-color: #006970;
  font-size: 18px;
  text-align: center;
  font-style: normal;
  border-radius: 5px;
  width: 100%;
  border: 1px solid #004241;
  /* box-shadow: 0 -1px 0 rgba(255,255,255,0.1) inset; */
  margin-bottom: 10px;
}

select {
  padding: 6px;
  height: 32px;
  border-radius: 2px;
}

/*style rule for blog page */
.blog-row img {
  margin-right: 10px;
  width: 200px;
  height: auto;
  padding: 5px;
  border-radius: 10px;
}

.blog-row {
  display: flex;
  flex-direction: row;
  margin: 25px;
  border: 2px solid #F6F0C4;
  border-radius: 5px;

}

.blog-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.blog-text-container a {
  text-decoration: none;
  color: #fff;
}




/* Gallery */

.gallery * {
  font-family: Nunito, sans-serif;
}

.gallery .container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: block;
}

.gallery .text-blk {
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  line-height: 25px;
}

.gallery .mySwiper .swiper-pagination-bullet-active {
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: #f49892;
  opacity: 1 !important;
}

.gallery .mySwiper .swiper-pagination-bullet {
  width: 25px;
  height: 4px;
  display: inline-block;
  border-top-left-radius: 0%;
  border-top-right-radius: 0%;
  border-bottom-right-radius: 0%;
  border-bottom-left-radius: 0%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat-x: initial;
  background-repeat-y: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: #f49892;
}

.gallery .responsive-container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0px;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  justify-content: flex-start;
  max-width: 1490px;
  transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scaleX(1) scaleY(1) scaleZ(2);
  flex-direction: column;
  align-items: center;
}

.gallery .responsive-container-block.bg {
  flex-direction: column;
  align-items: center;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  position: relative;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  max-width: 1320px;
}

.gallery .text-blk.title {
  font-size: 36px;
  line-height: 45px;
  font-weight: 700;
  text-align: left;
  color: #f49892;
  max-width: 1490px;
  width: auto;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 40px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.gallery .text-blk.heading {
  font-size: 20px;
  line-height: 30px;
  color: white;
  font-weight: 400;
  text-align: center;
  max-width: 480px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  width: 480px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  
}

.gallery .container-block.card {
  width: 32.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery .text-blk.card-text {
  width: 100%;
  text-align: center;
  background-color: #333333;
  color: white;
  font-size: 20px;
  line-height: 34px;
  padding-top: 35px;
  padding-right: 15px;
  padding-bottom: 35px;
  padding-left: 15px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 50px;
  margin-left: 10px;
  font-family: 'Lexend Deca', 'Times New Roman', Times, serif;
}

.gallery .text-blk.name {
  color: white;
  text-align: center;
  font-size: 20px;
  line-height: 27.28px;
  font-weight: 700;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.gallery .text-blk.desig {
  color: white;
  text-align: center;
  line-height: 21.82px;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.gallery .responsive-container-block.card-cont {
  justify-content: space-evenly;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 80px;
  margin-left: 0px;
}

.gallery .container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: block;
}
.splide__slide img {
  width: 100%;
  height: auto;
  padding-left: 100px;
  padding-right: 100px;
}
.gallery .text-blk.title {
  font-size: 36px;
  line-height: 45px;
  font-weight: 700;
  text-align: left;
  color: #f49892;
  max-width: 1490px;
  width: auto;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  margin-top: 40px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
}

.gallery .text-blk.heading {
  font-size: 20px;
  line-height: 30px;
  color: white;
  font-weight: 400;
  text-align: center;
  max-width: 480px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 15px;
  margin-left: 0px;
  width: 480px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  padding-left: 0px;
  
}

.gallery .container-block.card {
  width: 32.5%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gallery .text-blk.card-text {
  width: 100%;
  text-align: center;
  background-color: #333333;
  color: white;
  font-size: 20px;
  line-height: 34px;
  padding-top: 35px;
  padding-right: 15px;
  padding-bottom: 35px;
  padding-left: 15px;
  margin-top: 0px;
  margin-right: 10px;
  margin-bottom: 50px;
  margin-left: 10px;
  font-family: 'Lexend Deca', 'Times New Roman', Times, serif;
}

.gallery .text-blk.name {
  color: white;
  text-align: center;
  font-size: 20px;
  line-height: 27.28px;
  font-weight: 700;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 0px;
  padding-left: 10px;
}

.gallery .text-blk.desig {
  color: white;
  text-align: center;
  line-height: 21.82px;
  padding-top: 5px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.gallery .responsive-container-block.card-cont {
  justify-content: space-evenly;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 80px;
  margin-left: 0px;
}

.gallery .container-block {
  min-height: 75px;
  height: fit-content;
  width: 100%;
  padding-top: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: block;
}
.splide__slide img {
  width: 100%;
  height: auto;
  padding-left: 100px;
  padding-right: 100px;
}

/* Product List Section */
.products-container {
  display: flex;
  /* Arrange products in a row */
  gap: 20px;
  /* Space between products */
  flex-wrap: wrap;
  justify-content: center;
  /* Wrap products to the next line on smaller screens */
}

.product-card {
  position: relative;
  width: 400px;
  /* Adjust as needed */
  overflow: hidden;
  /* Ensures content stays inside the card */
  border: 1px solid #ddd;
  /* Optional: Add a border */
  border-radius: 10px;
  /* Optional: Add rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  /* Optional: Add shadow */
  margin-bottom: 50px;
}

.product-card img {
  width: 100%;
  margin-bottom: 40px;
  padding: 10px;
  transition: opacity 0.3s ease-in-out;
  /* Smooth hover effect */
}

.product-card img:first-child {
  position: absolute;
  /* Stack images */
  top: 0;
  left: 0;
  opacity: 1;
  /* Show first image by default */
}

.product-card img:last-child {
  opacity: 0;
  /* Hide second image by default */
}

.product-card:hover img:first-child {
  opacity: 0;
  /* Hide first image on hover */
}

.product-card:hover img:last-child {
  opacity: 1;
  /* Show second image on hover */
}

.product-info {
  padding: 10px;
  text-align: center;
}

.product-info h2 {
  font-size: 1.2em;
  margin: 10px 0;
}

.product-info .price {
  font-weight: bold;
  color: #d32f2f;
  /* Example: Red color for price */
  margin-bottom: 10px;
}
