/* Custom Styles */
body {
  font-family: 'Poppins', sans-serif;
}
.navbar { background: #007bff; }
.logo{
	font-size: 25px;
	font-weight: 600px;
}
.logo img{
	width: 50px;
	height: 50px;
}

.hero-section h1 {
  font-weight: 600;
}

/* About Section Styles */
.about-section img {
  max-width: 100%;
}

.about-section h2 {
  font-weight: 600;
  color: #2c3e50;
}

.about-section p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}

.about-section ul {
  margin-top: 20px;
}

.about-section ul li {
  margin-bottom: 10px;
  font-size: 16px;
  color: #555;
}

.about-section ul li i {
  color: #3498db;
}

/* Services Section Styles */
.services-section h2 {
  font-weight: 600;
  color: #2c3e50;
}

.service-card {
  display: flex;
  align-items: center;
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.service-icon {
  width: 130px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3498db;
  color: #fff;
  border-radius: 50%;
  margin-right: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.service-card:hover .service-icon {
  background: #2980b9;
  transform: scale(1.1);
}

.service-icon i {
  font-size: 24px;
}

.service-content h3 {
  font-size: 20px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.services-section img {
  max-width: 100%;
}

/* Gallery Styles */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
}

/* Modal Styles */
.modal-body img {
  max-height: 70vh;
  width: auto;
  margin: 0 auto;
}

.modal-body p {
  font-size: 18px;
  color: #333;
}

.modal-body img{}

.feedback-section img {
  max-width: 100%;
}

.contact-section iframe {
  border: 0;
}

.footer a {
  text-decoration: none;
}