@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&display=swap');


/* Apply Fonts */
body {
  font-family: 'Poppins', sans-serif;
  color: #333;
}

h1, h2, h3, h4, h5, h6, .navbar-brand, .brand-text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

@font-face {
  font-family: 'kaftus';
  src: url(./fonts/Kaftus.ttf);
}

  .navbar-nav .nav-link {
    position: relative;
    transition: color 0.3s ease-in-out;
  }
  .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #f8b400; /* Gold underline */
    transition: width 0.3s ease-in-out;
  }
  .navbar-nav .nav-link:hover {
    color: #f8b400 !important; /* Highlight text on hover */
  }
  .navbar-nav .nav-link:hover::after {
    width: 100%; /* Underline expands on hover */
  }


/* Hide brand text in mobile */
.brand-text {
  font-size: 16px;
 font-weight: normal;
  color: #fff;
 font-family: 'Poppins', sans-serif;
 font-weight: bolder;
}





/* Fullscreen Carousel */
#heroCarousel .carousel-item img {
  height: 100vh;
  object-fit: cover;
}

/* Dark Overlay */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 38, 59, 0.6); /* theme overlay */
  z-index: 1;
}

/* Fullscreen Carousel */
#heroCarousel .carousel-item img {
  height: 100vh;
  object-fit: cover;
}

/* Dark Overlay */
.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 38, 59, 0.6);
  z-index: 1;
}

/* Caption Styling */
#heroCarousel .carousel-caption {
  position: absolute;
  top: 40%;
  left: 8%;
  z-index: 2;
  text-align: left;
}

#heroCarousel h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
  color: #fff;
}

#heroCarousel p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: #f1f1f1;
  margin-bottom: 20px;
}

#heroCarousel .btn {
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 30px;
  transition: 0.3s ease-in-out;
}

#heroCarousel .btn:hover {
  background: #03263b;
  color: #fff;
}

/* ✅ Custom Controls at Bottom-Right */
.carousel-controls-custom {
  position: absolute;
  bottom: 20px;
  right: 30px;
  display: flex;
  gap: 10px;
  z-index: 3;
}

.carousel-controls-custom .carousel-control-prev,
.carousel-controls-custom .carousel-control-next {
  position: static; /* remove default positioning */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  transition: 0.3s;
}

.carousel-controls-custom .carousel-control-prev:hover,
.carousel-controls-custom .carousel-control-next:hover {
  background: #03263b;
}

 .about-img {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
  }
  .about-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  }
.head1{
  color: 03263b;
}
.gallery-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff, #f9f9f9);
  text-align: center;
  overflow: hidden;
}

.gallery-section h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 10px;
}

.gallery-section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

/* Fade-in animations for title and subtitle */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

.fade-in.delay-1 {
  animation-delay: 0.5s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slider Styling */
.gallery-slider {
  overflow: hidden;
  position: relative;
}

.gallery-track {
  display: flex;
  gap: 20px;
  animation: scrollGallery 30s linear infinite;
  width: max-content;
}

.gallery-item {
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transform: scale(0.95);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

/* Auto-scroll keyframes */
@keyframes scrollGallery {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}




.showcase-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #ffffff, #ffffff);
  overflow: hidden;
}

.showcase-section h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  animation: fadeDown 1s ease forwards;
}

.showcase-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
  animation: fadeDown 1.2s ease forwards;
}

.showcase-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.showcase-cards .card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeUp 1s ease forwards;
}

.showcase-cards .card:nth-child(1) { animation-delay: 0.2s; }
.showcase-cards .card:nth-child(2) { animation-delay: 0.4s; }
.showcase-cards .card:nth-child(3) { animation-delay: 0.6s; }
.showcase-cards .card:nth-child(4) { animation-delay: 0.8s; }
.showcase-cards .card:nth-child(5) { animation-delay: 1s; }

.showcase-cards .card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.showcase-cards .card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
  transition: transform 0.5s ease;
}

.showcase-cards .card:hover img {
  transform: scale(1.05);
}

.showcase-cards .card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.showcase-cards .card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.5;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Why Choose Us Section */
.choose-us {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

.choose-us h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 15px;
  position: relative;
}

.choose-us h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #03263b;
  margin: 12px auto 0;
  border-radius: 2px;
}

.choose-us p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 50px;
}

/* Features Grid */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
}

