@font-face {
  font-family: 'Roboto';
  src: url('./fonts/roboto.woff2') format('woff2');
}
html {
  scroll-behavior: smooth;
}
*{
  font-family: 'popins', sans-serif;
  margin: 0; padding: 0;
  box-sizing: border-box;
  outline: none; border:none;
  text-decoration: none;
}
:root {
    --primary: #003b73;
    --secondary: #e94e3f;
    --light-blue: #87ceeb;
    --white: #ffffff;
    --dark:#14141f;
}
.text-tertiary{
  color: #14141f;
}
.btn-sm-square{
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 0px;
}
.logo-in-hero {
  width: 80px; /* Sets a fixed width for the logo */
  height: 80px; /* Sets a fixed height for the logo */
  position: absolute;
  top: 20px; /* Vertical position */
  left: 20px; /* Horizontal position */
  z-index: 10; /* Ensures it appears above other elements */
  border-radius: 50%; /* Keeps the logo perfectly circular */
  border: 3px solid white; /* Optional: Adds a border for contrast */
  object-fit: cover; /* Ensures the logo fits well inside its container */
}

@media (max-width: 768px) {
  .logo-in-hero {
      width: 60px; /* Scales down the logo for smaller screens */
      height: 60px;
  }
}

@media (max-width: 480px) {
  .logo-in-hero {
      width: 50px; /* Further scales down for very small screens */
      height: 50px;
  }
}

/* Attribute: Line animation */
.section-title {
    position: relative;
    display: inline-block;
  }
  
  .section-title::after {
    content: "";
    position: absolute;
    top: 100%; /* Positioned right below the h6 */
    left: 0; /* Align the line directly under the h6 text */
    width: 90%; /* Match the width of the h6 text */
    height: 6px; /* Thickness of the line */
    background-color: #007bff; /* Bootstrap primary color */
    border-radius: 3px;
    animation: snake 2s infinite ease-in-out;
  }
  
  @keyframes snake {
    0% {
      transform: translateX(-15%) scaleX(0.8);
    }
    50% {
      transform: translateX(10%) scaleX(1.2);
    }
    100% {
      transform: translateX(0%) scaleX(1);
    }
  }
  
/* hero-header */
.hero-header {
  background: linear-gradient(rgba(20, 20, 31, 0.7), rgba(20, 20, 31, 0.7));
  background-position: center 10%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* Services */
.service-item{
    box-shadow: 0 0 45px rgba(0,0,0,0.8);
    transition: 0.5s;
}
.service-item {
    background: var(--white);
}
.service-item * {
    transition: 0.5s;  
}
.service-item:hover * {
    background-color: var(--dark);
    color: var(--light-blue) !important;
}
.icon-container {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333;
  border: 2px solid #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  position: relative;
}

.spinning-icon {
  color: #007bff; /* Blue color */
  animation: spin 3s infinite linear; /* Icon revolves */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.service-box {
  opacity: 0;
  transform: translateY(100px) rotate(0deg);
  animation: slide-in 1.5s ease-out forwards;
}

@keyframes slide-in {
  0% {
    opacity: 0;
    transform: translateX(calc(50px - 100px * var(--random-direction)))
      translateY(calc(50px - 100px * var(--random-direction)))
      rotate(calc(-20deg + 40deg * var(--random-direction)));
  }
  100% {
    opacity: 1;
    transform: translateX(0) translateY(0) rotate(0);
  }
}

/* Initial hidden state */
.service-box {
  opacity: 0;
  transform: translateX(100px); /* Default slide from right */
  transition: all 1.5s ease-out; /* Smooth animation */
}

.service-box.slide-left {
  transform: translateX(-100px); /* Slide from left */
}

.service-box.in-view {
  opacity: 1;
  transform: translateX(0); /* Slide into view */
}


/* Destination: section */
.slide-in {
  animation: slideIn 1s ease-in-out;
}

@keyframes slideIn {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Form style */
.form-control {
  background-color: #ffffff !important;
  color: #000;
}

.form-floating label {
  color: #1a1a1a;
  font-size: 0.875rem;
  transition: all 0.2s ease-in-out;
  padding-left: 0.75rem;
}

.form-floating input:not(:placeholder-shown) + label,
.form-floating textarea:not(:placeholder-shown) + label,
.form-floating input:focus + label,
.form-floating textarea:focus + label {
  transform: translateY(-1.5rem);
  font-size: 0.75rem;
  color: #6c757d;
}

.form-control:focus {
  background-color: #e9ecef !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
/* Package: Section */
.slide-in {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.package-item{
  box-shadow: 0 0 45px rgba(0,0,0,0.08);
}
.package-item img{
  transition: 0.5s;
}
.package-item:hover img {
  transform: scale(1.1);
}
.btn{
  font-family: 'Nuito', sans-serif;
  font-weight: 600;
  transition: 0.5s;
}
.btn.btn-primary,
.btn.btn-secondary{
  color: #ffffff;
}
.btn-square{
  width: 38px;
  height: 38px;
}

/* Booking Section */
.booking{
  background: linear-gradient(rgba(15, 23, 43, 0.7), rgba(15, 23, 43,0.7)), url(../img/about.jpeg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
/* Reason-item Section */
/* General styling for reason-item */
.reason-item {
  transition: all 0.5s ease-in-out;
}

.reason-item img {
  width: 100%; /* Ensures all images are responsive */
  height: auto;
  transition: transform 0.5s;
  border-radius: 10px 10px 0 0;
}

.reason-item:hover img {
  transform: scale(1.05); /* Slight hover effect for all images */
}

.reason-item div {
  background: linear-gradient(145deg, #e0e0e0, #ffffff);
  box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  overflow: hidden;
}

/* Specific styling for the first item to make it bigger */
.reason-item:first-child img {
  transform: scale(1.2); /* Larger initial size for the first image */
}

.reason-item:first-child:hover img {
  transform: scale(1.25); /* Additional hover effect for the first image */
}

.reason-item:first-child div {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3); /* Stronger shadow for emphasis */
}

/* Reason section title and layout adjustments */
.section-title {
  font-size: 32px;
  color: var(--primary);
}

.reason-item p {
  font-size: 14px;
  color: #333;
  margin: 0;
  padding: 10px;
  text-align: center;
}
/* Social links */
.footer{
	background: #15141a;
}
.footer i.fa{
	font-size: 15px;
	padding: 20px;
	color: #444348;
	margin-top: 20px;
}
.footer i.fa:hover{
	color: #008ed6;
}
.footer p{
	font-size: 14px;
	color: #444348;
	text-transform: uppercase;
	font-weight: 600;
	margin-bottom: 30px;
}
.footer p a{
	color: #444348;
}
.footer p a:hover{
	color: #008ed6;
}

/* Testimonail Section */

/* Footer Section */
.footer .btn.btn-social{
  margin-right: 5px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-blue);
  font-weight: normal;
  border: 1px solid #ffffff;
  border-radius: 35px;
  transition: 0.3s;
}
.footer .btn.btn-social:hover{
  color: var(--primary);
}
.footer.btn.btn-link{
  display: block;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  color: #ffffff;
  font-size: 15px;
  font-weight: normal;
  text-transform: capitalize;
  transition: 0.3s;
}
.footer.btn.btn-link::before{
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
.footer.btn.btn-link:hover{
  letter-spacing: 1px;
  box-shadow: none;
}
.footer .copyright{
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(255,255,255, .1);
}
.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255,255,255, .1);
}
.footer .footer-menu a:last-child{
  margin-right: 0;
  padding-right: 0;
  border-right: none;
} 
