/* Google Fonts Link */
@import url('https://fonts.googleapis.com/css2?family=Miniver&family=Poppins:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  transition: all 0.3s ease;
}

:root {
  /* Colors */
  --white-color: #fff;
  --dark-color: #252525;
  --primary-color: #012D5C;
  --secondary-color: #2072f5;
  --secondary2-color: #f68b00;
  --light-pink-color: #faf4f5;
  --medium-gray-color: #ccc;
  --footer-bottom-bg-color: #343a40;

  /* Font size */
  --font-size-s: 0.9rem;
  --font-size-n: 1rem;
  --font-size-m: 1.12rem;
  --font-size-l: 1.5rem;
  --font-size-xl: 2rem;
  --font-size-xxl: 2.3rem;

  /* Font weight */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* Border radius */
  --border-radius-s: 8px;
  --border-radius-m: 30px;
  --border-radius-circle: 50%;

  /* Site max width */
  --site-max-width: 1300px;
}

html {
  scroll-behavior: smooth;
}

/* Stylings for whole site */
ul {
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

img {
  width: 100%;
}

:where(section, footer) .section-content, .section-title2 {
  margin: 0 auto;
  padding: 0 20px;
  max-width: var(--site-max-width);
}

section .section-title, .section-title2 {
  text-align: center;
  padding: 90px 0 20px;
  text-transform: uppercase;
  font-size: var(--font-size-l);
}

section .section-title2, .text2 {
  text-align: left;
  margin-bottom: 15px;
  font-size: 1.1em;
}

section .text2 {
  margin-left: 20px;
}

section {
  position: relative;
}

section .text2::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  left: 34px;
  margin-top: 7px;
  border: 3px solid var(--secondary-color);
  background: #fff;
  border-radius: 50%;
}

section .text {
  line-height: 1.9em;
}

/* .section-content2 {
  max-width: 70%;
  margin: 0 auto;
} */

.section-Stitle {
  text-transform: uppercase;
  text-align: center;
  padding: 0px 0 20px;
  font-size: var(--font-size-l);
}

section .section-title::after {
  content: "";
  width: 80px;
  height: 5px;
  display: block;
  margin: 10px auto 10px;
  background: var(--secondary-color);
  border-radius: var(--border-radius-s);
}

section .section-title2::after {
  content: "";
  /* width: 80px; */
  width: 30vw;
  height: 5px;
  display: block;
  margin: 10px 0 10px;
  background: var(--secondary-color);
  border-radius: var(--border-radius-s);
}

/* section .section-title2::after {
} */

/* Navbar styling */
header {
  background: var(--primary-color); /* Match hero section background */
  transition: background-color 0.3s ease;

  z-index: 5;
  position: fixed;
  width: 100%;
  color: #fff;
}

header .navbar {
  display: flex;
  padding: 5px;
  align-items: center;
  margin: 0 auto;
  padding: 10px 50px;
  justify-content: space-between;
  max-width: var(--site-max-width);
  transition: background-color 0.3s ease;
}

header.scrolled {
  background: var(--white-color);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header.scrolled .navbar .nav-menu .nav-link {
  color: var(--dark-color); /* Changes text to black/dark when scrolled */
}

header.scrolled .navbar .nav-logo .logo-text {
  color: var(--dark-color); /* Changes logo text to black/dark when scrolled */
}
/* 
.head .navbar .nav-item .nav-link {
  color: var(--white-color);
} */

.navbar .nav-logo .logo-text {
  color: var(--white-color);
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-semibold);
}

.navbar .nav-logo .logo-text span{
  color: var(--secondary-color);
}

.navbar .nav-menu {
  column-gap: 20px;
  display: flex;
}

.navbar .nav-menu .nav-link {
  padding: 10px 0px;
  color: var(--dark-color);
  font-size: var(--font-size-m);
  transition: 0.3s ease;
}

.navbar .nav-menu .nav-link:hover {
  color: var(--secondary-color);
  border-bottom: 2px var(--secondary-color) solid;
  border-width: 5px;
}

.navbar :where(#menu-open-button, #menu-close-button) {
  display: none;
}

/* Hide hamburger menu on desktop */
#menu-toggle-button {
  display: none;
}

/* Show hamburger menu only on small screens */
@media (max-width: 900px) {
  #menu-toggle-button {
    display: block;
  }
}

.nav-logo img {
  max-height: 90px;
  margin-left: 20px;
  width: auto;
  object-fit: contain;
}

/* Hero section styling */
.hero-section {
  min-height: 100vh;
  /* background-image: url('/images/WhatsApp\ Image\ 2024-10-20\ at\ 23.56.10_5c9e3fe8.jpg'); */
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background-color: #012D5C;
}

