    *{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    body {
      font-family: 'Roboto', sans-serif;
       margin: 0;
      padding: 0;
    
    }
/* start of the navbar css */
    .navbar-brand img {
      height: 60px;
      width: 100%;
    }

    .navbar-nav .nav-item{
       padding-right: 30px;
    }

    .navbar-nav .nav-item .nav-link{
         color: black;
    }

    .navbar-nav  .nav-link {
      font-family: 'Roboto', sans-serif;
      font-size: 18px;
   
      padding: 0.1rem 1.6rem;
    }

    .navbar-nav .nav-link.active {
      background-color: #e3aa32;
      color: #fff !important;
      border-radius: 4px;
    }

    .whatsapp-contact {
      display: flex;
      align-items: center;
      color: #333;
      font-weight: 500;
    }

    .whatsapp-contact i {
      color: #25D366;
      font-size: 30px;
      margin-right: 6px;
    }
    .whatsapp-contact {
  padding: 6px 12px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.whatsapp-contact:hover {
  background-color: #e3aa32;
  color: #fff;
}

.whatsapp-contact:hover i {
  color: #fff;
}

.whatsapp-contact:hover span {
  color: #fff;
}

    .bounce {
  animation: bounce 1.2s infinite;
  display: inline-block;
  -webkit-animation: bounce 1.2s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

    .user-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid #ccc;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-left: 15px;
      cursor: pointer;
    }

    .user-icon i {
      font-size: 16px;
      color: #555;
    }

    .navbar {
      padding-top: 0.75rem;
      padding-bottom: 0.75rem;
    }

    @media (max-width: 991.98px) {
      .whatsapp-contact,
      .user-icon {
        margin-top: 10px;
      }
    }

    @media  (max-width: 820px){
          .navbar-nav .nav-item{
       padding-right: 0px;
       padding-bottom: 10px;
    }
    }

/* End of the navbar css */

/*------- Start of the Hero css -----------*/
      .hero-slider .item {
  height: 87vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 4%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 750px;
  z-index: 2;
}

.hero-content h1 {
  font-family: 'Merriweather', serif;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  margin-top: 20px;
  font-size: 1rem;
  font-family: 'Roboto', sans-serif;
}

.hero-content .btn {
  margin-top: 5px;
  background-color: #e0a524;
  color: white;
  padding: 20px 24px;
  border-radius: 25px;
  border: none;
    transition: all 0.3s ease; 
}

.hero-content .btn:hover {
  transform: scale(1.3);
  /*Growsslightlyonhover*/background-color: #cf9520;
  /*Optional: slightly darker color on hover */;
  -webkit-transform: scale(1.3);
  -moz-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3);
}

/* FINAL: Bulletproof Owl Carousel vertical dots style fix */

.hero-slider .owl-dots {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 99;
}

.hero-slider .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white !important;  
  margin: 6px 0;
  opacity: 1;
  transition: background-color 0.3s ease, opacity 0.3s ease;
  outline: none !important; 
  border: none;             
  box-shadow: none;      
}

.hero-slider .owl-dot:focus {
  outline: none !important;
  box-shadow: none !important;
}

.hero-slider .owl-dot.active {
  background-color: #e3aa32 !important; 
}


@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
.hero-slider .owl-dots {
  right: 10px;
} 
}

/*------- End of the Hero css -----------*/

/*start of hero for the mobile screen */

.hero-static {
  /* height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative; */
   min-height: 500px; /* A clean fixed height */
  max-height: 600px; /* Optional, limits overflow on large phones */
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-static .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-static .hero-content {
  position: absolute;
  top: 50%;
  left: 4%;
  right: 4%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 750px;
  z-index: 2;
  text-align: center;
}

.hero-static .hero-content p{
  padding-top: 20px;
  
}

@media (max-width: 768px) {
  .hero-static {
    min-height: 400px;
    max-height: 450px;
  }

  .hero-static .hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .hero-static .hero-content p {
    font-size: 0.9rem;
    margin-top: 10px;
  }

  .hero-static .hero-content .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
    margin-top: 15px;
  }
}


