/* Reset and Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", sans-serif;
    line-height: 1.6;
    color: #2E2E2E;
    background-color: #FAF4EF;
  }
  
  a {
    text-decoration: none;
    color: #D87D4A;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  /* Header / Navbar */
  
.main-header {
    background-color: #e67e00; 
    padding: 15px 0;
    color: white;
    top: 0;
    z-index: 1000;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .logo-container {
    display: flex;
    align-items: center;
  }
  
  .site-logo {
    height: 50px; 
    margin-right: 10px;
  }
  
  .logo {
    font-size: 34px;
    font-weight: bold;
    color: white;
    margin: 0;
    font-weight: 700;
  }
  
  .navbar {
    display: flex;
    gap: 20px; 
  }
  
  .nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
  }
  
  .nav-links li {
    margin-left: 20px;
  }
  
  .nav-links a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #f0c783; 
  }
  
  .nav-links .active {
    color: #dad3c8; 
  }
  
  /* Mobile responsiveness */
 @media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    align-items: center;
    padding: 10px;
  }

  .logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }

  .site-logo {
    height: 30px;
    margin-right: 10px;
  }

  .logo {
    font-size: 20px;
    margin: 0;
  }

  .navbar {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-links li {
    margin: 5px 10px;
  }

  .nav-links a {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .site-logo {
    height: 28px;
  }

  .logo {
    font-size: 20px;
  }

  .nav-links a {
    font-size: 14px;
  }
}

/* Hero Section */

.hero {
    position: relative;
    background-image: url('../images/hero1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
    color: white;
    padding: 100px 20px;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 8s ease-in-out forwards;
    overflow: hidden;
  }
  
  /* Subtle Overlay */
  .hero::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
    z-index: 1;
  }
  
  /* Text inside hero */
  .hero-text {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
    text-align: center;
    animation: fadeInUp 2s ease forwards;
  }
  
  .hero-text h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
  }
  
  .hero-text p {
    font-size: 20px;
    margin-bottom: 25px;
    color: #f5f5f5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }
  
  /* Button */
  .hero-text .btn {
    background-color: #ff9800;
    color: white;
    padding: 12px 26px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 17px;
    font-weight: bold;
    transition: background-color 0.3s ease;
  }
  
  .hero-text .btn:hover {
    background-color: #e67e00;
  }
  
  @media (max-width: 768px) {
  .hero {
    padding: 60px 15px;  
    min-height: 350px;   
  }

  .hero-text h2 {
    font-size: 28px; 
  }

  .hero-text p {
    font-size: 16px; 
  }

  .hero-text .btn {
    font-size: 15px; 
    padding: 10px 20px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 40px 10px; 
    min-height: 280px;
  }

  .hero-text h2 {
    font-size: 22px;
  }

  .hero-text p {
    font-size: 14px;
  }

  .hero-text .btn {
    font-size: 14px;
    padding: 8px 16px;
  }
}

  /* Background Zoom Animation */
  @keyframes zoomIn {
    0% {
      background-size: 100%;
    }
    100% {
      background-size: 110%;
    }
  }
  
  /* Fade in text */
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  
 
  /* Features Section */
  .features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 40px 20px;
    background-color: #EFE9E5;
  }
  
  .feature {
    background: white;
    margin: 10px;
    padding: 20px;
    width: 250px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
 

/* Tariff Section */
.tariff-section {
    background-color: #f9f9f9;
    padding: 60px 20px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
  }
  
  .tariff-section h2 {
    font-size: 2.5rem;
    color:#e67e00;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  

  .tariff-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 900px;
    margin: auto;
  }
  
  /* Tariff Card Styling */
  .tariff-card {
    background: linear-gradient(135deg, #fda085, #f6d02f);
    padding: 20px 30px;
    border-radius: 10px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto; 
    position: relative;
    overflow: hidden;
  }
  
  .tariff-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  }
  
  /* Icon styling */
  .tariff-card .icon {
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 2rem;
    color: #fff;
  }
  
  /* Tariff Info Styling */
  .tariff-card .tariff-info {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
  }
  
  .tariff-card .tariff-info p {
    font-size: 1.4rem;
    color:#834b07;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .tariff-card .tariff-info span {
    font-size: 1.2rem;
    color:rgb(90, 51, 5);
    font-weight: normal;
  }
  
  /* Animation for fade-in */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Media Query for mobile responsiveness */
  @media (max-width: 768px) {
    .tariff-box {
      grid-template-columns: 1fr; 
      gap: 20px;
    }
  
    .tariff-card {
      padding: 20px;
      height: auto; 
    }
  
    .tariff-card .icon {
      font-size: 1.5rem;
    }
  
    .tariff-card .tariff-info p {
      font-size: 1.2rem; 
    }
  
    .tariff-card .tariff-info span {
      font-size: 1rem; 
    }

      .tariff-section h2 {
    font-size: 1.5rem;
    color:#e67e00;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  
  }
  
  
/* Complementary Section */
.complementary-section {
    background-color: #fff8f2;
    padding: 60px 20px;
    text-align: center;
    animation: fadeIn 1s ease-in-out;
  }
  
  .complementary-section h2 {
    font-size: 2.5rem;
    color: #e67e00;
    margin-bottom: 30px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
  }
  
  .complementary-section h2:hover {
    color: #e67e00;
  }
  
  /* Box containing complementary services */
  .complementary-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: auto;
    background: #ffffff;
    padding: 30px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    font-size: 16px;
    color:#834b07;
    line-height: 1.8;
    list-style: none;
    animation: fadeIn 1.5s ease-in-out;
  }
  
  /* Complementary items */
  .complementary-item {
    background-color: #f9dbca;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .complementary-item i {
    font-size: 2rem;
    color:#fda085; 
    margin-bottom: 10px;
  }
  
  .complementary-item p {
    font-size: 1.2rem;
    color: #834b07;
    margin: 0;
  }
  
  
  /* Hover effect on the items */
  .complementary-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  }
  
  .complementary-item:hover i {
    color:#d2461f 
  }
  
  /* Animation for fade-in effect */
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  /* Media Query for mobile responsiveness */
  @media (max-width: 768px) {
    .complementary-section {
      padding: 40px 15px;
    }
  
    .complementary-box {
      grid-template-columns: 1fr; 
      padding: 25px 20px;
    }
  
    .complementary-section h2 {
      font-size: 1.5rem;
      color: #e67e00;
    }
  
    .complementary-item {
      font-size: 1rem;
      padding: 15px;
    }
  }

  /* Footer */
   footer {
    background-color: #040505;
    color: white;
    padding: 20px;
    margin-top: 30px;
    border-top: 2px solid #00796b;
    text-align: center
  }
  
  .card.footer-contact {
    text-align: center;
  }

  footer .contact-info h4{
    font-size: 22px;
  }
  
  footer .social-section {
    margin-top: 20px;
  }
  
  footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;

  }
  
  footer .footer-copyright {
    margin-top: 30px;
    font-size: 14px;
    text-align: center;
    color: white;
  }
  
  .social-icons img:hover {
    transform: scale(1.1);
  }

  footer .social-icons img {
    width: 28px; 
    height: 28px;
    transition: transform 0.3s ease;
  }
  
  footer .social-icons img:hover {
    transform: scale(1.15); 
  }

