
*/
 
  @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

  body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #f9f9f9;
  }



  /*---------------------------------------
     TYPOGRAPHY              
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 300;
    line-heigh:normal;

  }

  h1 {
    font-size: 700%;
    font-family: 'Times New Roman', Times, serif;
  }

  h2 {
    color: #353535;
    font-size: 500%;
    font height: 20px ;
  }

  p {
    color: #757575;
    font-size: 100%;
    font-weight: normal;
    line-height: 24px;
  }

.hero-content {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1.2s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


  /*---------------------------------------
     GENERAL               
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #202020;
    text-decoration: none !important;
  }

  a,
  input, button,
  .form-control {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  a:hover, a:active, a:focus {
    color: #29ca8e;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #202020;
  }

  .section-title {
    padding-bottom: 40px;
  }

  section {
    position: relative;
    padding: 100px 0;
  }

  #contact,
  footer {
    background: #ffffff;
    text-align: center;
  }

  .overlay {
    background: #ffbaba;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ffbaba);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #2a2b30, #343a3d); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    opacity: 0.9;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .online-form {
    position: relative;
  }

  .online-form .form-control {
    border-color: #f0f0f0;
    display: inline-block;
    vertical-align: top;
    border-radius: 50px;
    box-shadow: none;
    height: 50px;
    margin-right: 0.5em;
    padding-left: 15px;
  }

  .online-form input[type="email"] {
    width: 60%;
  }

  .online-form button {
    background: #29ca8e;
    border: 0;
    color: #ffffff;
    position: absolute;
    right: 6em;
    width: 25%;
  }

  .online-form button:hover {
    background: #202020;
    color: #ffffff;
  }

/* FADE IN IMAGE ANIMATION */
.fade-in-img {
  opacity: 90;
  transform: translateY(30px);
  animation: fadeInUp 1.2s ease-out forwards;
}

/* KEYFRAMES */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

  /*---------------------------------------
     BUTTONS               
  -----------------------------------------*/

  .section-btn {
    background: #43a33a;
    border: 0;
    border-radius: 50px;
    color: #5f3838;
    font-size: 16px;
    font-weight: normal;
    padding: 12px 50px;
    transition: 0.5s 0.2s;
  }

  .section-btn:hover,
  .section-btn:focus {
    background: #ffffff;
    color: #ffffff;
  }

/* =========================
   PRELOADER
========================= */

.preloader {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at center, #e6fff2, #ffffff);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

/* Spinner container */
.spinner {
  width: 70px;
  height: 70px;
  position: relative;
}

/* Spinner ring */
.spinner::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 4px solid rgba(5, 19, 6, 0.705);
  border-top-color: #e2f1e4;
  animation: spin 0.9s linear infinite;
}

/* Glow effect */
.spinner::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: rgba(56, 114, 41, 0.25);
  filter: blur(20px);
}

/* Spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}




  /*---------------------------------------
      MENU              
  -----------------------------------------*/

  .custom-navbar {
    border: none;
    margin-bottom: 0;
    padding: 30px 0;
    padding-right: 15%;
  }

  .custom-navbar .navbar-brand {
    color: #ffffff;
    font-size: 5px;
    font-weight: 500;
    letter-spacing: -1px;
    padding-right: 5PX;
    top: -10%; 
  }

  .top-nav-collapse {
    background: #ffffff;
    
  }

  .custom-navbar .navbar-nav {
    margin-left: 28em;
    position: absolute;
    left: 11%;
    top: 57%;
    transform: translateY(-50%);
  }

  .custom-navbar .nav li a {
    font-size: 15px;
    font-weight: normal;
    color: #f0f0f0;
    padding-right: 22px;
    padding-left: 22px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }

  .custom-navbar .nav li a:hover {
    background: transparent;
    color: #29ca8e;
  }

  .custom-navbar .navbar-nav > li > a:hover,
  .custom-navbar .navbar-nav > li > a:focus {
    background-color: transparent;
  }

  .custom-navbar .nav li.active > a {
    background-color: transparent;
    color: #29ca8e;
  }

  .custom-navbar .navbar-toggle {
    border: none;
    padding-top: 10px;
  }

  .custom-navbar .navbar-toggle {
    background-color: transparent;
  }

  .custom-navbar .navbar-toggle .icon-bar {
    background: #29ca8e;
    border-color: transparent;
  }

  @media(min-width:768px) {
    .custom-navbar {
      border-bottom: 0;
      background: 0 0; 
    }

    .custom-navbar.top-nav-collapse {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }

    .top-nav-collapse .navbar-brand {
      color: #252525;
    }

    .top-nav-collapse .nav li a {
      color: #575757;
    }

    .top-nav-collapse .nav .section-btn a {
      color: #ffffff;
    }
  }

/* ===== Navbar Brand Divider Line ===== */

.custom-navbar .navbar-brand {
  position: relative;
  padding-right: 25px;
  margin-right: 20px;
}

.custom-navbar .navbar-brand::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.4);
}