/*start of hero for the mobile screen */

/* start of the adjustment for tablet size */
@media (max-width: 991.98px) and (min-width: 768px) {
  .hero-slider .item {
    height: 60vh; /* reduce height for tablets */
  }

  .hero-content {
    left: 5%;
    max-width: 90%;
  }

  .hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .hero-content .btn {
    padding: 10px 22px;
    font-size: 1rem;
  }
}
/* End of the adjustment for tablet size */

/* start of what we do section */

.what-we-do .section-heading {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.what-we-do .section-intro {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #333;
}

.service-card {
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card .icon {
  font-size: 1.6rem;
  background-color: #E0A424;
  color: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px;
}

.service-building {
  background-color: #e3aa32;
}

.service-building .service-title,
.service-building .service-text {
  color: #fff;
}

.service-travel,
.service-restaurant {
  background-color: #fff;
  box-shadow: 0 6px 12px rgba(0,0,0,0.05);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.service-title {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .what-we-do .section-heading {
    font-size: 2rem;
  }
  .what-we-do .section-intro {
    font-size: 0.95rem;
  }
  .service-title {
    font-size: 1.1rem;
  }
  .service-text {
    font-size: 0.9rem;
  }
}


/* End of what we do section */


/* Start of the Who We Are section */
.who-we-are .section-subtitle {
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.who-we-are .section-title {
  font-size: 2.5rem;
  font-family: 'Merriweather', serif;
}

.who-we-are .text-highlight {
  color: #e3aa32;
}

.award-image-wrapper {
  justify-content: left;
  width: 100%;
}

.award-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

.badge-label {
  font-size: 0.7rem;
  background-color: #e3aa32;
  color: white;
  padding: 4px 6px;
  border-radius: 4px;
  margin-top: 6px;
  line-height: 1.2;
}

.btn-scale-hover {
  transition: transform 0.3s ease-in-out;
  -webkit-transition: transform 0.3s ease-in-out;
  -moz-transition: transform 0.3s ease-in-out;
  -ms-transition: transform 0.3s ease-in-out;
  -o-transition: transform 0.3s ease-in-out;
}

.btn-scale-hover:hover {
  transform: scale(1.20);
  -webkit-transform: scale(1.20);
  -moz-transform: scale(1.20);
  -ms-transform: scale(1.20);
  -o-transform: scale(1.20);
  box-shadow: 0 5px 12px 6px #e3aa32; /* golden shadow */

}

/* Responsive tweaks */
@media (max-width: 767.98px) {
  .who-we-are .section-title {
    font-size: 2rem;
  }

  .award-image-wrapper {
    margin-top: 1.5rem;
  }
}

/* End of who we are section */


/* Start of Our services section */
.our-services {
  background-color: #fff;
}

.our-services .section-title {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
}

.our-services .text-highlight {
  color: #e3aa32;
}

.our-services .section-intro {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #292828;
}

.service-card {
  border-radius: 12px;
  overflow: hidden;
    box-shadow: 2px 8px 8px rgba(0,0,0,0.1);
}

.service-card .card-img-top {
  width: 100%;
  height: auto;
}

.service-card .card-body {
  padding: 1.75rem 1.5rem;
}

.service-card .card-title {
  font-family: 'Merriweather', serif;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;

}

.service-card .card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  /* color: #555; */
    color: #292828;
}

.service-card .card-link {
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .our-services .section-title {
    font-size: 2rem;
  }
  .our-services .section-intro {
    font-size: 0.9rem;
  }
  .service-card .card-title {
    font-size: 1.1rem;
  }
  .service-card .card-text {
    font-size: 0.9rem;
  }
}

/* End of Our services section */

/* Start of FAQ section  */

.faq-section {
  position: relative;
  background: url('../images/hero1.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
}

.faq-section .overlay-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  z-index: 1;
}

.faq-section .container-fluid {
  position: relative;
  z-index: 2;
}

.faq-section .faq-title {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  color: #fff;
}

.faq-section .faq-intro {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  color: #f3f3f3;
}

.faq-card {
   background-color: #e3aa32;
   
}

.faq-card .card{
   background-color: #e3aa32;
   color: white;
}

.faq-card h3 {
  font-family: 'Merriweather', serif;
  color: white;
}

.faq-card .btn-link {
  color: white !important;
  font-size: 1.1rem;
  text-decoration: none;
}

.faq-card .faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: white;
}

.faq-card .collapse.show .faq-icon {
  transform: rotate(180deg);
}

.faq-card .card-body {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  color: white;
}

.faq-cta span {
  font-size: 0.9rem;
  color: #777;
}



.faq-cta .btn {
  font-size: 0.9rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease; 
}

.faq-cta .btn:hover {
  transform: scale(1.03);
}

.btn-link:focus {
  outline: none !important;
  box-shadow: none !important;
}

@media (max-width: 767.98px) {
  .faq-section .faq-title {
    font-size: 2rem;
  }
  .faq-section .faq-intro {
    font-size: 0.9rem;
  }
  .faq-card .btn-link {
    font-size: 1rem;
  }
}

/* End of FAQ section  */


/* start of testimonial section  */
.text-gold {
  color: #e4aa34;
}

.testimonial-box {
  background: #fff;
  border: 2px solid #e4aa34;
  border-radius: 8px;
  padding: 24px 28px;
  max-width: 800px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.testimonial-box .quote-icon {
  position: absolute;
  top: -12px;
  left: 16px;
  font-size: 24px;
  background: #fff;
  padding: 0 6px;
}

.avatar {
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.avatar.active {
  opacity: 1;
  transform: scale(1.1);
}

/* start of testimonial section  */

.subscriber-section {
  color: #fff;
}

.subscriber-title {
  font-family: 'Merriweather', serif;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.subscriber-text {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
}

.subscriber-form {
  position: relative;
}

.subscriber-form .form-control {
  border: none;
  border-radius: 50px;
  height: 60px;
  padding: 0 140px 0 25px; /* left and right padding for space */
  background-color: #fff;
  font-size: 1rem;
  box-shadow: none;
}

.send-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 50px;
  padding: 0 30px;
  border: none;
  border-radius: 50px;
  background-color: #e0a524;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

.send-btn:hover {
  background-color: #c9921f;
}

@media (max-width: 767.98px) {
  .subscriber-title {
    font-size: 2rem;
  }
}

/* end of testimonial section  */


.partner-join {
  background-color: #faf8f2; 
  font-family: 'Roboto', sans-serif;
}

.partner-logo {
  width: 160px;
  height: 90px;
}

.partner-title {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  color: #1c2243;
}

.text-highlight {
  color: #e3aa32;
}

.partner-subtitle {
  font-size: 1rem;
  color: #252525;
}

.social-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin-left: 10px;
  border-radius: 50%;
  background-color: #e3aa32;
  color: white;
  text-align: center;
  font-size: 1.2rem;
  transition: background-color 0.3s ease;
}

.social-btn:hover {
  background-color: #c9921f;
  text-decoration: none;
}

hr {
  border-top: 1px solid #ddd;
}

@media (max-width: 767.98px) {
  .partner-title {
    font-size: 1.6rem;
    text-align: center;
  }
  .partner-subtitle {
    text-align: center;
  }
  .text-md-right {
    text-align: center !important;
  }
}




/* start of whatassp iniqurie now and popup form */

.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background-color: #25d366;
  color: white;
 width: 70px;  /* increased size */
  height: 70px; /* increased size */
  border-radius: 50%;
  font-size: 48px;
  z-index: 999;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  border: none;
  outline: none;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #20b954;
  color: #fff;
}

.whatsapp-float:focus,
.whatsapp-float:active,
.whatsapp-float:visited {
  outline: none !important;
  box-shadow: none !important;
  background-color: #25d366 !important;
  color: #fff !important;
  text-decoration: none !important;
}

.enquire-btn {
  position: fixed;
  top: 70%;
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  background-color: #e0a524;
  color: #fff;
  border: none;
  padding: 7px 28px;
  font-weight: 600;
 
  cursor: pointer;
  z-index: 999;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  outline: none;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}
.enquire-btn:hover {
  transform: translateY(-50%) rotate(-90deg) scale(1.05);
  background-color: #cf9520;
}
.enquire-btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Popup Modal Styling */
.enquiry-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
}

.enquiry-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 450px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}
.close-btn:hover {
  color: #e0a524;
}


button:focus, input:focus, textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

.enquiry-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
}


