*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Poppins", serif;
}

body {
  background-color: #edf3ff;
}

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

::-webkit-scrollbar-track {
  background: #c9d6eb;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background-color: #6a8fc8;
  border-radius: 10px;
  border: 2px solid #e0e9f7;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #5076b5;
}
/**LOGO **/
.logo {
  width: 80%;
}
/** Main **/
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 30px;
}
/**SECTION HEADING **/

.section-heading {
  font-size: 28px;
  margin-bottom: 30px;
  text-align: center;
}
.section-heading span {
  color: #002e82;
}

/* Navigation Bar */

nav {
  padding: 0px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Changed from default to space-between */
  width: 70%; /* Add width to contain the links */
}

.nav-links a {
  margin-right: 25px;
  position: relative;
  text-transform: uppercase;
}

.nav-links a::after {
  position: absolute;
  left: 0;
  bottom: -3x;
  content: " ";
  width: 0;
  display: block;
  overflow: hidden;
  border-bottom: 2px solid #002e82;
  transition: 0.4s all;
}
.nav-effect:hover::after {
  width: 100%;
}

a:link,
a:visited,
a:active {
  text-decoration: none;
  color: #000;
}

/** Hero Section **/
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

/** Video **/

video {
  height: 100%;
  width: 100%;
}

.hero-section-explore-btn {
  background-color: #002e82;
  padding: 10px 40px;
  border-radius: 10px;
  display: inline-block;
  transform: translateY(-80px);
}

.hero-section a:link,
.hero-section a:visited,
.hero-section a:active {
  color: white;
  font-size: 16px;
  text-transform: uppercase;
}
/**Mute Button**/
.mute-button {
  position: absolute;
  bottom: 80px;
  left: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.mute-button:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mute-button img {
  width: 30px;
  height: 20px;
}

/* Add this to your existing media queries for responsiveness */
@media screen and (max-width: 768px) {
  .mute-button {
    left: 20px;
    bottom: 60px;
    width: 35px;
    height: 35px;
  }

  .mute-button img {
    width: 16px;
    height: 16px;
  }
}

@media screen and (max-width: 480px) {
  .mute-button {
    left: 20px;
    bottom: 60px;
    width: 30px;
    height: 30px;
  }

  .mute-button img {
    width: 14px;
    height: 14px;
  }
}

/** About Us Section **/

.about-us-container {
  padding: 30px 150px;
  text-align: center;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  /* From https://css.glass */
  background: rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(1.2px);
  -webkit-backdrop-filter: blur(1.9px);
  border: 1px solid rgba(255, 255, 255, 1);
}

.about-us-container h2 {
  margin-bottom: 20px;
  font-size: 28px;
  text-transform: uppercase;
}

.about-us-container span {
  color: #002e82;
}

.about-us-content p {
  line-height: 1.5;
  font-size: 18px;
  margin-bottom: 30px;
}
.about-us-container a {
  display: inline-block;
  background-color: #002e82;
  font-size: 16px;
  border-radius: 10px;
  color: white;
  padding: 10px 20px;
  text-transform: uppercase;
}

/** WHY CHOOSE US CONTAINER **/
.why-choose-us-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.why-choose-us-box {
  background-color: #002e82;
  color: white;
  padding: 20px;
  border-radius: 10px;
}

.why-choose-us-box h3 {
  margin-bottom: 10px;
}

/**EXPLORE SECTION**/
.explore-container {
  margin-bottom: 60px;
  width: 100%;
  padding: 0 20px;
}

.explore-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  width: 100%;
}
.card {
  position: relative;
  width: 100%;
}

.explore-grid-container img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  transition: transform 0.3s;
}

.card img:hover {
  transform: scale(1.02);
}

.label-container {
  display: flex;
  justify-content: center;
}

.explore-grid-container .label {
  position: absolute;
  bottom: 30px;
  background-color: #002e82;
  color: white;
  text-align: center;
  padding: 8px;
  border-radius: 10px;
  width: 50%;
  text-transform: uppercase;
}

/**Image Container **/
.image-container {
  margin-bottom: 60px;
  width: 100%;
  padding: 0 20px;
}

.image-container img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/** Image Container Responsiveness**/
@media screen and (max-width: 768px) {
  .image-container {
    padding: 0 15px;
  }
}

@media screen and (max-width: 480px) {
  .image-container {
    padding: 0 10px;
  }
}

/**Latest Arrival Section (SWIPER JS) **/

.swiper-container {
  height: 100%;
  width: 100%;
  margin-bottom: 80px;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  display: block;
  height: 100%;
  width: 90%;
  object-fit: cover;
  border-radius: 10px;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
}
/** TESTIMONIAL CARDS **/

