body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

strong{
  color: #cc0004;
}

.fw{
  text-decoration: underline #cc0004;
}
/* Header styles */


header {
  background-color: #f2f2f2;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container{
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.name{
  margin-top: -20px;
}
.name h1{
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  color: #cc0004;
}

.menu-toggle {
  font-size: 1.8em;
  cursor: pointer;
  display: none;
  color: #cc0004;

}
.menu {
  margin-top: -20px;
  margin-bottom: 10px;
  text-align: center;
}

.menu a {
  color: #58585a;
  font-weight: bold;
  padding: 5px 15px;
  text-decoration: none;
  font-size: 1.2rem;
  border-right: 2px solid #cc0004;
}
 #lb{
  border-left: 2px solid #cc0004;
 }

.menu a:hover {
  color: #cc0004;
}



/* Home Section Style */



#home {
  position: relative;
  height: auto;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: auto;
}

.slider {
  display: flex;
  width: 100%;
  height: 90vh;
}

.slide {
  flex: 1;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  height: max-content;
  width: max-content;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 1;
  background-color: rgba(242, 242, 242, 0.6); /* Light gray with transparency */
  padding: 20px;
  border-radius: 10px;
}
.content h1{
  font-size: 3rem;
  font-weight: bolder;
  color: #cc0004;
}

.Alert{
  width: 100%;
  height: auto;
  background-color: #f2f2f2;
  padding: 30px 0;
  text-align: center;
}
.Alert h1{
  font-size: 3rem;
  font-weight: bolder;
  color: #cc0004;
}
.Alert h2{
  font-size: 2rem;
  font-weight: bold;
  color: green;
}
.Alert h3{
  font-size: 1.8rem;
  font-weight: bold;
  color: #58585a;
}
@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 1; }
}
.blinking {
  animation: blink 3s infinite;
}


/* About Section Style */



#about {
  background-color: #f9f9f9;
}

.about-text {
  width: auto;
  height: auto;
  padding: 25px 60px;
  justify-content: space-between;
  text-align: center;
}
.about-text h1{
  color: #cc0004;
  font-size: 3rem;
  margin-bottom: 50px;
}

.about-text p {
  color: #555;
  font-size: 1.6rem;
}

.logo-c{
  width: 90%;
  margin-top: 10px;
  margin-left: 5%;
  display: flex;
  justify-content: space-between;
  position: absolute;
}

.logo-b1, .logo-b2{
  width: 275px;
  height: 280px;
  border-radius: 50%;
}
.logo-b1 img, .logo-b2 img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* testimonials Section Style */


#testimonials {
  background-color: #f2f2f2;
  padding: 30px 0;
  text-align: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

#testimonials h1{
  color: #cc0004;
  font-size: 3rem;
  margin-bottom: 50px;
}

.testimonial:hover {
  transform: scale(1.05);
  box-shadow: 0 0 5px #cc0004;
  border: 1px solid #cc0004;
}

.testimonials-container {
  display: flex;
  justify-content: space-around;
  padding: 0 50px;
  width: auto;
  height: auto;
  text-align: center;

}

.testimonial {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  width: 100%; /* Full width by default */
  max-width: 300px;
  height: auto;
  color: #58585a;
}

.testimonial h3{
  text-align: center;
  font-size: 1.6rem;
  color: #cc0004;
}

.testimonial h4{
  text-align: center;
  font-size: 1.2rem;
}

.testimonial p{
  font-size: 1.2rem;
}

.profile-image {
  width: 130px;
  height: 130px;
  background-color: #ccc; /* Placeholder color */
  margin: 0 auto 10px;
  overflow: hidden;
}

.profile-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  text-align: left;
}

.rating {
  margin-top: 10px;
}

.star {
  color: gold;
  font-size: 1.8rem;
  margin-right: 5px;
}


/* Contact Section Style */


#contact {
  background-color: #f9f9f9;
  padding: 30px 0;
  text-align: center;
  width: 100%;
}

