/* ===== GLOBAL ===== */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7fb;
  color: #020617;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: #1e293b;
  color: white;
}

.navbar ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar ul li {
  margin-left: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.navbar a:hover {
  color: #93c5fd;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;

  background: linear-gradient(135deg, #2563eb, #1e40af, #020617);
  color: white;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 700px;
  opacity: 0.9;
}

.hero .btn {
  margin-top: 25px;
  background: white;
  color: #1e40af;
  font-weight: bold;
}

/* ===== UPLOAD SECTION ===== */
#upload {
  background: linear-gradient(135deg, #eef2ff, #f8fafc);
  padding: 80px 20px;
}

/* ===== COMMON SECTIONS ===== */
.section {
  padding: 60px 20px;
  text-align: center;
}

.light {
  background: white;
}

/* ===== GRID & CARDS ===== */
.grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: white;
  padding: 25px;
  width: 200px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

/* ===== BUTTON ===== */
.btn {
  padding: 12px 25px;
  background: #2563eb;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
}

.btn:hover {
  background: #1e40af;
}

/* ===== FORMS ===== */
/* Contact Section */
/* ================= CONTACT SECTION ================= */
#contact {
  padding: 100px 20px;
  background: #ffffff;
  margin-top: 80px; /* FAQ se separation */
}

#contact h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

/* Left info */
.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-info p {
  color: #64748b;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-item i {
  width: 48px;
  height: 48px;
  background: linear-gradient(45deg, #3b82f6, #8b5cf6);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item h4 {
  margin: 0;
  color: #1e293b;
}

.contact-item p {
  margin: 0;
  color: #64748b;
}

/* Right form */
.contact-form {
  background: #f8fafc;
  padding: 2.5rem;
  border-radius: 15px;
  border: 1px solid #e2e8f0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.15);
}




/* ===== FAQ ===== */
.faq p {
  display: none;
  margin-bottom: 20px;
  color: #475569;
}
.faq-container {
  max-width: 700px;
  margin: 40px auto;
  text-align: left;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 15px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.faq-question {
  width: 100%;
  padding: 15px 20px;
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

.faq-answer {
  display: none;
  padding: 0 20px 15px;
  color: #475569;
}


/* ===== FOOTER ===== */
footer {
  background: #1e293b;
  color: white;
  text-align: center;
  padding: 30px;
}

footer a {
  color: #93c5fd;
  text-decoration: none;
  margin: 0 5px;
}

footer a:hover {
  text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .navbar ul {
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
  }

  .navbar ul li {
    margin: 10px 0;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .card {
    width: 90%;
  }

  form input,
  form textarea {
    width: 90%;
  }
}