/* Mobile view hide divider */
@media (max-width: 768px) {
  .custom-navbar .navbar-brand::after {
    display: none;
  }
}


  /*---------------------------------------
      HOME          
  -----------------------------------------*/

  #home {
    background: url(../images/kand.jpg) no-repeat center center;
    background-size: cover;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding-top: 12em;
    text-align: center;
  }

  #home h1 {
    color: #ffffff;
    margin-top: 10px;
    margin-bottom: 30px;
    font-size: 50px;
    font-family: 'Times New Roman', Times, serif;
  }

  .home-info {
    margin-top: 7em;
    color: #ffffff;

  }

  .home-info h3 {
    color: #ffffff;
    font-size: 15px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 10px 0;
  }
  


  /*---------------------------------------
      FEATURE              
  -----------------------------------------*/

  #feature {
    background: #e0d0d0;
  }

  #feature .nav-tabs {
    border-bottom: 0;
    padding-left: 20%;
  }

  #feature .nav>li>a {
    padding: 8px 0;
  }

  #feature .nav-tabs>li>a {
    color: #c2e8ff;
    font-size: 18px;
    border: 0;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    margin-right: 35px;
    margin-left: 5%;
  }

  #feature .nav-tabs>li.active>a, 
  #feature .nav-tabs>li.active>a:focus, 
  #feature .nav-tabs>li.active>a:hover {
    background: transparent;
    color: #202020;
    border-bottom: 3px solid #29ca8e;
  }

  #feature .nav>li>a:focus, 
  #feature .nav>li>a:hover {
    background: transparent;
    border-bottom: 3px solid #29ca8e;
    color: #202020;
  }

  #feature .tab-content {
    margin-top: 50px;
  }

  .tab-pane-item {
    margin: 20px 0;
  }

  .tab-pane-item h2 {
    margin: 0 0 5px 0;
  }

  .feature-image {
    position: absolute;
    bottom: -27em;
  }





  /*---------------------------------------
      ABOUT              
  -----------------------------------------*/

  #about .col-md-4 {
    margin: 0;
    padding: 0;
  }

  .team-thumb {
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }

  .team-thumb-up:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    top: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-bottom: 15px solid #ffffff;
  }

  .team-thumb-down:after {
    display: block;
    margin: 0 auto;
    position: absolute;
    bottom: -15px;
    right: 0;
    left: 0;
    content: "";
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #ffffff;
  }

  .team-info {
    position: relative;
    padding: 40px;
  }

  .team-info h2 {margin: 0;}

  .team-info small {
    display: block;
    font-size: 18px;
    margin: 5px 0 10px 0;
  }

  .team-thumb img {
    width: 100%;
  }



  /*---------------------------------------
      TESTIMONIAL           
  -----------------------------------------*/

  #testimonial {
    background: #ffffff;
  }

  #testimonial .col-md-6 {
    margin: 0;
    padding: 0;
  }

  #testimonial .section-title {
    padding-bottom: 0;
  }

  #testimonial h1 {
    color: #ffffff;
  }

  .testimonial-image {
    background: url(../images/kand.jpg) no-repeat center center;
    background-size: cover;
    width: 100%;
    height: 65vh;
  }

  .testimonial-info {
    background: #202020;
    padding: 60px;
    height: 65vh;
  }

  .testimonial-info h3 {
    color: #ffffff;
    font-style: italic;
    margin-top: 5px;
  }

  .testimonial-info .item {
    display: block;
    width: 100%;
  }

  .testimonial-item {
    margin: 20px 0;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img,
  .testimonial-item h4 {
    color: #d9d9d9;
    display: inline-block;
    vertical-align: top;
  }

  .owl-carousel .owl-item img,
  .testimonial-item img {
    border: 3px solid #ffffff;
    border-radius: 100px;
    width: 60px;
    height: 60px;
    margin-right: 10px;
  }



  /*---------------------------------------
      PRICING             
  -----------------------------------------*/

  #about .section-title,
  #pricing .section-title {
    text-align: center;
  }

  #pricing .col-md-4 {
    margin: 0;
    padding: 0;
  }

  #pricing .col-md-4:last-child .pricing-thumb {
    border-right: 0;
  }

  .pricing-thumb {
    background: #ffffff;
    border-right: 2px solid #f0f0f0;
    padding: 20px 40px;
  }

  .pricing-title {
    padding-bottom: 5px;
  }

  .pricing-info {
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
  }

  .pricing-info,
  .pricing-bottom {
    padding: 20px 0;
  }

  .pricing-info p {
    font-size: 16px;
  }

  .pricing-bottom {
    position: relative;
  }

  .pricing-bottom span {
    font-size: 20px;
  }

  .pricing-btn {
    position: absolute;
    top: 15px;
    right: 0;
    display: inline-block;
  }



  /*---------------------------------------
      CONTACT             
  -----------------------------------------*/

  #contact-form .col-md-12,
  #contact-form .col-md-4 {
    padding-left: 0;
  }

  #contact-form .form-control {
    background: transparent;
    border: 0;
    border-bottom: 3px solid #f0f0f0;
    border-radius: 0;
    box-shadow: none;
    margin: 10px 0;
  }

  #contact-form .form-control:focus {
    border-bottom-color: #202020;
  }

  #contact-form input {
    height: 50px;
  }

  #contact-form input[type='submit'] {
    background: #202020;
    border-radius: 50px;
    border: 0;
    color: #ffffff;
  }

  #contact-form input[type='submit']:hover {
    background: #29ca8e;
    color: #ffffff;
  }
  


  /*---------------------------------------
     FOOTER              
  -----------------------------------------*/

.fade-footer {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s ease;
}
.fade-footer.show {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  background: #13151b;
  color: #e5e7eb;
  text-align: center;
  padding: 22px 0;
  font-size: 13px;
}

/* hidden at start */
.fade-footer {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

/* visible when bottom reached */
.fade-footer.show {
  opacity: 1;
  transform: translateY(0);
}

.hero-copyright {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
  color: rgb(255, 255, 255);
  letter-spacing: 0.5px;
}


  /*---------------------------------------
     SOCIAL ICON              
  -----------------------------------------*/

  .social-icon {
    position: relative;
    padding: 0;
    margin: 0;
  }
  .social-icon li {
    display: inline-block;
    list-style: none;
  }

  .social-icon li a {
    border-radius: 50px;
    color: #202020;
    font-size: 15px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-decoration: none;
    text-align: center;
    position: relative;
    margin: 5px 5px 5px 0;
  }

  .social-icon li a:hover {
    background: #536976;
    color: #ffffff;
  }


  /*---------------------------------------
     RESPONSIVE STYLES              
  -----------------------------------------*/

  @media only screen and (max-width: 1200px) {

    .custom-navbar .navbar-nav {
      margin-left: 3em;
    }

    .home-info {
      margin-top: 0;
    }
  }


  @media only screen and (max-width: 992px) {

    section {
      padding: 60px 0;
    }

    .custom-navbar .navbar-nav {
      margin-left: 0;
    }

    .custom-navbar .nav li a {
      font-size: 14px;
      padding-right: 15px;
      padding-left: 15px;
    }

    #feature .nav-tabs>li>a {
      font-size: 16px;
      margin-right: 20px;
    }

    .feature-image {
      bottom: -50em;
    }

    .pricing-thumb {
      margin-bottom: 30px;
    }

    footer {
      padding-bottom: 40px;
    }
  }


  @media screen and (max-width: 767px) {

    .section-title {
      padding-bottom: 20px;
    }

    .custom-navbar {
      background: #ffffff;
      -webkit-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      -moz-box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      box-shadow: 0 1px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
      text-align: center;
    }

    .custom-navbar .nav li a {
      line-height: normal;
      padding: 5px;
    }

    .custom-navbar .navbar-brand,
    .top-nav-collapse .navbar-brand {
      color: #202020;
      font-weight: normal;
    }

    .custom-navbar .nav li a,
    .top-nav-collapse .nav li a {
      color: #656565;
    }

    .feature-image {
      position: relative;
      bottom: 7px;
    }

    #about .col-md-4:nth-child(3n) .team-thumb {
      display: flex;
      -webkit-box-orient: vertical;
      flex-direction: column-reverse;
      -webkit-flex-direction: column-reverse;
      -ms-flex-direction: column-reverse;
    }

    .team-thumb-down:after {
      top: -15px;
      bottom: inherit;
      border-top: inherit;
      border-bottom: 15px solid #ffffff;
    }

    .testimonial-image,
    .testimonial-info {
      height: 85vh;
    }

    .testimonial-info {
      padding: 30px;
    }
  }

