

.navbar {
  background: #0B2E33;
  color: #fff;
  padding: 20px 40px;
  position: relative;
  border-radius: 20px;
  
}

.navdiv {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo Styles */
.logo img {
  height: 60px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 0 20px 5px #B8E3E9;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px 10px #B8E3E9;
}

/* Horizontal Menu (PC) */
.nav-links1 ul {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
  
}

.nav-links1 ul li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 15px;
  border-radius: 10px;
  transition: box-shadow 0.3s ease;
}

.nav-links1 ul li a:hover {
  box-shadow: 0 0 20px 5px #B8E3E9;
}

/* Hamburger Icon (Tablet/Mobile) */
.hamburger {
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  display: none;
}

/* Side-menu Styles */
.nav-links {
  list-style: none;
  position: fixed;
  top: 0;
  left: -250px;
  width: 150px;
  height: 100vh;
  background: #0B2E33;
  padding: 20px;
  transition: left 0.5s ease-in-out;
  z-index: 1000;
}

.nav-links.active {
  left: 0;
}

.nav-links li a {
  color: #fff;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #fff;
  transition: box-shadow 0.3s ease;
}

.nav-links li a:hover {
  box-shadow: 0 0 20px 5px #B8E3E9;
  border-radius: 10px;
}

/* Backdrop Styles */
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100vh;
  background: #000000cc;
  z-index: 500;
  transition: width 0.5s ease-in-out;
}

.backdrop.active {
  width: 100vw;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links1 ul {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
/* end NavBar */


@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap');

.pack {
  font-family: 'Roboto Slab', serif;
  font-size: 3rem;
  color: #ffffff;
  background-color: #0B2E33;
  padding: 20px 40px;
  text-align: center;
  border: 4px solid #B8E3E9;
  border-radius: 40px;
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
  transition: all 0.4s ease-in-out;
  width: fit-content;
  max-width: 90%;
  margin: 40px auto;
  cursor: pointer;
  letter-spacing: 2px;
  word-wrap: break-word;
}

/* Hover Effects */
.pack:hover {
  color: #568188;
  background-color: #B8E3E9;
  border-color: #ffffff;
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.8), 0 0 10px #4F7C82 inset;
  transform: scale(1.05);
}

/* Tablet Responsive */
@media (max-width: 768px) {
  .pack {
    font-size: 2.5rem;
    padding: 15px 30px;
  }
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .pack {
    font-size: 2rem;
    padding: 10px 20px;
    border-radius: 30px;
  }
}


/* Package item style */

.package-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 20px;
}
.package-item {
  background: #fff;
  border-radius: 30px;
  padding: 20px;
  box-shadow: 0 4px 20px rgb(0 0 0 / 0.2);
  transform: translateY(50px);
  animation: slide-up 0.7s ease forwards;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
  border: 2px solid #fff;
}

/* Lift up and highlight on hover */
.package-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 30px rgb(0 0 0 / 0.5);
  border: 2px solid #4F7C82;
}

/* Image drop-down animation and hover effects */
.package-item img {
  width: 350px;
  height: 250px;
  object-fit: cover;
  border-radius: 30px 30px 0 0;
  transform: translateY(-50px);
  animation: drop-down 0.7s ease forwards;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.package-item img:hover {
  transform: translateY(-60px) scale(1.1);
  box-shadow: 0 20px 30px rgb(0 0 0 / 0.5);
}

/* Text content styling with hover color */
.package-item h4 {
  margin-bottom: 10px;
  color: #4F7C82;
  font-size: 1.5rem;
}

.package-item p {
  margin-bottom: 10px;
  color: #555;
  transition: color 0.4s ease;
}

.package-item p:hover {
  color: #4F7C82;
}

/* Buttons with shake animation */
.package-item .package-actions a {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 10px;
  background: #4F7C82;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transform: translateY(20px);
  animation: shake 0.5s ease forwards;
  transition: background 0.4s ease, transform 0.4s ease;
}

.package-item .package-actions a:hover {
  background: #ffb733;
  transform: translateY(10px);
}

/* Animations */
@keyframes drop-down {
  0% {
    transform: translateY(-50px);
   opacity: 0;
  }
  100% {
    transform: translateY(0);
   opacity: 1;
  }
}

@keyframes slide-up {
  0% {
    transform: translateY(50px);
   opacity: 0;
  }
  100% {
    transform: translateY(0);
   opacity: 1;
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  50% {
    transform: translateX(5px);
  }
  75% {
    transform: translateX(-5px);
  }
}

@media (max-width: 767px) {
  .package-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    gap: 20px;
    padding: 20px;

    overflow-x: scroll;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;

    -webkit-overflow-scrolling: touch;
  }

  .package-item {
    padding: 15px;
    scroll-snap-align: center;
    flex: 0 0 100%;
  }

  .package-item h4 {
    font-size: 1.2rem;
  }

  .package-item p {
    font-size: 0.9rem;
  }

  .package-item .package-actions a {
    padding: 8px 16px;
    font-size: 0.9rem;
  }

  .package-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 30px 30px 0 0;
  }
}
/* Package Item Styles */

/* About Page */
/* Section layout */
.about-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 40px 20px;
  background: #f5fefe;
}

/* Reusable block style */
.about-block1,
.about-block2,
.about-block3,
.about-block4 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 0 10px rgba(11, 46, 51, 0.1);
  gap: 30px;
  transition: all 0.4s ease;
  animation: slideIn 1s ease forwards;
  position: relative;
}

/* Alternate flex directions */
.about-block2,
.about-block4 {
  flex-direction: row-reverse;
}

/* Hover glow effect */
.about-block1:hover,
.about-block2:hover,
.about-block3:hover,
.about-block4:hover {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
  transform: scale(1.01);
}