/* Gallery Section Title */
#gallery h2 {
  text-align: center;
  font-size: 44px;
  margin-bottom: 10px;
  color: #e67e00;
}

/* Carousel Container */
.image-carousel {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 20px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Images inside Carousel */
.image-carousel img {
  flex: 0 0 auto;
  width: 400px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
   box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  image-rendering: crisp-edges;
  backface-visibility: hidden;

  }

/* Optional Hover Effect */
.image-carousel img:hover {
  transform: scale(1.03);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .image-carousel img {
    width: 320px;
    height: 300px;
  }

  #gallery h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 10px;
  color: #e67e00;
}
}

@media (max-width: 480px) {
  .image-carousel img {
    width: 290px;
    height: 260px;
  }
}

/* Lightbox Base */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 60px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

/* Lightbox Image */
.lightbox-content {
  display: block;
  margin: auto;
  max-width: 900px;
  max-height: 580px;
  object-fit: cover;
  border-radius: 10px;
  width: 90vw;
  height: 65hv;
  object-position: center;
}

/* Close Button */
.lightbox .close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #ffffff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
}

/* Arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 30px;
  user-select: none;
  transition: 0.3s;
}

.prev {
  left: 0;
}

.next {
  right: 0;
}

@media (max-width: 600px) {
  .lightbox-content {
    width: 95vw;
    height: 55vh;
  }
}

#location {
  width: 90%; 
  max-width: 800px; 
  height: auto; 
  margin: 40px auto; 
  text-align: center;
  padding: 20px; 
}
#location h2{
  color: #D87D4A;
  padding: 15px;
  font-size: 35px;
}
#location iframe {
    width: 100%; 
    height: 400px; 
    border-radius: 10px; 
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); 
}

/* Mobile Responsive */
@media (max-width: 480px) {

#location h2{
  color:#D87D4A;
  padding: 15px;
  font-size: 25px;
}

 #location iframe {
        height: 330px; 
    }
}

/* Sticky Contact Us Button */
.sticky-contact-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: linear-gradient(135deg, #ffcc70, #e7ba55);
  color: #1a1a1a;
  padding: 14px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  display: flex;
  align-items: center;
  z-index: 999;
  transition: transform 0.3s ease, background 0.3s ease;
  animation: pulse 2s infinite;
}

.sticky-contact-btn i {
  margin-right: 10px;
  font-size: 18px;
}

.sticky-contact-btn:hover {
  transform: scale(1.08);
  background: linear-gradient(135deg, #f4ae42, #c98a00);
  color: white;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 204, 112, 0.7);
  }
  70% {
    transform: scale(1.03);
    box-shadow: 0 0 0 12px rgba(255, 204, 112, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 204, 112, 0);
  }
}