.hero-top {
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 15px;
  text-shadow: 0 8px 25px rgba(0,0,0,0.35);
}






#home {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

/* background layer */
#home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/kand.jpg") center center / cover no-repeat;

filter: brightness(1.25) contrast(1.1) saturate(1.15);
  animation: cinematicZoom 10s ease-in-out infinite alternate;
  will-change: transform;
  z-index: 0;
}

/* overlay */
#home .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.15),
    z-index: 1;
  );
  z-index: 1;
}

/* content */
#home .container {
  position: relative;
  z-index: 2;
}

@keyframes cinematicZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}


/* GLASS BOX */
.glass-box {
  width: 500px;
  padding: 80px;
  padding-top: 40px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);

  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);

  color: #fff;
  text-align: left;

  animation: fadeUp 1.2s ease;
}

.glass-box h2 {
  font-size: 36px;
  margin-bottom: 20px;
  
}

.glass-box p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.9;
}

/* BUTTON */
.glass-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 23px 32px;
  border-radius: 30px;
  color: #fff;
  text-decoration: none;
  position: absolute;
  left: 44%;
  top: 60%;
  transform: translateY(-50%);

  background: linear-gradient(135deg, #35bd72, #bba29e);
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* FADE ANIMATION */
@keyframes .fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  z-index: 9999;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 18px 45px rgba(37, 211, 102, 0.65);
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0); }
}

.whatsapp-float {
  animation: float 2.8s ease-in-out infinite;
}
.navbar-brand {
  display: flex;
  align-items: center;
  position: fixed;
  margin-top: 22px;
  
}

.navbar-brand img.logo {
  height:150px;   
  width: auto;
}
@keyframes floatBox {
  0% { transform: translateY(0); }
  10% { transform: translateY(10px); }
  10% { transform: translateY(0); }
}


  /* NO ZOOM */
  transform: none;
  transition: none;

  /* FADE ONLY */
  opacity: 0;
  animation: glassFadeOnly 1.2s ease forwards;
}









/* WHY CHOOSE – IMAGE LEFT STYLE */
.why-image-section {
  padding: 100px 0;
  background: #ffbaba;
}

.why-flex {
  display: flex;
  align-items: center;
  gap: 60px;
}

.why-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.why-content {
  max-width: 520px;
}

.mini-title {
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #2ac28e;
}

.why-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin: 10px 0 15px;
}

.why-intro {
  color: #555;
  font-size: 15px;
  margin-bottom: 30px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.why-point {
  display: flex;
  gap: 15px;
}

.why-point span {
  color: #2ac28e;
  font-size: 18px;
  font-weight: bold;
}

.why-point h4 {
  margin: 0;
  font-size: 18px;
}

.why-point p {
  margin: 4px 0 0;
  font-size: 14px;
  color: #666;
}

.why-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 28px;
  background: #2ac28e;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.why-btn:hover {
  background: #1ea678;
}

/* MOBILE */
@media (max-width: 992px) {
  .why-flex {
    flex-direction: column;
    text-align: center;
  }

  .why-point {
    justify-content: center;
    text-align: left;
  }
}






/* =========================
   HERO SECTION
========================= */

.hero {
  height: 100vh;
  background: url("../images/home-bg.jpg") no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cinematic-hero {
  position: relative;
  height: 100vh;
  background: url("../images/road.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(95, 85, 85, 0.55);
}

.hero-content {
  position: relative;
  max-width: 1200px;
  padding: 100px;
  text-align: center;
  border-radius: 20px;
  backdrop-filter: blur(14px);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
}

.hero-top {
  font-size: 13px;
  letter-spacing: 3px;
  opacity: 0.8;
  margin-bottom: 15px;
  color: #5effc4;
}

.hero-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 15px;
  opacity: 0.85;
  margin-bottom: 70px;
  color: #ffffff;
  
}

.hero-btn {
  padding: 14px 36px;
  border-radius: 50px;
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(46,204,113,0.4);
}

/* Mobile */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-content {
    padding: 40px 25px;
  }
}






/* Button Pulse */
.pulse {
  box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46,204,113,0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(46,204,113,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46,204,113,0);
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}





/* ===== NAV UNDERLINE EFFECT ===== */

.custom-navbar .nav li a {
  position: relative;
  background: transparent !important;
  transition: color 0.3s ease;
}

/* underline */
.custom-navbar .nav li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, #34d399, #10b981);
  border-radius: 10px;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

/* hover */
.custom-navbar .nav li a:hover {
  color: #34d399;
}

.custom-navbar .nav li a:hover::after {
  width: 70%;
}

/* active page */
.custom-navbar .nav li.active a {
  color: #34d399 !important;
}

.custom-navbar .nav li.active a::after {
  width: 70%;
}






/* PREMIUM NAVBAR */
.custom-navbar {
  background: rgba(77, 121, 94, 0.7); /* transparent white */
  backdrop-filter: blur(3px);          /* MAIN BLUR */
  -webkit-backdrop-filter: blur(4px);  /* Safari support */
  box-shadow: 0 3px 30px rgb(0, 0, 0);
  border-bottom: 5px solid rgba(0, 0, 0, 0.3);
  margin-top: 0px;
  position: fixed;  
  left: 0;
  width: 100%;
}

.custom-navbar .nav li a {
  position: relative;
}

.custom-navbar .nav li a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 1%;
  background: #58d38b;
  left: 50%;
  bottom: -1px;
  transition: 0.3s;
  transform: translateX(-50%);
}

.custom-navbar .nav li a:hover::after,
.custom-navbar .nav li.active a::after {
  width: 60%;
}






.brand-wrap {
  display: flex;
  align-items: center;
  gap: 22px;
}