#contact h1{
  color: #cc0004;
  font-size: 3rem;
  margin-bottom: 50px;
}

.contact-container {
  display: flex;
  justify-content: space-around;
  padding: 20px 40px;
  width: auto;
  height: auto;
}

.contact-form {
  width: 100%;
  max-width: 350px;
  margin-bottom: 20px;
  color: #58585a;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 1.4rem;
  margin: 15px 0;
  text-align: left;
  color: #cc0004;
}

.contact-form input,
.contact-form textarea {
  font-size: 1.2rem;
  padding: 10px;
  margin-bottom: 10px;
  width: 100%;
}

.contact-form input:focus {
  border: 1px solid #cc0004;
  outline: 1px solid #cc0004;
  box-shadow: 0 0 5px #cc0004;
}

.contact-form input[type="submit"] {
  background-color: #cc0004;
  color: white;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  margin: 10px;
}

.contact-info {
  display: flex;
  justify-content: center;
  text-align: left;
}

.contact-info div {
  margin-left: 20px;
}

.contact-info h3{
  font-size: 1.8rem;
  font-weight: bold;
  color: #cc0004;
}

.contact-info p {
  margin-bottom: 5px;
  font-size: 1.6rem;
  color: #cc0004;
}

.contact-info i {
  margin-right: 5px;
}



/* Footer Style */


footer{
  font-size: 1.2rem;
  text-align: center;
  color: #58585a;
  background-color:#f2f2f2;
  padding: 5px;
}


/* Media Query */


@media screen and (max-width: 1024px){

  .contact-container{
    flex-direction: column;
  }
  .contact-form{
    max-width: 100%;
  }
  .testimonials-container{
    flex-direction: column;
    align-items: center;
  }
  .Alert h1{
    font-size: 2.8rem;
  }
  .Alert h2{
    font-size: 1.8rem;
  }
  .Alert h3{
    font-size: 1.6rem;
  }
  .about-text p{
    font-size: 1.4rem;
  }
  .about-text h1, #testimonials h1, #contact h1 {
    font-size: 2.8rem;
  }
  .content h1{
    font-size: 2.8rem;
  }
  .content h2{
    font-size: 2.2rem;
  }
  .testimonial h3{
    font-size: 1.4rem;
  }
  .logo-c{
    width: 100%;
    margin-left: 0;
  }
  .logo-b1, .logo-b2{
    width: 245px;
    height: 250px;
    border-radius: 50%;
  }
}


@media (max-width: 768px) {
  .menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    height:auto;
    color: #58585a;
    background-color: #A3A4A8;
    align-items: center;
    padding: 20px 0;
}
#lb{
  border-left: none;
}
.menu.show-menu {
    display: flex;
}

.menu a {
    margin: 10px;
    border-right: none;
    border-bottom: 2px solid #cc0004;
}

.menu-toggle {
    display: block;
    text-align: center;
    margin-top: -20px;
    margin-bottom: 10px;
}

.testimonials-container{
  flex-direction: column;
  align-items: center;
}

.contact-container{
  flex-direction: column;
}
.content h1{
  font-size: 2.4rem;
}
.content h2{
  font-size: 1.8rem;
}
.Alert h1{
  font-size: 2.6rem;
}
.Alert h2{
  font-size: 1.6rem;
}
.Alert h3{
  font-size: 1.4rem;
}
.contact-info h1{
  font-size: 1.6rem;
}
.contact-info p{
  font-size: 1.4rem;
}
.about-text h1, #testimonials h1, #contact h1 {
  font-size: 2.6rem;
}
.content h1{
  font-size: 2.6rem;
}
.name h1{
  font-size: 2.6rem;
}
.logo-c{
  flex-direction: column;
  position:relative;
  margin: 0;
  width: 100%;
  height: 220px;
  align-items: center;
  
}
.logo-b2 img {
  display: none;
}
.logo-b1 {
  width: 275px;
  height: 280px;
}
footer{
  padding: 5px 60px;
}
}