.hero-section .section-content {
  display: flex;
  padding-top: 40px;
  align-items: center;
  min-height: 100vh;
  justify-content: space-between;
}

.hero-section .hero-details {
  color: var(--white-color);
}

.hero-section .hero-details .title {
  margin-top: 100px;
  /* font-size: var(--font-size-xxl); */
  color: var(--secondary-color);
  font-family: "Miniver", sans-serif;
}

.hero-section .hero-details .subtitle {
  margin-top: 8px;
  max-width: 70%;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-semibold);
}

.hero-section .hero-details .description {
  max-width: 55%;
  margin: 24px 0 40px;
  font-size: var(--font-size-m);
}

.hero-section .hero-details .buttons {
  display: flex;
  gap: 23px;
}

.hero-section .hero-details .button {
  padding: 10px 26px;
  display: block;
  border: 2px solid transparent;
  border-radius: var(--border-radius-m);
  background: var(--secondary-color);
  color: var(--white-color);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  transition: 0.3s ease;
}

.hero-section .hero-details .button:hover,
.hero-section .hero-details .button.contact-us {
  /* color: ; */
  border-color: var(--white-color);
  background: transparent;
}

.hero-section .hero-details .button.contact-us:hover {
  /* color: var(--primary-color); */
  background: var(--secondary-color);
  border-color: var(--secondary-color);
}

.hero-section .hero-image-wrapper {
  /* max-width: 500px; */
  /* margin-right: 190px; */
  margin-bottom: 50px;
  overflow-inline: hidden;
}

/* About section styling */
.about-section, .about-section2 {
  padding: 155px 0;
  background: #f0f8ff;
}

.about-section .section-content {
  display: flex;
  gap: 50px;
  padding: 0 50px;
  align-items: center;
  justify-content: space-between;
}

.about-section2 .section-content2 {
  display: flex;
  gap: 50px;
  padding: 25px;
  align-items: top;
  justify-content: space-evenly;
}

.about-section .about-image-wrapper .about-image {
  height: 400px;
  width: 500px;
  padding: 10px;
  /* object-fit: cover; */
  border-radius: var(--border-radius-m);
  box-shadow: 1px 1px 10px .1px var(--primary-color);

}

.about-section .about-details, .about-details2 {
  max-width: 50%;
}

.about-section .about-details .section-title, .section-title2 {
  padding: 0;
}

.about-section .about-details .text {
  line-height: 30px;
  margin: 45px 0px;
  text-align: center;
  font-size: var(--font-size-m);
}
/* ABOUT US */
.about-section .about-details2 .text2 {
  line-height: 30px;
  margin: 10px 0px 0px 0px;
  text-align: left;
  font-size: var(--font-size-m);
}