/* Text section */
.text-content1,
.text-content2,
.text-content3,
.text-content4 {
  flex: 1;
  padding: 10px;
}

/* h1 and h4 styling */
.text-content1 h1,
.text-content2 h4,
.text-content3 h4,
.text-content4 h4 {
  text-align: center;
  background-color: #0B2E33;
  color: white;
  padding: 12px;
  border-radius: 15px;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

/* Hover on headers */
.text-content1 h1:hover,
.text-content2 h4:hover,
.text-content3 h4:hover,
.text-content4 h4:hover {
  background-color: #4F7C82;
  color: #fff;
  box-shadow: 0 0 10px #0ff;
}

/* Paragraph styling with hover color effect */
.text-content1 p,
.text-content2 p,
.text-content3 p,
.text-content4 p,
.text-content4 ul {
  color: #4F7C82;
  font-size: 16px;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.text-content1 p:hover,
.text-content2 p:hover,
.text-content3 p:hover,
.text-content4 p:hover,
.text-content4 ul:hover {
  color: #0B2E33;
}

/* Image container */
.div-photos1,
.div-photos2,
.div-photos3,
.div-photos4 {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 15px rgba(11, 46, 51, 0.2);
}

.div-photos1 img,
.div-photos2 img,
.div-photos3 img,
.div-photos4 img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 15px;
}

/* Block animation */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .about-block1,
  .about-block2,
  .about-block3,
  .about-block4 {
    flex-direction: column;
    text-align: center;
  }

  .div-photos1,
  .div-photos2,
  .div-photos3,
  .div-photos4 {
    margin-top: 20px;
  }
}

/* Contact form */

/* Heading */
.form-heading {
  text-align: center;
  background: #0B2E33;
  color: #fff;
  padding: 15px 30px;
  border-radius: 20px;
  margin-bottom: 30px;
  transition: 0.3s ease;
  animation: slideInTop 1s ease forwards;
}
.form-heading:hover {
  background-color: #4F7C82;
  box-shadow: 0 0 15px #00ffff;
}

/* Section layout */
.form-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  gap: 30px;
  animation: slideIn 1.2s ease forwards;
  flex-wrap: wrap;
}

/* Form container */
.form-container {
  flex: 1 1 60%;
  background: #ffffff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(11, 46, 51, 0.2);
  transition: 0.3s ease;
}
.form-container:hover {
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
  transform: scale(1.01);
}
.form-container p {
  margin-bottom: 20px;
  color: #4F7C82;
}

/* Image block */
.form-image {
  flex: 1 1 35%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}
.form-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Form inputs */
form input,
form select,
form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  transition: border-color 0.3s ease;
}
form input:focus,
form select:focus,
form textarea:focus {
  border-color: #4F7C82;
  outline: none;
}

/* Buttons */
.form-buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.form-buttons button {
  flex: 1 1 45%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  background-color: #0B2E33;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: slideInButtons 1.2s ease forwards;
}
.form-buttons button:hover {
  background-color: #4F7C82;
  box-shadow: 0 0 10px #0ff;
}

/* Animations */
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInButtons {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .form-section {
    flex-direction: column;
    align-items: center;
  }

  .form-container,
  .form-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .form-buttons {
    flex-direction: column;
  }

  .form-buttons button {
    width: 100%;
  }
}













.footer {
  background: #0B2E33;
  color: #fff;
  padding: 20px;
  position: relative;
  border-radius: 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
  position: relative;
}

.footer-col {
  color: #B8E3E9;
}

.contact-list a,
.social-list a {
  color: #fff;
  text-decoration: none;
  padding-bottom: 5px;
  
  border-bottom: none;
  transition: color 0.4s ease, transform 0.4s ease;
}

.contact-list a:hover,
.contact-list a:active,
.contact-list a:focus,
.social-list a:hover,
.social-list a:active,
.social-list a:focus {
  color: #B8E3E9;
  transform: translateY(-5px);
}

.contact-list {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;
}

.contact-list a .fa,
.social-list a .fa {
  margin-right: 10px;
  color: #B8E3E9;
  font-size: 1.2rem;
  transition: color 0.4s ease, transform 0.4s ease;
}

.contact-list a:hover .fa,
.contact-list a:active .fa,
.contact-list a:focus .fa,
.social-list a:hover .fa,
.social-list a:active .fa,
.social-list a:focus .fa {
  color: #fff;
  transform: scale(1.5);
}

/* Align social media links in a row under registered office */
.social-list {
  list-style: none;
  margin-bottom: 20px;
  padding: 0;

  display: flex;
  gap: 15px;

  overflow-x: auto;
  scroll-snap-type: x mandatory;

  -webkit-overflow-scrolling: touch;

  padding-bottom: 10px;

  border-bottom: 1px solid #fff;
}

.social-list li {
  flex: 0 0 auto;
  scroll-snap-align: center;

  transform: translateY(20px);
  animation: slide-up 0.7s ease forwards;

  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.social-list li:hover {
  transform: translateY(10px);
}

/* Footer bar at bottom */
.footer__bar {
  padding: 20px;
  background: #93B1B5;
  color: #fff;
  text-align: center;
  position: relative;
}

.footer__bar a {
  color: #fff;
  margin-left: 10px;
  text-decoration: none;
  padding-bottom: 5px;
  border-bottom: 2px solid #fff;
  transition: color 0.4s ease, border-bottom-color 0.4s ease;
}

.footer__bar a:hover,
.footer__bar a:active,
.footer__bar a:focus {
  color: #0B2E33;
  border-bottom-color: #0B2E33;
}

/* Animations */
@keyframes slide-up {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 767px) {
  .social-list {
    gap: 10px;
    padding-bottom: 20px;
  }
}