.testimonials-container {
  margin: 0 auto;
  padding: 0px 20px;
  position: relative;
}

.testimonial-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  margin: 20px;
  margin-top: 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.quote-icon {
  width: 50px;
  position: absolute;
  top: 20px;
  left: 30px;
  opacity: 0.1;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.6;
  color: #333333;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #eeeeee;
  padding-top: 24px;
}

.author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-image {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  overflow: hidden;
}

.author-image img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.author-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.author-name {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin: 0;
}

.author-title {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
  color: #333333;
}

.swiper-button-next {
  right: 0;
}

.swiper-button-prev {
  left: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .testimonial-card {
    padding: 30px;
  }

  .testimonial-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/** Testimonial Poster */

.testimonial-poster {
  position: relative;
  width: 100%;
  padding: 80px 20px;
  margin: 60px 0;
  background-image: url("./assets//images/poster.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.testimonial-poster::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 46, 130, 0.5);
}

.testimonial-poster-content {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: white;
}

.quote-icon-poster {
  margin-bottom: 30px;
}

.quote-icon-poster img {
  width: 60px;
  height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.testimonial-text-poster {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 300;
}

.testimonial-author-poster {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name-poster {
  font-size: 20px;
  font-weight: 600;
}

.author-title-poster {
  font-size: 16px;
  opacity: 0.8;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
  .testimonial-poster {
    padding: 60px 20px;
  }

  .testimonial-text-poster {
    font-size: 20px;
  }

  .quote-icon-poster img {
    width: 40px;
    height: 40px;
  }
}

@media screen and (max-width: 480px) {
  .testimonial-poster {
    padding: 40px 15px;
  }

  .testimonial-text-poster {
    font-size: 18px;
  }

  .author-name-poster {
    font-size: 18px;
  }

  .author-title-poster {
    font-size: 14px;
  }
}

/** FOOTER CONTAINER **/
.map-section {
  flex: 2;
  padding-left: 20px;
}

.map-section h3 {
  color: #002e82;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

#map {
  height: 250px;
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
}

/* Footer Section Styles */
.footer {
  padding: 60px 50px 20px;
  background-color: #fff;
  margin-top: 40px;
}

.footer-container {
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 20px;
}

.brand-text {
  color: #333;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-links p {
  margin: 0;
  font-size: 14px;
  color: #333;
}

.social-links img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}

.social-links img:hover {
  transform: scale(1.1);
}

.company-section {
  flex: 1;
}

.company-section h3,
.contact-section h3,
.map-section h3 {
  color: #002e82;
  font-size: 18px;
  margin-bottom: 25px;
  font-weight: 600;
}

.company-links {
  list-style: none;
  padding: 0;
}

.company-links li {
  margin-bottom: 15px;
}

.company-links a {
  color: #333;
  font-size: 14px;
  transition: color 0.3s ease;
}

.company-links a:hover {
  color: #002e82;
}

.contact-section {
  flex: 1.5;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: #333;
  font-size: 14px;
  line-height: 1.6;
}

.footer-icon {
  width: 20px;
  min-width: 20px;
  margin-top: 4px;
}

.vertical-line {
  width: 1px;
  background-color: #e0e0e0;
  height: 200px;
  margin: 0 15px;
}

/* Responsive Design for Medium Screens */
@media (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
  }

  .map-section {
    flex: 100%;
    margin-top: 30px;
  }
}

/* Responsive Design for Small Screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }

  .vertical-line {
    display: none;
  }

  .company-section,
  .contact-section {
    width: 100%;
  }

  .map-section {
    padding-left: 0;
    margin-top: 30px;
    width: 100%;
  }

  #map {
    height: 200px;
  }
}

/*********** Hamburger Menu Styles **************/
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #000;
  margin: 2px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/** Prevent Scrolling **/

body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/******************** Responsive Styles ***************************/

/** For screen of 1024 px or lower **/
@media screen and (max-width: 1024px) {
  .explore-grid-container {
    gap: 40px;
  }

  .explore-grid-container .label {
    width: 60%;
  }
}
/** For screen of 960px or lower **/
@media (max-width: 960px) {
  /**Logo **/
  .logo {
    max-width: 200px;
  }
  /* Navigation */
  .hamburger {
    display: flex;
    z-index: 1000;
  }

  .nav-links {
    display: flex;
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    width: 75%;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    z-index: 999;
  }

  .nav-links.active {
    right: 0;
    background-image: url("assets/images/background.svg");
  }

  .nav-links a {
    margin: 20px 0;
    font-size: 20px;
  }
}
/** For screen of 768px or lower **/
@media screen and (max-width: 768px) {
  /* Why Choose Us Section */
  .why-choose-us-container {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }

  /* Explore Section */
  .explore-grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 0 20px;
  }

  .explore-grid-container .label {
    width: 70%;
  }
  /* Hero Section */
  .hero-section-explore-btn {
    transform: translateY(-60px);
    padding: 8px 30px;
  }

  .hero-section a:link,
  .hero-section a:visited,
  .hero-section a:active {
    font-size: 14px;
  }
  /* About Us Section */
  .about-us-container {
    width: 90%;
    padding: 20px;
  }

  .about-us-content p {
    font-size: 16px;
  }
}

/** For screen of 480px or lower **/

@media screen and (max-width: 480px) {
  nav {
    padding: 0 10px;
  }
  .logo {
    max-width: 150px;
  }

  .section-heading {
    font-size: 24px;
    text-align: center;
  }

  .about-us-container {
    width: 100%;
    padding: 15px;
  }
  .about-us-container a {
    font-size: 14px;
    padding: 10px 20px;
  }
  .why-choose-us-box h3 {
    font-size: 16px;
  }
  .why-choose-us-box p {
    font-size: 14px;
  }
  .explore-container {
    padding: 0 15px;
  }

  .explore-grid-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .explore-grid-container .label {
    width: 50%;
    bottom: 20px;
    font-size: 14px;
  }
}

/** Dropdown**/
.dropdown {
  position: relative;
  display: inline-block;
  margin: 20px 0;
}

/** Drop down right arrow **/
.right-arrow-icon {
  transform: translateY(4px);
  transition: transform 0.3s ease;
}

.arrow-icon {
  width: 20px;
}

/* Added invisible bridge to prevent dropdown from closing */
.dropdown::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 100%;
  left: 0;
  top: 100%;
}