.logo {
  position: relative;
  left: 30px;
  width: 59px;
  
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}





.navbar-actions {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 25px;
  
}
.navbar-actions .btn {
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
  left: 100%;
  top: 20px;
}
.btn-quote {
  background: #2ecc71;
  color: #000000;
}

.btn-quote:hover {
  background: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 204, 113, 0.45);
}
.btn-contact {
  border: 2px solid #000000;
  color: #000000;
  background: transparent;
}

.btn-contact:hover {
  background: #2ecc71;
  color: #fff;
  transform: translateY(-2px);
}














.process-section {
  padding: 50px 0;
  background: linear-gradient(180deg, rgba(77, 121, 94, 0.7), rgba(255, 255, 255, 0.7));
}

/* Header */
.process-head {
  text-align: center;
  margin-bottom: 70px;
}

.process-badge {
  display: inline-block;
  background: rgba(154, 197, 34, 0.12);
  color: #ffffff;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 3px;
}

.process-head h2 {
  font-size: 50px;
  font-weight: 800;
}

.process-head span {
  color: #ffffff;
}

.process-head p {
  color: #666;
  font-size: 16px;
  margin-top: 8px;
}

/* Steps Row */
.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Step Card */
.process-step {
  background: #ffffff;
  border-radius: 22px;
  padding: 45px 30px;
  text-align: center;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.4s ease;
}

.process-step:hover {
  transform: translateY(-12px);
  box-shadow: 0 40px 70px rgba(0,0,0,0.15);
}

/* Number */
.step-circle {
  position: absolute;
  top: -18px;
  right: 20px;
  background: #22c55e;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon */
.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text */
.process-step h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .process-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .process-row {
    grid-template-columns: 1fr;
  }
}










.trending-grid {
  padding: 80px 0;
  background: #ffffff;
}

/* Header */
.trend-head {
  text-align: center;
  margin-bottom: 50px;
}

.trend-head h2 {
  font-size: 38px;
  font-weight: 700;
}

.trend-head span {
  color: #ffffff;
}

.trend-head p {
  color: #666;
  font-size: 15px;
}

/* Grid Layout */
.grid-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 25px;

  /* 🔥 THIS IS THE FIX */
  grid-auto-flow: dense;
}


/* Cards */
.grid-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4 / 4;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
  transition: transform 0.4s ease;
  cursor: pointer;
}

.grid-item.big {
  aspect-ratio: 4/4 ;
  
}

/* Image */
.grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
 
}

/* Hover */
.grid-item:hover {
  transform: translateY(-8px);
}

/* Overlay */
.grid-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.85),
    rgba(0,0,0,0.1)
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
}

.grid-overlay h3 {
  margin: 0;
  font-size: 22px;
}

.grid-overlay span {
  font-size: 13px;
  opacity: 0.9;
}

/* Responsive */
@media (max-width: 992px) {
  .grid-wrap {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-item.big {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 576px) {
  .grid-wrap {
    grid-template-columns: 1fr;
  }
}











/* ===== TOUR PACKAGES GRID ===== */

.tour-section h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #222;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* ===== CARD ===== */
.tour-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: 0.3s ease;
  text-align: center;
}

.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* ===== IMAGE ===== */
.tour-image {
  position: relative;
  height: 180px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: 0.4s ease;
}

.tour-card:hover .tour-image img {
  transform: scale(1.05);
}

/* ===== TAG ===== */
.tour-tag {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: #ffffff;
  color: #22c55e;
  padding: 4px 10px;
  font-size: 12px;
  border-radius: 20px;
  font-weight: 600;
}

/* ===== BADGE ===== */
.tour-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ff3b3b;
  color: white;
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  font-weight: bold;
}

/* ===== CONTENT ===== */
.tour-content {
  padding: 18px;
}

.tour-content h3 {
  font-size: 15px;
  margin-bottom: 6px;
  color: #222;
}

.tour-content p {
  font-size: 13px;
  color: #555;
  margin-bottom: 10px;
}

.tour-price {
  font-size: 13px;
  margin-bottom: 12px;
}

/* ===== BUTTON ===== */
.tour-btn {
  display: inline-block;
  background: #22c55e;
  color: white;
  padding: 7px 16px;
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.3s;
}

.tour-btn:hover {
  background: #16a34a;
}

/* ===== RESPONSIVE ===== */
@media(max-width:600px){
  .tour-image,
  .tour-image img {
    height: 150px;
  }
}





















/* WHY CHOOSE –  */
.why-choose-modern {
  padding: 100px 0;
  background: #65bb6a;
}

.why-top {
  display: flex;
  align-items: center;
  gap: 60px;
}

.why-text {
  max-width: 520px;
}

.why-text h2 {
  font-size: 42px;
  font-weight: 700;
}

.why-text h2 span {
  color: #ffffff;
}

.why-text p {
  margin: 20px 0 30px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.why-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #ffffff;
  color: #def3dc;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.why-btn:hover {
  background: #ffffff;
}

/* IMAGE */
.why-image img {
  max-width: 800px;
  width: 100%;
}

