/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #fff;
}

/* ================= HERO SECTION ================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background-image: url("../images/Beirut-city.jpg"); /* Replace with your real hero image */
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 34, 80, 0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-content p {
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 300;
}

.btn-primary {
  margin-top: 2rem;
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 2px solid #fff;
  border-radius: 6px;
  background: transparent;
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* ================= GLASS NAVBAR ================= */
.hero-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 15px 40px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(15, 23, 42, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.2);

  z-index: 10;
}

.hero-nav.fixed {
  position: fixed;
  top: 0;
  bottom: auto;
  background: rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-left {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-right a {
  color: #fff;
  margin-left: 2rem;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  height: 2px;
  width: 0;
  background: #fff;
  transition: width 0.3s ease;
}

.nav-right a:hover::after {
  width: 100%;
}

/* ================= ABOUT SECTION ================= */
.about-section {
  background: #ffffff;
  color: #2b2b2b;
  padding: 80px 20px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
}

.section-title .underline {
  width: 60px;
  height: 3px;
  background: #0a49a0;
  margin: 10px auto 0 auto;
  border-radius: 5px;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.about-left,
.about-right {
  flex: 1 1 45%;
  font-size: 17px;
  line-height: 1.7;
}

/* Bullet list */
.about-list {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.about-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 17px;
}

.about-list .icon {
  width: 16px;
  height: 16px;
  margin-right: 10px;

  /* Blue SVG checkmark */
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' fill='%230a49a0' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.285 2.859l-11.1 11.1-5.47-5.47-2.115 2.115 7.585 7.585 13.215-13.215z'/%3E%3C/svg%3E");
  background-size: cover;
}

/* Temporary test sections */
.section {
  padding: 120px 20px;
  background: #f6f6f6;
  color: #1b1b1b;
}

/* ================= COUNTS SECTION ================= */
.counts-section {
  background: #ffffff;
  padding: 60px 0;
  color: #1b1b1b;
}

.counts-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  text-align: center;
  gap: 40px;
}

.count-box {
  flex: 1 1 200px;
}

.count-number {
  display: block;
  font-size: 50px;
  color: #0a49a0; /* blue color */
  font-weight: 700;
  margin-bottom: 10px;
}

.count-label {
  font-size: 16px;
  color: #444;
}

/* ================= OUR VALUES SECTION ================= */
/* VALUES GRID */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* CARD */
.value-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px;

  display: flex;
  flex-direction: column; /* 🔥 REQUIRED FIX */
  align-items: center;
  justify-content: flex-start; /* prevents exaggerated zoomed look */

  text-align: center;
  color: #000;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #ddd;
}

/* TEXT INSIDE */
.value-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.value-content p {
  font-size: 15px;
  line-height: 1.5;
}

/* HOVER EFFECT — FULL BOX CHANGES */
.value-card:hover {
  background: #1e63c6; /* light blue */
  color: #fff; /* white text */
  border-color: #1e63c6;
}

/* SERVICES SECTION */
.services-section {
  padding: 60px 0;
}

.services-subtitle {
  text-align: center;
  margin-top: -10px;
  margin-bottom: 40px;
  color: #555;
  font-size: 16px;
}

/* GRID: 3 columns, 2 rows */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* SERVICE CARD */
.service-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  border: 1px solid #eee;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
}

/* ICONS */
.service-icon {
  font-size: 35px;
  font-weight: bold;
}

/* Colors */
.pink {
  color: #ff4fa3;
}
.yellow {
  color: #f2c200;
}
.teal {
  color: #03c3b5;
}
.green {
  color: #1dbf60;
}
.lime {
  color: #b4dd00;
}
.blue {
  color: #2667ff;
}

/* TEXT */
.service-text h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.service-text p {
  font-size: 14px;
  line-height: 1.5;
  color: #555;
}

/* HOVER EFFECT (same as your value cards) */
.service-card:hover {
  background: #1e63c6; /* light blue */
  color: #fff;
  border-color: #1e63c6;
}

.service-card:hover .service-text p,
.service-card:hover .service-text h3 {
  color: #fff;
}

.service-card:hover .service-icon {
  color: #fff;
}

.service-text h3 {
  color: #000;
}
.services-section h2 {
  color: #000;
}

/* ================= FAQ ACCORDION ================= */

.faq-section {
  padding: 70px 0;
  background: #ffffff;
  color: #1b1b1b;
}

.faq-subtitle {
  text-align: center;
  color: #777;
  margin-top: -15px;
  margin-bottom: 35px;
  font-size: 15px;
}

.faq-list {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #f8f8f8;
  border-radius: 10px;
  padding: 0;
  border: 1px solid #e6e6e6;
  overflow: hidden;
  transition: 0.3s ease;
}

/* Question button */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
}

.faq-icon {
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

/* Answer box */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  padding: 15px 0 18px;
  color: #444;
  line-height: 1.6;
  font-size: 15px;
}

/* ACTIVE OPEN STATE */
.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 22px 18px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  color: #0a49a0; /* blue when opened */
}

/* ================= CONTACT SECTION ================= */
.contact-section {
  padding: 70px 0;
  background: #ffffff;
  color: #1b1b1b;
}

.contact-subtitle {
  text-align: center;
  color: #777;
  margin-top: -10px;
  margin-bottom: 40px;
  font-size: 15px;
}

/* Contact items stacked vertically */
.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Each contact card */
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 25px;
  background: #f8f8f8;
  border-radius: 12px;
  border: 1px solid #ddd;
  cursor: default;
}

/* Icons */
.contact-icon {
  font-size: 28px;
  color: #0a49a0;
  margin-top: 3px;
}

/* Contact text */
.contact-item h3 {
  font-size: 18px;
  margin-bottom: 6px;
  color: #000;
}

.contact-item p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Phone number link */
.contact-link {
  color: #0a49a0;
  text-decoration: none;
  font-weight: 600;
}

.contact-link:hover {
  text-decoration: underline;
}

/* ================= HERO LOGO CORNER ================= */

.hero-logo-corner {
  position: absolute;
  top: 50px;
  left: 70px;
  width: 220px;
  height: auto;
  opacity: 0.9;

  max-width: 25vw; /* scales on large screens */
  min-width: 120px; /* prevents shrinking too much */
}

@media (max-width: 600px) {
  .hero-logo-corner {
    top: 20px;
    left: 20px;
    width: 140px;
  }

  .nav-left {
    font-size: 0.8rem;
    letter-spacing: 0.1em;
  }

  .nav-right a {
    margin-left: 1rem;
    font-size: 0.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .faq-question {
    font-size: 15px;
    padding: 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

@media (max-width: 700px) {
  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    padding: 20px;
  }

  .value-content p {
    font-size: 14px;
  }
}
@media (max-width: 600px) {
  .about-list li {
    align-items: flex-start; /* keeps icon top-aligned */
  }

  .about-list .icon {
    margin-top: 4px; /* adds breathing space */
  }
}