/* Dropdown Content */
.dropdown-content {
  display: none;
  position: absolute;
  background: white;
  min-width: 800px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 30px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 12px;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  top: calc(100% + 20px);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

/* Dropdown arrow */
.dropdown-content::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid white;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
  display: grid;
  opacity: 1;
}

.dropdown-content:hover {
  display: grid;
  opacity: 1;
}

/* Dropdown Sections */
.dropdown-section {
  padding: 15px;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

.dropdown-section:hover {
  background-color: #eef3fa; /* Slightly lighter than your background color */
}
.dropdown-section h3 {
  color: #002e82;
  font-size: 14px;
  margin-bottom: 15px;
  font-weight: 600;
}

.dropdown-section a {
  display: block;
  color: #333;
  padding: 10px 15px;
  font-size: 14px;
  margin: 0 !important;
  text-wrap: nowrap;
  transition: all 0.3s ease-in-out;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.dropdown-section a:hover {
  color: #002e82;
  font-weight: 500;
  background-color: rgba(0, 46, 130, 0.08);
  transform: translateX(5px);
}

/* Mobile Submenu */
.mobile-arrow {
  display: none;
}

.submenu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}

.submenu-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.back-btn {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.back-btn:hover {
  transform: translateX(-3px);
}

.submenu h2 {
  margin-left: 20px;
  color: #002e82;
}

.menu-section {
  margin-bottom: 30px;
}

.menu-section h3 {
  color: #002e82;
  margin-bottom: 15px;
  font-weight: 600;
}

.menu-section a {
  display: block;
  color: #333;
  padding: 10px 15px;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
}

.menu-section a:hover {
  background-color: #eef3fa;
  color: #002e82;
  transform: translateX(5px);
}

/* Responsive Styles */
@media screen and (max-width: 960px) {
  .dropdown::after {
    display: none;
  }

  .dropdown-content {
    position: static;
    min-width: 100%;
    transform: none;
    box-shadow: none;
    display: none;
    grid-template-columns: 1fr;
    background: transparent;
    padding: 0 20px;
  }

  .dropdown-content::before {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: grid;
  }

  .dropdown-section {
    padding: 5px 0;
  }

  .dropdown-section h3 {
    font-size: 16px;
    margin: 10px 0;
  }

  .dropdown-section a {
    font-size: 14px;
    padding: 10px 15px;
  }

  .nav-links {
    padding-top: 60px;
  }

  .mobile-arrow {
    display: inline;
    margin-left: 5px;
  }

  .dropdown-content {
    display: none !important;
  }

  .submenu.active {
    display: block;
  }

  .menu-section a {
    padding: 12px 15px;
  }
}