/* FEATURES */
.why-features {
  margin-top: 70px;
  background: #f1f7ff;
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-box {
  display: flex;
  gap: 20px;
}

.feature-box i {
  font-size: 28px;
  color: #ffffff;
  min-width: 40px;
}

.feature-box h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature-box p {
  margin: 0;
  font-size: 14px;
  color: #555;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-top {
    flex-direction: column;
    text-align: center;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .feature-box {
    justify-content: center;
    text-align: left;
  }
}








.tour-packages {
  padding: 90px 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 38px;
  margin-bottom: 10px;
}

.section-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.package-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.package-card:hover {
  transform: translateY(-10px);
}

.package-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.package-content {
  padding: 25px;
}

.days {
  font-size: 13px;
  color: #22c55e;
  font-weight: 600;
}

.package-content h3 {
  margin: 10px 0;
  font-size: 20px;
}

.package-content p {
  font-size: 14px;
  color: #555;
}

.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.btn-sm {
  background: #22c55e;
  color: #fff;
  padding: 10px 18px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.btn-sm:hover {
  background: #16a34a;
}










/* Floating animation */
@keyframes floatImage {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Apply to image */
.why-image img {
  width: 100%;
  max-width: 480px;
  animation: floatImage 5s ease-in-out infinite;
  transition: all 0.4s ease;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

/* Hover effect */
.why-image img:hover {
  transform: scale(1.04);
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.25));
}





/* ===== CINEMATIC BASE ===== */
.cine-hidden {
  opacity: 0;
  transform: scale(0.95) translateY(40px);
  filter: blur(6px);
  transition: all 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.cine-show {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}

/* IMAGE CINEMATIC ZOOM */
.cine-image img {
  transform: scale(1.1);
  transition: transform 2.5s ease;
}

.cine-image.cine-show img {
  transform: scale(1);
}

/* FEATURE WAVE EFFECT */
.feature-box {
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.feature-box.cine-show {
  transform: translateY(0);
}

.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}











/* WHY CHOOSE */
.why-choose-modern {
  padding: 80px 0;
  background: #fff;
}

.why-top {
  display: flex;
  align-items: center;
  gap: 60px;
}

.why-text {
  max-width: 520px;
}

.why-text h2 {
  font-size: 42px;
  font-weight: 700;
}

.why-text h2 span {
  color: #ffffff;
}

.why-text p {
  margin: 20px 0 30px;
  color: #555;
  font-size: 15px;
  line-height: 1.7;
}

.about-btn {
  display: inline-block;
  padding: 14px 28px;
  background: #000;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.why-btn:hover {
  background: #2ac28e;
}

/* IMAGE */
.why-image img {
  max-width: 900px;
  width: 100%;
  position: relative;
  right: 50px;
  top: 40px;
}

/* FEATURES */
.why-features {
  margin-top: 70px;
  background: rgb(227, 240, 227);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-box {
  display: flex;
  gap: 20px;
}

.feature-box i {
  font-size: 28px;
  color: #2ac28e;
  min-width: 40px;
}


.feature-box h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.feature-box p {
  margin: 0;
  font-size: 14px;
  color: #0f0f0f;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-top {
    flex-direction: column;
    text-align: center;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .feature-box {
    justify-content: center;
    text-align: left;
  }
}








.what-we-do {
  padding: 50px 0;
  background: linear-gradient(180deg, rgba(154, 189, 166, 0.7)), #ffffff;
}

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-head p {
  color: #666;
  font-size: 15px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.service-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.05);
  transition: all 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: #ffffff;
}

.service-card i {
  font-size: 36px;
  color: #22c55e;
  margin-bottom: 15px;
}

.service-card h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #666;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}















.quote-alt {
  padding: 140px 0;
  background: radial-gradient(circle at top left, #ffffff, #ffffff);
}

.quote-alt-wrap {
  max-width: 1100px;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: center;
}

/* IMAGE */
.quote-alt-image {
  position: absolute;
  left: -40px;
  bottom: -30px;
  z-index: 2;
}

.quote-alt-image img {
  max-width: 400px;
  position: relative;
  bottom: 29px;
  filter: drop-shadow(0 30px 45px rgba(0,0,0,0.2));
}

/* CARD */
.quote-alt-card {
  background: rgba(192, 211, 189, 0.603);
  border-radius: 28px;
  padding: 60px 60px 60px 300px;
  width: 100%;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}

/* BADGE */
.alt-badge {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* TEXT */
.quote-alt-card h2 {
  font-size: 36px;
  margin-bottom: 12px;
  line-height: 1.3;
}

.quote-alt-card h2 span {
  color: #22c55e;
}

.alt-desc {
  font-size: 15px;
  color: #555;
  margin-bottom: 30px;
}

/* FORM */
.quote-alt-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.quote-alt-card input,
.quote-alt-card select {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

.quote-alt-card input:focus,
.quote-alt-card select:focus {
  outline: none;
  border-color: #22c55e;
}

/* BUTTON */
.quote-alt-card button {
  grid-column: span 2;
  margin-top: 10px;
  padding: 16px;
  border-radius: 30px;
  border: none;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.quote-alt-card button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(34,197,94,0.45);
}

.quote-alt-card small {
  grid-column: span 2;
  margin-top: 10px;
  font-size: 12px;
  color: #666;
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .quote-alt-image {
    position: relative;
    left: 0;
    bottom: 0;
    margin-bottom: 20px;
    text-align: center;
  }

  .quote-alt-card {
    padding: 40px;
    text-align: center;
  }

  .quote-alt-card form {
    grid-template-columns: 1fr;
  }

  .quote-alt-card button,
  .quote-alt-card small {
    grid-column: span 1;
  }
}












/* TRUST SLIDER */
.quote-trust {
  margin-top: 30px;
}

.trust-item {
  background: #ffc9c9;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  color: #14532d;
  text-align: center;
}

/* IMAGE FLOAT */
.quote-alt-image img {
  animation: imageFloat 5s ease-in-out infinite;
}

@keyframes imageFloat {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}








.trend-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  cursor: pointer;
  height: 100%;
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* BIG CARD SIZE */
.trend-card.big {
  grid-column: span 2;
  grid-row: span 2;
}

/* IMAGE */
.trend-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

/* HOVER EFFECT */
.trend-card:hover img {
  transform: scale(1.08);
}

.trend-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0,0,0,0.25);
}

/* OVERLAY */
.trend-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75) 10%,
    rgba(0,0,0,0.15) 60%,
    transparent
  );
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.trend-overlay h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.trend-overlay p {
  color: #e5e7eb;
  font-size: 14px;
  margin-top: 6px;
}





.ella-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.ella-popup.show {
  display: flex;
}

.ella-box {
  background: #fff;
  width: 90%;
  max-width: 1100px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 20px;
  padding: 40px;
  position: relative;
  animation: fadeUp 0.5s ease;
}

.ella-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 32px;
  cursor: pointer;
}

.ella-intro {
  color: #555;
  margin-bottom: 40px;
}

.ella-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.ella-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}

.ella-item h4 {
  margin-top: 15px;
}

.ella-item p {
  font-size: 14px;
  color: #555;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
















/* ===============================
   SIGIRIYA POPUP BACKDROP
================================ */
.sigiriya-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  display: none;            /* JS walin show karanna */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* ===============================
   POPUP BOX
================================ */
.sigiriya-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
  animation: sigiriyaFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

/* Animation */
@keyframes sigiriyaFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   CLOSE BUTTON
================================ */
.sigiriya-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
  transition: color 0.25s ease;
}

.sigiriya-close:hover {
  color: #22c55e;
}

/* ===============================
   TITLE & INTRO
================================ */
.sigiriya-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sigiriya-intro {
  color: #555;
  font-size: 16px;
  max-width: 750px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ===============================
   GRID LAYOUT
================================ */
.sigiriya-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ===============================
   GRID ITEM
================================ */
.sigiriya-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.sigiriya-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
}

