@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
.animation-circle {
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
}

@-moz-keyframes spin {
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.bounce-content {
  -webkit-animation-name: bounce;
  -webkit-animation-duration: 0.3s;
  -webkit-animation-direction: alternate;
  -webkit-animation-timing-function: cubic-bezier(0.5, 0.05, 1, 0.5);
  -webkit-animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }
}
@media (max-width: 480px) {
  .heading {
    font-size: 1.5em !important;
    font-weight: 700 !important;
  }
  .sub-heading {
    font-size: 17px !important;
  }
  .hero-text-box {
    max-width: 100% !important;
  }
}
@media (max-width: 786px) {
  .heading {
    font-size: 1.5em !important;
    font-weight: 700;
  }
}
body {
  font-family: "Playfair Display", serif;
  overflow-x: hidden;
}

p,
.list-disc {
  font-size: 18px;
}

/* Scrollbar width */
::-webkit-scrollbar {
  width: 8px;
}

/* Scrollbar background */
::-webkit-scrollbar-track {
  background: #191d3f;
}

/* Scrollbar handle */
::-webkit-scrollbar-thumb {
  background: #282d66;
  border-radius: 10px;
}

/* Scrollbar hover */
::-webkit-scrollbar-thumb:hover {
  background: #2f3577;
  cursor: pointer;
}

.custom-rounded {
  border-radius: 16px;
}

.card-animated {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  color: white;
  background: linear-gradient(270deg, #11232b, #0c313f, #0c2935);
  background-size: 600% 600%;
  animation: gradientMove 12s ease infinite;
  transition: all 0.5s ease;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
/* ICON */
.card-icon {
  font-size: 3rem;
  color: #a88440;
  margin-bottom: 1rem;
  transition: 0.4s;
}

.card-animated:hover .card-icon {
  color: #be974e;
}

/* HOVER DESCRIPTION */
.card-desc {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background: rgba(11, 31, 42, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.5s;
}

.card-animated:hover .card-desc {
  bottom: 0;
}

.services-overlay {
  background: linear-gradient(to right, rgba(11, 31, 42, 0.95), rgba(11, 31, 42, 0.85));
}

.navbar {
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: #06161f;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-link {
  color: white;
  position: relative;
}

.nav-link.active {
  color: #a88440;
}

.mobile-menu {
  display: none;
}

.mobile-menu.open {
  display: block;
}

/* ================= HERO ================= */
.hero-section {
  background: url("../images/bg1.webp");
  background-size: cover;
  background-position: center;
  position: relative;
  padding-top: 100px;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-section > div {
  position: relative;
  z-index: 2;
}

/* Rotate Image */
.rotate-360 {
  animation: rotate360 30s linear infinite;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Slide Text */
.slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.owl-item.active .slide-left {
  opacity: 1;
  transform: translateX(0);
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

.delay-4 {
  transition-delay: 0.8s;
}

.hero-btn {
  transition: all 0.4s ease;
}

.hero-btn:hover {
  transform: translateY(-4px);
}

/* Owl Nav */
.owl-nav {
  margin-top: 40px;
}

.owl-nav button {
  background: rgba(255, 255, 255, 0.15) !important;
  width: 45px;
  height: 45px;
  border-radius: 50% !important;
  color: white !important;
  font-size: 18px !important;
  margin-right: 10px;
}

.owl-nav button:hover {
  background: white !important;
  color: black !important;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }
}
/* about section  */
#aboutDots button {
  width: 10px;
  height: 10px;
  background: #1f4b5e;
  border: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}

#aboutDots button.active {
  background: #a88440;
  height: 40px;
  border-radius: 10px;
}

/* testimonial section */
@media (max-width: 768px) {
  .testimonial-paragraph {
    background: rgba(0, 0, 0, 0.7803921569);
    padding: 25px;
    border-radius: 6px;
    color: white !important;
  }
}
/* footer  */
.footer-icons {
  font-size: 22px;
}

/* apply now */
/* Fixed Button (Initially Hidden) */
.apply-fixed-btn {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  background: #a88440;
  color: #fff;
  padding: 16px 10px;
  border-radius: 0px 16px 16px 0px;
  cursor: pointer;
  font-weight: 600;
  writing-mode: vertical-rl;
  letter-spacing: 2px;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  animation: pulse 2s infinite;
}

/* Show Button */
.apply-fixed-btn.show {
  opacity: 1;
  visibility: visible;
}

/* Hover Effect */
.apply-fixed-btn:hover {
  background: #ba882a;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}

/*# sourceMappingURL=style.css.map */