.enquiry-content {
  background: #fff;
  padding: 40px 35px;
  border-radius: 15px;
  width: 90%;
  max-width: 460px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  position: relative;
  transform: translateY(-20px);
  animation: slideUp 0.4s ease forwards;
  transition: all 0.3s ease-in-out;
}


.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s ease;
}
.close-btn:hover {
  color: #e0a524;
}


.contact-form .form-control {
  border: 2px solid #eee;
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
  font-size: 15px;
  background-color: #fafafa;
}

.contact-form .form-control:focus {
  border-color: #e0a524;
  background-color: #fff;
  box-shadow: 0 0 8px rgba(224,165,36,0.4);
  outline: none;
  transform: scale(1.02);
}

.contact-form textarea.form-control {
  resize: none;
}

.btn-yellow {
  background-color: #e0a524;
  color: #fff;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.btn-yellow:hover {
  background-color: #cf9520;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(224,165,36,0.4);
}

.enquiry-content h5 {
  color: #222;
  letter-spacing: 1px;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}


button:focus, input:focus, textarea:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* === End Enquiry Modal Background === */

/* start of whatassp iniqurie now and popup form */


/* ===== Preloader ===== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2000;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-content {
  position: relative;
  text-align: center;
}

.loader-logo {
  width: 90px;
  height: auto;
  animation: fadeInScale 1.5s ease-in-out infinite alternate;
}

/* Animated Gold Ring */
.loader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 110px;
  height: 110px;
  border: 4px solid #e0a524;
  border-top-color: transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: spin 1.5s linear infinite;
}