.sigiriya-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.sigiriya-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.sigiriya-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* ===============================
   SCROLLBAR (Premium Touch)
================================ */
.sigiriya-box::-webkit-scrollbar {
  width: 8px;
}

.sigiriya-box::-webkit-scrollbar-thumb {
  background: #22c55e;
  border-radius: 10px;
}

.sigiriya-box::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .sigiriya-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .sigiriya-box {
    padding: 30px 22px;
  }

  .sigiriya-grid {
    grid-template-columns: 1fr;
  }

  .sigiriya-box h2 {
    font-size: 26px;
  }
}


/* ===============================
   YALA POPUP BACKDROP
================================ */
.yala-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* ===============================
   POPUP BOX
================================ */
.yala-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
  animation: yalaFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes yalaFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   CLOSE BUTTON
================================ */
.yala-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.yala-close:hover {
  color: #22c55e;
}

/* ===============================
   TITLE & INTRO
================================ */
.yala-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.yala-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.yala-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ===============================
   ITEMS
================================ */
.yala-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.yala-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.yala-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.yala-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.yala-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .yala-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .yala-box {
    padding: 30px 22px;
  }

  .yala-grid {
    grid-template-columns: 1fr;
  }

  .yala-box h2 {
    font-size: 26px;
  }
}

























.fleet-section {
  padding: 80px 20px;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

h1 {
  font-size: 70px;
  font-weight: 700;
  font-family: Arial, Helvetica, sans-serif;
}

h1 span {
  background: #00a8a8;
  color: #fff;
  padding: 5px 15px;
  border-radius: 6px;
}

.subtitle {
  color: #666;
  max-width: 700px;
  margin: 15px auto 50px;
}

h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

h2 span {
  background: #00a8a8;
  color: #fff;
  padding: 3px 10px;
  border-radius: 5px;
}

.desc {
  max-width: 800px;
  margin: auto;
  color: #555;
  margin-bottom: 50px;
}

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
}

.fleet-card {
  display: flex;
  gap: 20px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #ddd;
}

.fleet-card img {
  width: 140px;
}

.fleet-card .info {
  text-align: left;
}

.fleet-card p {
  margin: 6px 0;
  font-size: 15px;
}


.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}








/* ===============================
   MIRISSA POPUP BACKDROP
================================ */
.mirissa-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* ===============================
   POPUP BOX
================================ */
.mirissa-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.28);
  animation: mirissaFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes mirissaFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   CLOSE BUTTON
================================ */
.mirissa-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.mirissa-close:hover {
  color: #22c55e;
}

/* ===============================
   TITLE & INTRO
================================ */
.mirissa-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.mirissa-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.mirissa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ===============================
   ITEMS
================================ */
.mirissa-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.mirissa-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22);
}

.mirissa-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.mirissa-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.mirissa-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .mirissa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .mirissa-box {
    padding: 30px 22px;
  }

  .mirissa-grid {
    grid-template-columns: 1fr;
  }

  .mirissa-box h2 {
    font-size: 26px;
  }
}




/* ===============================
   KANDY POPUP BACKDROP
================================ */
.kandy-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* ===============================
   POPUP BOX
================================ */
.kandy-box {
  background: #fff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 35px 90px rgba(0,0,0,0.28);
  animation: kandyFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes kandyFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   CLOSE BUTTON
================================ */
.kandy-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.kandy-close:hover {
  color: #22c55e;
}

/* ===============================
   TITLE & INTRO
================================ */
.kandy-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.kandy-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.kandy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ===============================
   ITEMS
================================ */
.kandy-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kandy-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.22);
}

.kandy-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.kandy-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.kandy-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .kandy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .kandy-box {
    padding: 30px 22px;
  }

  .kandy-grid {
    grid-template-columns: 1fr;
  }

  .kandy-box h2 {
    font-size: 26px;
  }
}



/* ===============================
   WILPATTU POPUP BACKDROP
================================ */
.wilpattu-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* ===============================
   POPUP BOX
================================ */
.wilpattu-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 40px 95px rgba(0, 0, 0, 0.32);
  animation: wilpattuFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes wilpattuFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ===============================
   CLOSE BUTTON
================================ */
.wilpattu-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.wilpattu-close:hover {
  color: #16a34a;
}

/* ===============================
   TITLE & INTRO
================================ */
.wilpattu-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.wilpattu-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* ===============================
   GRID
================================ */
.wilpattu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ===============================
   ITEMS
================================ */
.wilpattu-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wilpattu-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.wilpattu-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.wilpattu-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.wilpattu-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .wilpattu-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .wilpattu-box {
    padding: 30px 22px;
  }

  .wilpattu-grid {
    grid-template-columns: 1fr;
  }

  .wilpattu-box h2 {
    font-size: 26px;
  }
}


/* ===============================
   HIKKADUWA POPUP BACKDROP
================================ */
.hikkaduwa-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* POPUP BOX */
.hikkaduwa-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.3);
  animation: hikkaFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes hikkaFadeUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CLOSE */
.hikkaduwa-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.hikkaduwa-close:hover {
  color: #0ea5e9;
}

/* TITLE */
.hikkaduwa-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.hikkaduwa-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* GRID */
.hikkaduwa-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ITEMS */
.hikkaduwa-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hikkaduwa-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.hikkaduwa-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.hikkaduwa-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.hikkaduwa-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .hikkaduwa-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .hikkaduwa-box {
    padding: 30px 22px;
  }

  .hikkaduwa-grid {
    grid-template-columns: 1fr;
  }

  .hikkaduwa-box h2 {
    font-size: 26px;
  }
}

/* ===============================
   GALLE POPUP BACKDROP
================================ */
.galle-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* POPUP BOX */
.galle-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  animation: galleFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes galleFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CLOSE */
.galle-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.galle-close:hover {
  color: #d97706;
}

/* TITLE */
.galle-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.galle-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* GRID */
.galle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ITEMS */
.galle-item {
  background: #f9fafb;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.galle-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.galle-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.galle-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.galle-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .galle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .galle-box {
    padding: 30px 22px;
  }

  .galle-grid {
    grid-template-columns: 1fr;
  }

  .galle-box h2 {
    font-size: 26px;
  }
}






