body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

.navbar {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background: #fff;
}

nav img{
    height: 50px;
    border-radius: 50%;
    padding: 5px;
}

.navbar-brand span {
    color: #e67e22;
}

.hero {
    position: relative;
    height: 100vh;
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
    filter: brightness(70%);
}

.carousel-caption {
    bottom: 35%;
}

.carousel-caption h2 {
    font-size: 3rem;
    font-weight: bold;
    animation: fadeInDown 1s;
}

.carousel-caption p {
    animation: fadeInUp 1.5s;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    text-align: center;
    margin: 60px 0 30px;
    font-weight: 600;
    position: relative;
}

.section-title::after {
    content: "";
    width: 80px;
    height: 3px;
    background: #e67e22;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.card-hover {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
    border: none;
    padding: 20px;
    border-radius: 12px;
}

.card-hover:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #222, #333);
    color: #fff;
    padding: 50px 20px 20px;
}

.footer h5 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
}

.footer h5 span {
    color: #e67e22;
}

.footer p {
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e67e22;
}

.footer-contact li {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-contact i {
    color: #e67e22;
    margin-right: 8px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

/* About Section */
.about-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 100px 60px;
  flex-wrap: wrap;
  background: #fff;
}

.about-text {
  flex: 1;
  padding-right: 40px;
  flex-wrap: wrap;
  animation: fadeInLeft 1.5s ease-in-out;
}

.about-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  margin-bottom: 15px;
  color: #555;
}

.about-img {
  flex: 1;
  text-align: center;
  animation: fadeInRight 1.5s ease-in-out;
}

.about-img img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

/* Gallery */
.gallery {
  padding: 10px 60px;
  text-align: center;
}

.gallery h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
}

.gallery-item img:hover {
  transform: scale(1.1);
  filter: brightness(85%);
}


/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
/* ============================= */
/* MEDIA QUERIES FOR RESPONSIVE */
/* ============================= */

/* Tablets (≤ 992px) */
@media (max-width: 992px) {
  .navbar {
    padding: 15px 30px;
  }

  .about-section {
    flex-direction: column;
    text-align: center;
    padding: 100px 30px;
    text-align: justify;
  }

  .about-text {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .about-text h1 {
    font-size: 2rem;
  }

  .gallery {
    padding: 40px 30px;
  }
}

/* Mobile devices (≤ 768px) */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .nav-links li {
    margin: 10px 0;
  }

  .about-text h1 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }

  .gallery h2 {
    font-size: 1.5rem;
  }
}

/* Small phones (≤ 480px) */
@media (max-width: 480px) {
  .navbar {
    padding: 10px 20px;
  }

  .logo img {
    height: 30px;
  }

  .logo span {
    font-size: 0.9rem;
  }

  .about-text h1 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .gallery h2 {
    font-size: 1.3rem;
  }
}
/* Contact Section */
.contact-section {
  display: flex;
  justify-content: space-between;
  padding: 140px 40px;
  flex-wrap: wrap;
  background: #fff;
}

.contact-form {
  flex: 1;
  min-width: 200px;
  margin-right: 30px;
  animation: fadeInLeft 1.2s ease-in-out;
}

.contact-form h1 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #222;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  transition: border 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #f4a261;
  outline: none;
}

.contact-form button {
  padding: 12px;
  background: #f4a261;
  border: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #e76f51;
}

.contact-map {
  flex: 1;
  min-width: 200px;
  animation: fadeInRight 1.2s ease-in-out;
}

.contact-map h2 {
  margin-bottom: 15px;
  font-size: 1.5rem;
  color: #222;
}

.contact-map iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}
/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
/* Services Section */
.services-section {
  padding: 100px 60px;
  text-align: center;
  background: #fff;
}

.services-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #222;
}

.subtitle {
  margin-bottom: 40px;
  color: #555;
  font-size: 1.1rem;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  justify-content:center;
  text-decoration: none;
}

.service-card {
  background: #fdfdfd;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  text-decoration: none;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-card h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222;
}

.service-card p {
  color: #555;
  font-size: 1rem;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.2);
}
/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    padding: 15px 20px;
  }

  .nav-links {
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: start;
  }

  .services {
    padding: 100px 20px;
  }

  .service-card img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .services h1 {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

}
/* Dropdown */
.dropdown-content {
  display: none;
  position: absolute;
  top: 35px;
  left: 0;
  background: #333;
  border-radius: 6px;
  min-width: 180px;
  z-index: 10;
  list-style: none;
  padding: 10px 0;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
}

.dropdown-content li {
  margin: 0;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s;
}

.dropdown-content a:hover {
  background: #f4a261;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: block;
}
/* Services Section */
.services {
  padding: 100px 80px;
  text-align: center;
}

.services h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #222;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: fadeInUp 1s ease-in-out;
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #444;
}

.service-card p {
  color: #666;
  font-size: 1rem;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 6px 16px rgba(0,0,0,0.25);
}
.WhatsApp {
  position: fixed;
  bottom: 40px;
  right: 20px;
  font-size: 30px;
  background: #25D366;
  color: #ffffff;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s; 
  z-index: 20; 
}
.WhatsApp i{
  color: #fff;
}
.WhatsApp:hover {
  background: #128C7E;
}