/* Fade + Scale animation for logo */
@keyframes fadeInScale {
  from { opacity: 0.6; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1.05); }
}

/* Spinning ring */
@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* When the page is loaded */
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}

/*End of preloader */
/* =========================
   FOOTER RESPONSIVE ALIGNMENT
   ========================= */
/* =========================
   FOOTER RESPONSIVE ALIGNMENT
   ========================= */
/* =========================
   FOOTER RESPONSIVE ALIGNMENT (FINAL)
   ========================= */
/* === Base: Left aligned on mobile === */
.site-footer {
  text-align: left;
}

.site-footer .footer-heading{
  font-size: 25px;
  font-weight: bolder;
  margin-bottom: 15px;

}

.site-footer .footer-heading,
.site-footer .footer-links,
.site-footer .footer-contact {
  text-align: left;
}

.site-footer .footer-links{
  font-size: 14px;
}
/* === Contact icons === */
.footer-contact li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
  justify-content: flex-start;
 
}


.footer-contact .contact-icon {
  background-color: #e0a524;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.footer-contact .contact-text {
  color: black;
  transition: color 0.3s ease;
  font-size: 14px;
}

.footer-contact li:hover .contact-icon {
  transform: scale(1.1);
  box-shadow: 0 3px 8px rgba(224,165,36,0.4);
}

.footer-contact li:hover .contact-text {
  color: #e0a524;
}

/* === Footer links === */
.footer-links li a {
  color: black;
  text-decoration: none;
  transition: color 0.3s ease;

}

.footer-links li a:hover {
  color: #e0a524;
}

/* === Large Screens: Center all 4 columns === */
@media (min-width: 992px) {
  .site-footer .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
  }

  .site-footer .row.justify-content-center {
    justify-content: center !important;
    flex-wrap: nowrap; /* keeps all 4 columns in one line */
  }

  .site-footer .col-md-3 {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 20px;
  }
}

