/* ============================= */
/* GLOBAL STYLES */
/* ============================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #333;
}

a {
  text-decoration: none;
}

/* ============================= */
/* NAVIGATION */
/* ============================= */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #2c5aa0;
  padding: 15px 40px;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-links a {
  color: white;
  font-weight: bold;
  transition: 0.3s;
}

.nav-links a:hover {
  opacity: 0.8;
}

.cta-small {
  background: white;
  color: #2c5aa0 !important;
  padding: 6px 14px;
  border-radius: 4px;
}

.lang-btn {
  background: transparent;
  border: 1px solid white;
  padding: 5px 10px;
  color: white;
  cursor: pointer;
  border-radius: 4px;
}

/* ============================= */
/* HERO SLIDER */
/* ============================= */

.slider {
  position: relative;
  height: 550px;
  overflow: hidden;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding-top: 180px;
}

.slide.active {
  display: block;
}

/* Background Images */
.slide:nth-child(1) {
  background-image: url("../images/slide1.jpg");
}

.slide:nth-child(2) {
  background-image: url("../images/slide2.jpg");
}

.slide:nth-child(3) {
  background-image: url("../images/slide3.jpg");
}

.slide h1 {
  font-size: 42px;
  background: rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 15px 25px;
}

.slide p {
  font-size: 20px;
  margin-top: 15px;
  background: rgba(0, 0, 0, 0.6);
  display: inline-block;
  padding: 10px 20px;
}

.cta {
  display: inline-block;
  margin-top: 25px;
  background: #2c5aa0;
  color: white;
  padding: 12px 24px;
  font-weight: bold;
  border-radius: 4px;
  transition: 0.3s;
}

.cta:hover {
  background: #1e3e72;
}

/* ============================= */
/* TRUST BAR */
/* ============================= */

.trust {
  background: #2c5aa0;
  color: white;
  padding: 25px;
  display: flex;
  justify-content: space-around;
  text-align: center;
  font-weight: bold;
}

/* ============================= */
/* TESTIMONIALS */
/* ============================= */

.testimonials {
  padding: 70px 20px;
  text-align: center;
  background: #f4f8fc;
}

.testimonials h2 {
  margin-bottom: 40px;
  color: #2c5aa0;
}

.review {
  display: none;
  max-width: 700px;
  margin: auto;
  font-size: 18px;
}

.review.active {
  display: block;
}

.review strong {
  display: block;
  margin-top: 15px;
  color: #2c5aa0;
}

/* ============================= */
/* CONTACT FORM */
/* ============================= */

.contact-section {
  padding: 60px 20px;
  max-width: 700px;
  margin: auto;
}

.contact-section h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #2c5aa0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input, textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

button {
  background: #2c5aa0;
  color: white;
  padding: 12px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

button:hover {
  background: #1e3e72;
}

/* ============================= */
/* FOOTER */
/* ============================= */

footer {
  background: #eee;
  text-align: center;
  padding: 30px;
  margin-top: 50px;
  font-size: 14px;
}

/* ============================= */
/* MOBILE RESPONSIVE */
/* ============================= */

@media (max-width: 900px) {

  .nav-links {
    flex-direction: column;
    gap: 12px;
  }

  .trust {
    flex-direction: column;
    gap: 15px;
  }

  .slide h1 {
    font-size: 28px;
  }

  .slide p {
    font-size: 16px;
  }

  .slider {
    height: 450px;
  }
}

@media (max-width: 600px) {

  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .slider {
    height: 400px;
  }

  .slide {
    padding-top: 120px;
  }
}