/* Feature Card */
.feature {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

/* Icon Styling */
.feature i {
  font-size: 50px;
  color: #03263b;
  margin-bottom: 20px;
  display: inline-block;
  padding: 20px;
  border-radius: 50%;
  background: rgb(198 234 255);
  transition: all 0.4s ease;
}

.feature:hover i {
  background: #03263b;
  color: #fff;
  transform: rotate(15deg) scale(1.1);
}

/* Headings & Text */
.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #222;
}

.feature p {
  font-size: 0.95rem;
  color: #666;
}


/* Section Base */
.testimonial-section {
  background: linear-gradient(135deg, #fafafa, #f3f3f3);
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.section-title {
  font-size: 2.5rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 60px;
}

/* Cards Grid */
.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Card Design */
.testimonial-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 180deg, #ff6b35, #ffcc00, #6a5acd, #ff477e, #ff6b35);
  animation: spinBorder 8s linear infinite;
  z-index: 0;
  opacity: 0.15;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

/* Avatar Icon */
.avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35, #ffcc00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.avatar:hover {
  transform: scale(1.1) rotate(6deg);
}

.avatar i {
  animation: pulse 2.5s infinite;
}

/* Text */
.testimonial-text {
  font-size: 1rem;
  color: #444;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.client-name {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
}

.client-role {
  font-size: 0.95rem;
  color: #777;
}

/* Animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

@keyframes spinBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Section Base */
.image-content-section {
  background: #fff;
  padding: 80px 20px;
}

.image-content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

/* Left Image */
.image-box {
  flex: 1 1 45%;
}

.image-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}

.image-box img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* Right Content */
.content-box {
  flex: 1 1 50%;
}

.content-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #222;
}

.content-box p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #555;
}

/* Features List */
.features {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.features li {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #333;
  display: flex;
  align-items: center;
}

.features li i {
  color: #ff6b35;
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Button */
.btn-learn {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, #ff6b35, #ffcc00);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.btn-learn:hover {
  background: linear-gradient(135deg, #ffcc00, #ff6b35);
  transform: translateY(-3px);
}



/* Footer */
.footer {
  background: #03263a;
  color: #fff;
  padding: 60px 20px 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 14px;
  line-height: 1.6;
  color: #bbb;
}

.footer-links h3,
.footer-contact h3 {
  margin-bottom: 15px;
  font-size: 18px;
  color: #fff;
  position: relative;
}

.footer-links h3::after,
.footer-contact h3::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #f39c12;
  margin-top: 8px;
  border-radius: 5px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  text-decoration: none;
  color: #bbb;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #f39c12;
}

.footer-contact p {
  margin: 10px 0;
  font-size: 14px;
  color: #bbb;
}

.footer-contact i {
  margin-right: 10px;
  color: #f39c12;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 40px;
  font-size: 14px;
  color: #aaa;
}


.footer-container {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

/* Desktop */
.footer-logo, .footer-links, .footer-contact {
  flex: 1;
  min-width: 200px;
}


/* Mobile - column layout with center content */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;   /* stack vertically */
    align-items: center;      /* center horizontally */
    text-align: center;       /* center text */
    gap: 30px;
  }

  .footer-logo, 
  .footer-links, 
  .footer-contact {
    flex: unset;
    min-width: unset;
    width: 100%;
  }

  .footer-links ul {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;  /* center links */
  }

  .footer-contact p {
    margin: 5px 0;
  }

  .footer-bottom {
  text-align: center;   /* center the line */
  padding: 15px 0;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: #ccc;
  margin-top: 30px;
}
}


  .icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  }

  .service-card:hover .icon-box {
    transform: scale(1.1);
    background: #ff8800;
  }

  .service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  }



  .gallery-img {
    width: 100%;
    height: 250px; /* same height for all images */
    object-fit: cover; /* makes all images fit nicely */
    border-radius: 8px;
    cursor: pointer;
  }


  .services-slider {
  overflow: hidden;
  position: relative;
}

.services-track {
  display: flex;
  width: calc(300px * 20 + 20px * 20); /* card width * total cards + gap */
  animation: scroll 40s linear infinite;
  gap: 20px;
}

.service-card {
  min-width: 300px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.service-card img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}

.service-card h5 {
  padding: 15px;
  font-size: 18px;
  color: #333;
}