/* ===============================
   COLOMBO POPUP BACKDROP
================================ */
.colombo-popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* POPUP BOX */
.colombo-box {
  background: #ffffff;
  max-width: 1100px;
  width: 100%;
  border-radius: 22px;
  padding: 40px 45px;
  position: relative;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  animation: colomboFadeUp 0.45s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes colomboFadeUp {
  from {
    opacity: 0;
    transform: translateY(35px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* CLOSE */
.colombo-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #555;
}

.colombo-close:hover {
  color: #2563eb;
}

/* TITLE */
.colombo-box h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.colombo-intro {
  font-size: 16px;
  color: #555;
  max-width: 760px;
  margin-bottom: 35px;
  line-height: 1.6;
}

/* GRID */
.colombo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* ITEMS */
.colombo-item {
  background: #f8fafc;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 35px rgba(0,0,0,0.15);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.colombo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.25);
}

.colombo-item img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.colombo-item h4 {
  font-size: 18px;
  margin: 15px 18px 6px;
  font-weight: 600;
}

.colombo-item p {
  font-size: 14px;
  color: #555;
  margin: 0 18px 18px;
  line-height: 1.5;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .colombo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .colombo-box {
    padding: 30px 22px;
  }

  .colombo-grid {
    grid-template-columns: 1fr;
  }

  .colombo-box h2 {
    font-size: 26px;
  }
}














/* ===== POPUP BACKGROUND ===== */
.tour-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  backdrop-filter: blur(4px);
}

/* ===== POPUP BOX ===== */
.tour-popup-content {
  background: #ffffff;
  width: 92%;
  max-width: 850px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  font-family: 'Poppins', sans-serif;
  animation: popupZoom 0.3s ease;
}

/* ===== POPUP IMAGE ===== */
.popup-image {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

.popup-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

/* ===== POPUP BODY ===== */
.popup-body {
  padding: 25px 30px 30px 30px;
}

.popup-close {
  position: absolute;
  right: 5px;
  top: 10px;
  font-size: 80px;
  cursor: pointer;
  color: #ffffff;
  z-index: 99999;  
}

/* Titles */
.popup-body h2 {
  margin: 0;
  font-size: 24px;
  color: #111;
}

.popup-route {
  font-size: 13px;
  color: #666;
  margin-top: 4px;
  margin-bottom: 15px;
}

/* Section Headings */
.popup-body h3 {
  font-size: 15px;
  margin-top: 18px;
  margin-bottom: 8px;
  color: #222;
}

/* Text */
.popup-body p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Inclusion list */
.popup-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.popup-body ul li {
  font-size: 13px;
  margin-bottom: 6px;
  color: #444;
}

/* Price */
.popup-price {
  font-size: 22px;
  font-weight: bold;
  color: #22c55e;
  margin-top: 18px;
}

/* Button */
.popup-btn {
  display: inline-block;
  margin-top: 12px;
  background: #22c55e;
  color: #fff;
  padding: 9px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.popup-btn:hover {
  background: #16a34a;
}

/* Animation */
@keyframes popupZoom {
  from {transform: scale(0.8); opacity: 0;}
  to {transform: scale(1); opacity: 1;}
}

/* Mobile Responsive */
@media(max-width:600px){
  .popup-image,
  .popup-image img {
    height: 200px;
  }
}
.popup-close {
  position: absolute;
  right: 18px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
  z-index: 10000; /* IMPORTANT */
}



/* Safe Page Load Fade */
html {
  opacity: 1;
}

html.page-loaded {
  opacity: 1;
}

html.page-fade {
  opacity: 0;
  transition: opacity 0.8s ease;
}
















.about-section{
  padding:60px 20px;
  background:linear-gradient(180deg,#ffffff,rgba(77, 121, 94, 0.7));
  text-align:center;
}

.about-container{
  max-width:900px;
  margin:auto;
}

.about-section h2{
  font-size:32px;
  font-style: calc();
  margin-bottom:20px;
  font-family: serif;
}

.about-section p{
  font-size:15px;
  line-height:1.8;
  color:#555;
  margin-bottom:15px;
}

.about-highlights{
  margin-top:25px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:15px;
}

.about-highlights div{
  background:#f5f7fb;
  padding:10px 18px;
  border-radius:20px;
  font-size:14px;
  color:#22c55e;
  font-weight:600;
}





















.faq-pro-modern{
  padding:80px 6%;
  background:linear-gradient(180deg,#ffffff,#ffffff);
  text-align:center;
}

.faq-pro-modern h2{
  font-size:34px;
  margin-bottom:5px;
}

.faq-pro-modern h2 span{
  background:#19c37d;
  color:#fff;
  padding:4px 12px;
  border-radius:6px;
}

.faq-pro-modern p{
  color:#666;
  margin-bottom:40px;
}

/* Grid Layout */
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  max-width:1000px;
  margin:auto;
}

/* Card */
.faq-card{
  background:#fff;
  border-radius:14px;
  box-shadow:0 8px 25px rgba(0,0,0,0.06);
  padding:18px 20px;
  cursor:pointer;
  text-align:left;
  transition:0.3s ease;
}

.faq-card:hover{
  transform:translateY(-3px);
}

/* Question */
.faq-q{
  font-weight:600;
  font-size:15px;
  position:relative;
  padding-right:20px;
}

/* Answer */
.faq-a{
  display:none;
  margin-top:10px;
  font-size:14px;
  color:#555;
  line-height:1.6;
}

/* Active state */
.faq-card.active .faq-a{
  display:block;
}

/* Mobile */
@media(max-width:768px){
  .faq-grid{
    grid-template-columns:1fr;
  }
}











.pro-footer{
  background:#050505;
  color:#fff;
  padding:60px 20px 25px;
  font-family:Arial, sans-serif;
}

.pro-footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:40px;
}

.pro-footer h3{
  font-size:22px;
  color:#2ecc71;
  margin-bottom:12px;
}

.pro-footer h4{
  font-size:15px;
  margin-bottom:15px;
  letter-spacing:1px;
  color:#fff;
}

.pro-footer p,
.pro-footer li{
  font-size:14px;
  color:#aaa;
  line-height:1.7;
}

.pro-footer ul{
  list-style:none;
  padding:0;
}

.pro-footer ul li{
  margin-bottom:8px;
}

.pro-footer ul li a{
  color:#aaa;
  text-decoration:none;
  transition:0.3s;
}

.pro-footer ul li a:hover{
  color:#2ecc71;
}

/* Social Icons */
.pro-social-icons{
  display:flex;
  gap:14px;
}

.pro-social{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:18px;
  text-decoration:none;
  transition:0.3s ease;
}

.pro-social.whatsapp{background:#25D366;}
.pro-social.instagram{background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);}
.pro-social.facebook{background:#1877F2;}
.pro-social.email{background:#444;}

.pro-social:hover{
  transform:translateY(-5px) scale(1.08);
  box-shadow:0 6px 18px rgba(0,0,0,0.5);
}

/* Payment Row */
.pro-payments{
  text-align:center;
  margin-top:35px;
}

.pro-payments p{
  color:#888;
  font-size:13px;
  margin-bottom:10px;
}

.payment-icons{
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:12px;
}


.payment-icons img{
  height:26px;
  opacity:0.95;
}


/* Bottom */
.pro-footer-bottom{
  text-align:center;
  margin-top:30px;
  font-size:13px;
  color:#666;
}











/* ===== CONTACT POPUP PREMIUM ===== */

.contact-popup{
  position:fixed;
  top:0; left:0;
  width:100%; height:100%;
  background:rgba(0,0,0,0.65);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.contact-popup-box{
  background:rgba(255,255,255,0.9);
  backdrop-filter:blur(12px);
  border-radius:20px;
  padding:30px 25px;
  width:380px;
  text-align:center;
  box-shadow:0 20px 60px rgba(0,0,0,0.25);
  position:relative;
  animation:popupZoom 0.4s ease;
}

@keyframes popupZoom{
  from{transform:scale(0.7);opacity:0;}
  to{transform:scale(1);opacity:1;}
}

.contact-close{
  position:absolute;
  top:12px;
  right:15px;
  font-size:22px;
  cursor:pointer;
}

.contact-popup-box h2{
  font-size:22px;
  margin-bottom:4px;
}

.contact-popup-box p{
  font-size:13px;
  color:#666;
  margin-bottom:18px;
}

/* Buttons */
.contact-buttons a{
  display:block;
  padding:10px;
  margin-bottom:10px;
  border-radius:8px;
  color:#fff;
  font-weight:600;
  text-decoration:none;
  transition:0.3s;
}

.btn-whatsapp{background:#25D366;}
.btn-instagram{background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);}
.btn-facebook{background:#1877f2;}
.btn-email{background:#444;}

.contact-buttons a:hover{
  transform:scale(1.04);
}

/* Form */
.contact-form-mini{
  margin-top:15px;
}

.contact-form-mini input,
.contact-form-mini textarea{
  width:100%;
  margin-bottom:8px;
  padding:8px;
  border-radius:6px;
  border:1px solid #ddd;
  font-size:13px;
}

.contact-form-mini textarea{
  height:70px;
  resize:none;
}

.contact-form-mini button{
  background:#19c37d;
  color:#fff;
  border:none;
  padding:10px;
  width:100%;
  border-radius:8px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s;
}

.contact-form-mini button:hover{
  background:#14a866;
}

/* Mobile */
@media(max-width:480px){
  .contact-popup-box{
    width:90%;
  }
}









/* ===== REVIEW SECTION ===== */

.css-review-section{
  padding:80px 0;
  background:#ffffff;
  text-align:center;
  overflow:hidden;
}

.css-review-section h2{
  font-size:32px;
  font-weight:700;
  margin-bottom:5px;
}

.css-review-section h2 span{
  background:#18c77a;
  color:#fff;
  padding:4px 12px;
  border-radius:6px;
}

.css-review-section p{
  color:#555;
  font-size:15px;
}

/* Slider Wrapper */
.css-slider{
  margin-top:40px;
  overflow:hidden;
  position:relative;
  width:100%;
}

/* Track */
.css-slide-track{
  display:flex;
  gap:20px;
  animation: scrollReviews 35s linear infinite;
  width:max-content;
}

/* Cards (apply to both class names) */
.css-review-card,
.multi-review-card{
  width:260px;
  background:#ffffff;
  padding:25px 20px;
  border-radius:14px;
  box-shadow:0 8px 22px rgba(0,0,0,0.06);
  flex-shrink:0;
  text-align:left;
  transition:0.3s ease;
}

.css-review-card:hover,
.multi-review-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 26px rgba(0,0,0,0.08);
}

/* Stars */
.stars{
  color:#f4c150;
  font-size:14px;
  margin-bottom:8px;
}

/* Review Text */
.css-review-card p,
.multi-review-card p{
  font-size:14px;
  color:#444;
  line-height:1.5;
}

/* Name */
.css-review-card h4,
.multi-review-card h4{
  margin-top:10px;
  font-size:13px;
  font-weight:600;
  color:#18c77a;
}

/* Auto Scroll Animation */
@keyframes scrollReviews{
  0%   { transform:translateX(0); }
  100% { transform:translateX(-50%); }
}

/* Pause on hover */
.css-slider:hover .css-slide-track{
  animation-play-state: paused;
}

/* Mobile Responsive */
@media(max-width:768px){
  .css-review-card,
  .multi-review-card{
    width:220px;
    padding:20px;
  }

  .css-review-section h2{
    font-size:26px;
  }
}











.about-pro {
  background: linear-gradient(180deg, #ffffff, rgba(77, 121, 94, 0.7));
  padding: 100px 20px;
  font-family: Arial, sans-serif;
}

.about-pro-container {
  max-width: 1300px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
}

/* TEXT SIDE */
.about-pro-text h2 {
  font-size: 42px;
  margin-bottom: 15px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.about-pro-text p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
  font-size: 17px;
}

.about-pro-stats {
  margin-top: 20px;
  display: flex;
  gap: 20px;
}

.about-pro-stats div {
  background: #f5f5f5;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
}

.about-pro-stats span {
  display: block;
  color: #2a5336;
  font-size: 18px;
}

.team-clean-wrapper {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.team-clean {
  display: flex;
  align-items: center;
  gap: 18px;
}

.team-clean img {
  width: 400px;
  height: 400px;
  border-radius: 20%;
  object-fit: cover;
  border: 1px solid lab(64.15% -30.67 5.91);
}

.team-clean-text h3 {
  margin: 0;
  font-size: 35px;
}

.team-clean-text span {
  color: lab(48.75% -37.55 18.56);
  font-size: 18px;
  font-weight: bold;
}

.team-clean-text p {
  margin-top: 6px;
  font-size: 16px;
  color: #555;
  line-height: 1.5;
}

/* Mobile */
@media(max-width:900px){
  .team-clean {
    flex-direction: column;
    text-align: center;
  }
}




