@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  font-family: "Poppins", sans-serif;
  color: white;
}

body {
  background-color: black;
}

section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}
section {
  background-image: url(images/background.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#home .section-box::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent 60%, rgb(4, 61, 42) ) ;
  z-index: 1;
}
.section-box {
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 5px rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  height: 85vh;
  width: 85%;
  overflow: hidden;
}
.content-wrap {
  padding: 20px 50px;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.header-logo span {
  color: #00FF26;
}
nav {
  display: flex;
  align-items: center;
  gap: 40px;
  z-index: 2;
}
.nav-items {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: capitalize;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
  display: flex;
  justify-content: center;
}
nav .active {
  color: #135029;
}
.nav-items::after {
  content: '';
  position: absolute;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background-color: white;
  box-shadow: 0 0 5px white;
  transform: scale(0);
  transform-origin: left;
  transition: 0.3s;
}
.nav-items:hover::after {
  transform: scale(1);
}
.active:hover::after {
  background-color: #135029;
  box-shadow: 0 0 5px #135029;
}

.home-content h3 {
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 50px;
}

.home-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 10px;
  text-transform: uppercase;
  margin-top: -10px;
}

.home-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 5px;
  text-transform: uppercase;
  margin-top: -10px;
  text-align: center;
}

.home-content {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-img {
  width: 47%;
  margin-top: -150px;
  animation: animate 120s linear infinite;
}
.home-btn {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background-color: transparent;
  color: white;
  border: 2px solid white;
  border-radius: 50px;
  height: 50px;
  width: 250px;
  margin-top: -150px;
  z-index: 2;
  cursor: pointer;
  transition: 0.3s;
}
.home-btn:hover {
  background-color: white;
  color: black;
}

/* About Section */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
  padding: 0 50px;
}
.package-img {
  width: 70%;
  animation: zoomIn 1.4s ease-in-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
  border-radius: 20px;
}
.left-grid,
.right-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
#about .right-grid {
  align-items: center;
}
.section-sub {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #00FF26;
  text-transform: capitalize;
  animation: bottomIn 1s ease-in-out forwards;
  animation-delay: 0.2s;
  opacity: 0;
}
.section-title {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: bottomIn 1s ease-in-out forwards;
  animation-delay: 0.3s;
  opacity: 0;
}
#about .left-grid p,
#projects .left-grid p {
  font-size: 18px;
  line-height: 1.8;
  color: rgb(233, 233, 233);
  animation: bottomIn 1s ease-in-out forwards;
  animation-delay: 0.4s;
  opacity: 0;
}

/* Footer */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 50px;
  column-gap: 50px;
}
.footer-grid div {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
#footer h3 {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  animation: bottomIn 1s ease-in-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
}
.footer-items {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: capitalize;
  color: rgb(204, 204, 204);
  cursor: pointer;
  transition: 0.3s;
  animation: bottomIn 1s ease-in-out forwards;
  opacity: 0;
}
.footer-items:hover {
  color: rgb(241, 241, 241);
  text-shadow: 0 0 10px white;
}
#footer .section-box {
  height: auto;
}
.copyrights {
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: 400;
  color: rgb(202, 202, 202);
  text-align: center;
  padding: 15px;
  animation: bottomIn 1.2s ease-in-out forwards;
  opacity: 0;
  animation-delay: 0.2s;
}
#footer {
  align-items: start;
  height: auto;
  padding: 65px 0;
}
.f1 {
  animation-delay: 0.25s;
}
.f2 {
  animation-delay: 0.3s;
}
.f3 {
  animation-delay: 0.35s;
}
.f4 {
  animation-delay: 0.4s;
}
.f5 {
  animation-delay: 0.45s;
}
.f6 {
  animation-delay: 0.5s;
}

/* Dropdown container styling */
#language-selector {
  position: relative;
  display: inline-block;
}

/* Style the dropdown button with a blurred background */
.dropdown-btn {
  font-size: 16px; /* Increase font size for the dropdown button text */
  padding: 10px 20px; /* Add padding to make it bigger */
  border: 1px solid rgba(0, 0, 0, 0.2); /* Border with slight transparency */
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.3); /* Semi-transparent background */
  backdrop-filter: blur(30px); /* Apply strong blur effect */
  -webkit-backdrop-filter: blur(30px); /* Safari Fix (for support) */
  color: black;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center; /* Vertically center the content */
  justify-content: space-between; /* Align text and arrow on the same line */
  width: 150px; /* Adjust width as needed */
  height: 40px; /* Set a fixed height to keep the text centered */
  transition: background-color 0.3s ease, border-color 0.3s ease; /* Smooth transition */
}

