* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #1d2a49;
}

/* NAVBAR */
.navbar {
  width: 100%;
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1002;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 100px;
  height: auto;
}

/* Nav Links */
.nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links ul {
  display: flex;
  font-size: 1.2em;
  gap: 50px;
}

.nav-links ul li a {
  color: #1d2a49;
  transition: 0.3s;
}

.nav-links ul li.active a {
  color: #bfdcec;
  font-weight: 600;
}

/* Right Section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 25px;
}

.social-icons a {
  font-size: 30px;
  color: #1d2a49;
  transition: color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.social-icons a:hover i.fa-instagram { color: #e244a0; }
.social-icons a:hover i.fa-linkedin  { color: #0077b5; }
.social-icons a:hover i.fa-envelope  { color: #ab6bc5; }

/* Language Switch */
.language-switch .lang-btn,
.lang-button {
  font-size: 16px;
  padding: 6px 14px;
  border: 2px solid #1d2a49;
  border-radius: 20px;
  color: #1d2a49;
  font-weight: 500;
  transition: all 0.3s ease;
}

.lang-button {
  background-color: transparent;
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.lang-button:hover {
  background-color: #1d2a49;
  color: white;
}

/* Device Visibility */
.desktop-only { display: flex; }
.mobile-only { display: none; }

/* Hamburger */
.menu-hamburger { display: none; width: 35px; cursor: pointer; }

/* Close Button */
.close-btn { display: none; }

/* RESPONSIVE NAVBAR */
@media screen and (max-width: 900px) {
  .mobile-only { display: flex !important; }
  .desktop-only { display: none !important; }

  .navbar { padding: 10px 20px; }
  .navbar .logo { margin-right: auto; }
  .menu-hamburger { display: block; margin-left: auto; }

  /* Mobile Menu Overlay */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
    z-index: 1000;
  }

  .nav-links.mobile-menu {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links ul { flex-direction: column; gap: 30px; text-align: center; }

  /* Show social icons & language switch inside mobile menu */
  .nav-links.mobile-menu .social-icons,
  .nav-links.mobile-menu .lang-button {
    display: flex !important;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
  }

  .close-btn {
    display: block;
    position: absolute;
    top: 40px;
    right: 50px;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    z-index: 1004;
  }
}

/* IMAGE + TEXT SECTION */
.image-text-section {
  width: 100%;
  display: flex;
  justify-content: left;
  padding: 20px 70px;
}

.image-container {
  position: relative;
  width: 900px;
  border-radius: 10px;
  overflow: visible;
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.text-box {
  width: 650px;
  height: 375px;
  background-color: #1d2a49;
  color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  position: absolute;
  top: 45%;
  left: 100%;
  transform: translateX(-45%);
  display: flex;
  flex-direction: column;
  justify-content: justify;
  text-align: justify;
  font-family: "Montserrat", sans-serif;
}

.text-box h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  text-align: left;
  color: #ffffff;
}

.text-box p {
  font-size: 1rem;
  line-height: 1.5;
  text-align: justify;
  color: #ffffff;
}

/* SECOND PART */
.innovative-section {
  width: 100%;
  background-color: #ffffff;
  padding: 60px 75px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5.5rem;
  margin-bottom: 5px;
}

.second-part {
  max-width: 900px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.text-column {
  background-color: #1d2a49;
  color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  width: 100%;
}

.text-column h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
}

.text-column p {
  font-size: 1rem;
  line-height: 1.6;
  text-align: justify;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

/* QUOTES SECTION */
.quotes-section {
  padding: 4rem 2rem;
  background: linear-gradient(#d6f1ff, #ffffff);
  text-align: center;
  font-family: 'Poppins', sans-serif;
  margin-top: 3.75rem;
  position: relative;
  overflow: hidden;
}

.quotes-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #1d2a49;
}

.quotes-carousel {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  min-height: 200px;
  perspective: 1000px;
}

.quote {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  z-index: 1;
  font-family: "Poppins", sans-serif;
}

.quote.active {
  position: relative;
  opacity: 1;
  transform: translateX(0px);
  z-index: 2;
}

.quote-text {
  font-size: 1.2rem;
  color: #1d2a49;
  margin-bottom: 0.8rem;
  font-style: italic;
}

.quote-author {
  color: #888;
  font-size: 0.95rem;
  display: block;
  margin-top: 0.5rem;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1d2a49;
  color: #fff;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-btn:hover {
  background: #1d2a49;
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}

/* FOOTER */
.footer {
  background-color: #ffffff;
  color: #1d2a49;
  padding: 25px 20px 20px;
  font-size: 15px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: auto;
}

.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-left .logo-img {
  width: 150px;
  margin-bottom: 10px;
}

.footer-left p {
  line-height: 1.5;
  max-width: 300px;
}

.footer-links h4,
.footer-social h4 {
  margin-bottom: 12px;
  font-weight: 600;
  color: #1d2a49;
}

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

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #1d2a49;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: #bfdcec;
}

.footer-social .social-icons a {
  color: #1d2a49;
  margin-right: 15px;
  font-size: 24px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social .social-icons a:hover {
  color: #ffffff;
  transform: scale(1.2);
}

.footer-bottom {
  border-top: 1px solid #1d2a49;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  font-size: 13px;
  opacity: 0.8;
}

/* MEDIA QUERIES */
@media (max-width: 900px) {
  /* Hamburger menu */
  .menu-hamburger {
    display: block;
    position: relative;
    top: 0px;
    margin: 20px;
    z-index: 1003;
  }

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1005;
  }

  .nav-links.mobile-menu {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }

  .navbar .logo {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 10px;
  }

  .close-btn {
    display: block;
    position: absolute;
    top: 90px;
    right: 30px;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    color: #333;
    z-index: 1004;
  }

  .mobile-only { display: flex; }
  .desktop-only { display: none; }

  .nav-right {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
  }

  .language-switch.mobile-only {
    justify-content: center;
    width: 100%;
    margin-top: 15px;
  }

  /* IMAGE + TEXT SECTION */
  .image-text-section {
    flex-direction: column;
    padding: 20px 10px;
    align-items: center;
  }

  .image-container {
    width: 90%;
    margin: 0 auto;
    position: relative;
  }

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

  .text-box {
    position: static;
    transform: none;
    margin-top: 15px;
    width: 95%;
    max-width: 500px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: justify;
    padding: 20px;
  }

  .text-box h2,
  .text-box p {
    text-align: justify;
  }

  /* INNOVATIVE SECTION */
  .innovative-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .text-column {
    padding: 20px;
  }

  /* QUOTES SECTION */
  .quotes-title {
    font-size: 1.5rem;
  }

  .quote-text {
    font-size: 1rem;
    padding: 0 1rem;
  }

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  .carousel-btn.prev {
    left: 0;
  }

  .carousel-btn.next {
    right: 0;
  }

  /* FOOTER */
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-left {
    align-items: center;
  }

  .footer-left .logo-img {
    margin-bottom: 15px;
  }

  .footer-left p {
    max-width: 100%;
  }

  .footer-links,
  .footer-social {
    margin-top: 30px;
  }

  .footer-social .social-icons a {
    margin-right: 10px;
  }
}


