/* ===========================
   Base Reset
   =========================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary-color: #4891ff;
  --light-color: #f4f4f6;
  --dark-color: #111;
}

html, body {
  max-width: 100%;
  overflow-x: hidden; /* prevent sideways scroll */
}

body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  background: #fff;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}




/* ===========================
   Hero Section
   =========================== */
.hero {
  margin-bottom: 150px;
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding-top: 40px;
  width: 100%;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.hero-content {
  flex: 1 1 50%;
}

.hero-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  margin: 0 auto;
}

.hero .hero-text {
  width: 70%;
  margin-bottom: 20px;
}

/* ===========================
   About Section
   =========================== */
.about-section {
  padding: 4rem 2rem;
  background-color: #121212;
  color: #fff;
}

.about-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-text {
  flex: 1 1 50%;
}

.about-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.about-image img {
  border-radius: 12px;
}

/* ===========================
   Search Section
   =========================== */
.search-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f0f4ff, #e6eeff);
  text-align: center;
  border-top: 1px solid #d0d8e0;
  border-bottom: 1px solid #d0d8e0;
}

.search-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.search-form input[type="text"] {
  padding: 14px 20px;
  width: 100%;
  max-width: 500px;
  border: 1px solid #ccc;
  border-radius: 10px;
}

.search-form button {
  padding: 12px 30px;
  border-radius: 8px;
  border: none;
  background: var(--primary-color);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.search-form button:hover {
  background: #367fe7;
}

/* ===========================
   FAQ
   =========================== */
.faq {
  padding: 40px 0;
}

.faq .faq-group {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.faq .faq-group .faq-group-header {
  padding: 20px 0;
  margin-bottom: 15px;
  position: relative;
}

.faq .faq-group .faq-group-header h4 {
  font-weight: 600;
  width: 95%;
}

.faq .faq-group .faq-group-header i {
  position: absolute;
  right: 0;
  top: 35px;
  font-size: 1.3rem;
  cursor: pointer;
}

.faq .faq-group .faq-group-body {
  display: none;
}

.faq .faq-group .faq-group-body.open {
  display: block;
}

/* ===========================
   Footer
   =========================== */
.footer {
  background: #0b0e13;
  color: #f1f5f9;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.footer h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 600;
  color: #fff;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #cbd5e1;
  transition: 0.3s;
}
.footer ul li a:hover {
  color: #38bdf8;
}

.footer-bottom {
  text-align: center;
  margin-top: 25px;
  border-top: 1px solid #1e293b;
  padding-top: 12px;
  font-size: 0.8rem;
  color: #94a3b8;
}

/* ===========================
   Utility Classes
   =========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  padding: 13px 20px;
  border-radius: 10px;
  cursor: pointer;
  text-align: center;
  transition: 0.3s;
}

.btn-primary {
  background: var(--primary-color);
  color: #fff;
}

.btn-dark {
  background: var(--dark-color);
  color: #fff;
}

.text-center { text-align: center; }
.text-xxl { font-size: 3rem; font-weight: 600; }
.text-xl { font-size: 2.2rem; }
.text-lg { font-size: 1.8rem; }
.text-md { font-size: 1.2rem; }