/* Style the arrow */
.arrow {
  margin-left: 10px; /* Space between text and arrow */
  font-size: 14px; /* Adjust size of the arrow */
  color: black; /* Set arrow color to black */
}

/* Hide the dropdown content by default */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 148px; /* Same width as button */
  border: 1px solid #ccc;
  border-radius: 5px;
  z-index: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Add shadow for a nicer look */
}

/* Style the dropdown items */
.dropdown-content a {
  color: black;
  padding: 12px 16px; /* Increase padding for a bigger click area */
  text-decoration: none;
  display: block;
  font-size: 16px; /* Ensure the text inside the dropdown is large enough */
  text-align: center; /* Center the text inside the dropdown items */
}

.dropdown-content a:hover {
  background-color: #f1f1f1; /* Highlight on hover */
}

/* Show the dropdown when the button is clicked */
.dropdown:hover .dropdown-content {
  display: block;
}

/* Optionally: Add focus styling */
.dropdown-btn:focus {
  border-color: #0056b3;
}

/*Button animation */
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotate-gradient {
  0% {
    --angle: 0deg;
  }
  100% {
    --angle: 360deg;
  }
}

.book-now-button {
  font-size: 16px;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  outline: none;  
  background-image: conic-gradient(
  from var(--angle), 
  #1f77b4 0%,      /* Deep Blue */
  #2ecc71 25%,     /* Emerald Green */
  #3498db 50%,     /* Sky Blue */
  #16a085 75%,     /* Teal Green */
  #1f77b4 100%     /* Deep Blue */
  );
  animation: rotate-gradient 7s linear infinite; 
  transition: all 0.3s ease;
}

.book-now-button:hover {
  border: 1px solid white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.socials-container {
  display: flex;
  gap: 20px;
}

.socials-container a {
  backdrop-filter: blur(10px);
  border-radius: 50%;
  height: 48px; /* Reduced size */
  width: 48px;  /* Reduced size */
  box-sizing: border-box;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
}

.socials-container a svg {
  height: 24px; /* Reduced the icon size */
  width: 24px;  /* Ensure icon's width is proportional */  
}

.socials-container a::before {
  content: attr(data-social);
  position: absolute;
  background-color: var(--accent-color);
  color: white;
  text-decoration: none;
  padding: 0.5em 1em;
  border-radius: 100px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
  transform: translateY(-30px) rotate(25deg);
  opacity: 0;
  transition: 200ms cubic-bezier(.42,0,.44,1.68);
}

.socials-container a:hover {
  background-color: var(--accent-color);
  fill: white;
}

.socials-container a::after {
  content: '';
  position: absolute;
  height: 0;
  width: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  transform: translateY(0) rotate(25deg);
  opacity: 0;
  transition: 200ms cubic-bezier(.42,0,.44,1.68);
}

.socials-container a:hover::after {
  transform: translateY(-42px) rotate(0);
  opacity: 1;
}

#contacts .right-grid {
  display: flex;
  align-items: center;
}

#packages .right-grid {
  display: flex;
  align-items: center;
}

/* Style for the scroll to top button */
#scrollToTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 50px;
  right: 10px;
  background-image: conic-gradient(
  from var(--angle), 
  #1f77b4 0%,      /* Deep Blue */
  #2ecc71 25%,     /* Emerald Green */
  #3498db 50%,     /* Sky Blue */
  #16a085 75%,     /* Teal Green */
  #1f77b4 100%     /* Deep Blue */
  );
  animation: rotate-gradient 7s linear infinite;
  transition: all 0.3s ease;
  
  color: white;
  border: none;
  border-radius: 50%; /* Ensures the button is round */
  width: 35px; /* Reduced width for smaller circle */
  height: 35px; /* Reduced height for smaller circle */
  padding: 0; /* Remove padding to maintain the circular shape */
  font-size: 20px; /* Larger font size for the arrow */
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1000; /* Make sure it's on top of other elements */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

#scrollToTopBtn:hover {
  background-color: #0056b3;
}

#scrollToTopBtn span {
  font-weight: 900; /* Makes the arrow very bold (thicker) */
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7); /* Strong shadow effect for emphasis */
}

.content {
  padding: 20px;
}

.long-content {
  height: 2000px; /* Makes the page long enough to scroll */
}

button, a {
    -webkit-tap-highlight-color: transparent; /* For mobile browsers */
}