.service-card:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.services-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}



    .section-title {
      font-weight: 700;
      text-align: center;
      margin-bottom: 40px;
      color: #2c3e50;
    }
    .service-card, .area-card {
      border-radius: 15px;
      transition: all 0.3s ease;
      background: #fff;
      box-shadow: 0px 4px 10px rgba(0,0,0,0.08);
      padding: 25px;
      height: 100%;
    }
    .service-card:hover, .area-card:hover {
      transform: translateY(-5px);
      box-shadow: 0px 6px 15px rgba(0,0,0,0.15);
    }
    .service-icon {
      font-size: 2rem;
      color: #ff8800;
      margin-bottom: 15px;
    }
    .areas {
      background: #f9f9f9;
      padding: 50px 0;
    }


      .section-title {
      font-weight: 700;
      text-align: center;
      margin-bottom: 50px;
      color: #2c3e50;
      font-size: 2.2rem;
    }
    .service-card {
      background: #fff;
      border-radius: 18px;
      padding: 30px 25px;
      box-shadow: 0px 6px 15px rgba(0,0,0,0.08);
      transition: all 0.4s ease;
      height: 100%;
      text-align: center;
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
    }
    .service-card i {
      font-size: 2.2rem;
      color: #ff8800;
      margin-bottom: 15px;
    }
    .service-card h5 {
      font-weight: 600;
      margin-bottom: 15px;
      color: #ff8800;
    }
    .service-list {
      text-align: left;
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 15px;
      columns: 2;
    }
    .service-list li {
      padding: 6px 0;
    }
    .service-list li::before {
      content: "✔";
      color: #ff8800;
      font-weight: bold;
      margin-right: 8px;
    }
    @media (max-width: 768px) {
      .service-list {
        columns: 1;
      }
    }

       /* Service Area Styling */
    .areas-section {
      background: linear-gradient(135deg, #ff8800 0%, #00c6ff 100%);
      color: #fff;
      padding: 70px 0;
      border-radius: 40px 40px 0 0;
      margin-top: 60px;
    }
    .area-card {
      background: rgba(255, 255, 255, 0.15);
      border-radius: 15px;
      padding: 20px;
      text-align: center;
      font-weight: 500;
      transition: all 0.3s ease;
      color: #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .area-card:hover {
      background: rgba(255, 255, 255, 0.3);
      transform: translateY(-6px);
    }

     .service-areas-section {
    background: #f8f9fa;
  }
  .service-areas-section .section-title {
    font-weight: 700;
    font-size: 2rem;
    color: #222;
  }
  .area-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #444;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
  }
  .area-box:hover {
    background: #ff8800;
    color: #fff;
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
  }

  /* WhatsApp Button */
.whats {
  left: 20px;
  bottom: 80px;
  z-index: 1111;
}
.whatsapp-btn {
  background: #25d366;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.whatsapp-btn img {
  width: 30px;
  margin-right: 10px;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  background: #1ebe5d;
}

/* Call Button */
.call {
  right: 20px;
  bottom: 80px;
  z-index: 1111;
}
.call-btn {
  background: var(--primary, #ff5722);
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.call-btn img {
  width: 28px;
  margin-right: 10px;
}
.call-btn:hover {
  transform: scale(1.1);
  background: #e64a19;
}

/* Scroll Top */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 45px;
  height: 45px;
  background: var(--primary, #ff8800);
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  display: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 1111;
}
.scroll-top:hover {
  background: #0056b3;
  transform: translateY(-5px);
}

/* Animation (Bounce Effect) */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-4px); }
}
.whatsapp-btn, .call-btn {
  animation: bounce 2s infinite;
}

.map-full iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}


 .gallery-section {
    background: #f9f9f9;
  }
  .gallery-category {
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
    border-left: 4px solid #007bff;
    padding-left: 10px;
  }
  .gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform .3s ease;
  }
  .gallery-item img {
    width: 100%;
    display: block;
    transition: transform .4s ease;
  }
  .gallery-item:hover img {
    transform: scale(1.1);
  }

  
.gallery-img {
  width: 100%;
  height: 250px;       /* uniform size */
  object-fit: cover;   /* crop nicely */
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.gallery-img:hover {
  transform: scale(1.05);
}


/* ===== Service Detail Page Styles ===== */

/* Section Titles */
section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 1.2rem;
  text-align: center;
  position: relative;
}

section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ff6600;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* Paragraphs */
section p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* Gallery */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-img:hover {
  transform: scale(1.05);
  box-shadow: 0px 10px 20px rgba(0,0,0,0.2);
}

/* Back Button */
.btn-dark {
  background: #222;
  border: none;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.btn-dark:hover {
  background: #ff6600;
  color: #fff;
}

/* Responsive Fix */
@media (max-width: 768px) {
  section h2 {
    font-size: 1.6rem;
  }
  section p {
    font-size: 1rem;
    padding: 0 10px;
  }
  .gallery-img {
    height: 180px;
  }
}