.about-details .button, .btn .button, .conta2 .button {
  color: #fff;
  font-size: 19px;
  /* outline: none; */
  width: 100%;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  background: var(--secondary-color);
  margin: 0 0 0 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.conta2 .button {
  margin: 0 0 0 0;
}

.about-details .button:hover, .btn .button:hover {
  background-color: #f0f8ff;
  border: 1px black solid;
  color: black;
}

/* Menu section styling */
.menu-section {
  color: var(--white-color);
  background: var(--dark-color);
  padding: 50px 0 100px;
}

.menu-section .menu-list {
  display: flex;
  gap: 110px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.menu-section .menu-list .menu-item {
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: calc(100% / 3 - 110px);
}

.menu-section .menu-list .menu-item .menu-image {
  width: 83%;
  aspect-ratio: 1;
  margin-bottom: 15px;
  object-fit: contain;
}

.menu-section .menu-list .menu-item .name {
  margin: 12px 0;
  font-size: var(--font-size-l);
  font-weight: var(--font-weight-semibold);
}

.menu-section .menu-list .menu-item .text {
  font-size: var(--font-size-m);
}

/* Testimonials section styling */
.testimonials-section {
  padding: 50px 0 100px;
  background: var(--light-pink-color);
}

.testimonials-section .slider-wrapper {
  overflow: hidden;
  margin: 0 60px 50px;
}

.testimonials-section .testimonial {
  user-select: none;
  padding: 35px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.testimonials-section .testimonial .user-image {
  width: 180px;
  height: 180px;
  margin-bottom: 50px;
  object-fit: cover;
  border-radius: var(--border-radius-circle);
}

.testimonials-section .testimonial .name {
  margin-bottom: 16px;
  font-size: var(--font-size-m);
}

.testimonials-section .testimonial .feedback {
  line-height: 25px;
}

.testimonials-section .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: var(--secondary-color);
}

.testimonials-section .swiper-slide-button {
  color: var(--secondary-color);
  margin-top: -50px;
  transition: 0.3s ease;
}

.testimonials-section .swiper-slide-button:hover {
  color: var(--primary-color);
}

/* Gallery section styling */
.gallery-section {
  padding: 50px 0 100px;
}

.gallery-section .gallery-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.gallery-section .gallery-item {
  overflow: hidden;
  border-radius: var(--border-radius-s);
  width: calc(100% / 3 - 32px);
}

.Texts {
  background-color: #f0f8ff;
  line-height: 30px;
  font-family: "Poppins", sans-serif;
  height: 200px;
  padding: 10px;
}

.Texts {
  padding-top: 10px;
}

.gallery-section .gallery-item .gallery-image {
  width: 100%;
  height: 100%;
  /* cursor: zoom-in; */
  transition: 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-image {
  transform: scale(1.06);
}

/* Contact section styling */
.contact-section {
  padding: 50px 0 50px;
  /* background: var(--light-pink-color); */
}

.contact-section .section-content {
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: space-between;
}

.contact-section .contact-info-list .contact-info {
  display: flex;
  gap: 20px;
  margin: 20px 0;
  align-items: center;
}

.contact-section .contact-info-list .contact-info i {
  font-size: var(--font-size-m);
}

.contact-section .contact-form .form-input {
  width: 100%;
  height: 50px;
  padding: 0 12px;
  outline: none;
  margin-bottom: 16px;
  font-size: var(--font-size-s);
  border-radius: var(--border-radius-s);
  border: 1px solid var(--medium-gray-color);
}

.contact-section .contact-form {
  max-width: 50%;
}

.contact-section .contact-form textarea.form-input {
  height: 100px;
  padding: 12px;
  resize: vertical;
}

.contact-section .contact-form .form-input:focus {
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 2px var(--primary-color);
}

.contact-section .contact-form .submit-button {
  padding: 10px 28px;
  outline: none;
  margin-top: 10px;
  border: 1px solid var(--primary-color);
  border-radius: var(--border-radius-m);
  background: var(--primary-color);
  color: var(--white-color);
  font-size: var(--font-size-m);
  font-weight: var(--font-weight-medium);
  transition: 0.3s ease;
}

.contact-section .contact-form .submit-button:hover {
  color: var(--primary-color);
  background: transparent;
}

.container2 {
  max-width: 1300px;
  width: 90%;
  margin: 0 auto;
}

/* Improve accessibility with focus styles */
:focus {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
}

.hero-section2 {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 3rem;
    width: 250px;
    font-weight: bold;
    text-align: center;
}

.section-content {
    position: relative;
}

.sticky-details {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    max-height: calc(170vh - 40px); 
    overflow-y: auto;
  }

  .about-details2 {
      flex: 1;
      top: 100px;
      height: fit-content;
      max-width: 400px;
  }

.section-content {
    display: flex;
    gap: 2rem;
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    padding: 2rem;
    /* background-color: red; */
}

.about-details2 {
    flex: 1;
    max-width: 600px;
    /* box-shadow: 5px 5px 20px .8px var(--primary-color); */
  }

.about-details2:nth-child(1) {
  padding: 10px;
    flex: 1;
    max-width: 600px;
    /* box-shadow: 1px 1px 10px .1px var(--primary-color); */
    box-shadow: 0px 10px 20px 0px rgba(3, 48, 100, 0.3);
  }

  /* content: "";
    position: absolute;
    width: 14px;
    height: 14px;
    border: 3px solid #f8b600;
    background: #fff;
    top: 4px;
    left: 0;
    border-radius: 50%; */


footer .scroll_btn {
  background-color: var(--primary-color);
  cursor: pointer;
  padding: 12px;
  position: fixed;
  bottom: 70px;
  right: 30px;
  width: 45px;
  height: 45px;
  border-radius: var(--border-radius-circle);
  z-index: 2;
  display: none; /* Hidden by default */
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

footer .scroll_btn:hover {
  background-color: var(--secondary-color);
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

footer .scroll_btn.show {
  display: block;
  opacity: 1;
}

.footer .footer-bottom {
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  padding: 20px 0;
  margin-top: 50px;
}

.nav-logo:focus,
.nav-link:focus {
    outline: none;
}

/* About Us Hero Section */
.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: 100%;
  background: url('../images/container-ship-w1920x1280.jpg') center center/cover no-repeat;
  z-index: 1;
}
.about-hero-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.55); /* dark overlay */
  z-index: 2;
}
.about-hero-title {
  position: relative;
  z-index: 3;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 2px;
  text-shadow: 0 4px 16px rgba(0,0,0,0.7);
}

.navbar .nav-menu .nav-link, #menu-toggle-button {
  color: #fff;
  transition: color 0.3s;
}
header.scrolled .navbar .nav-menu .nav-link,
header.scrolled #menu-toggle-button {
  color: var(--dark-color);
}
