* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
}

/* TOP STRIP */
.header-top {
  background: linear-gradient(90deg, #0a5bd3, #083b8a);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 14px;
}

/* HEADER */
.header {
  border-bottom: 1px solid #ddd;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
}

.logo {
  font-size: 26px;
  font-weight: bold;
  color: #0a5bd3;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav a:hover {
  color: #0a5bd3;
}

/* HERO */
.hero {
  min-height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url("../images/hero.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 36px 36px;
}

.hero-content {
  text-align: center;
  color: #fff;
  max-width: 900px;
}

.hero h1 {
  font-size: 46px;
}

.hero p {
  margin-top: 15px;
  font-size: 18px;
}

.hero-desc {
  margin-top: 20px;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin: 12px;
  padding: 14px 32px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

.btn.primary {
  background: #0a5bd3;
  color: #fff;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
}

/* NOTICE BAR */
.notice-bar {
  background: #ffeb3b;
  overflow: hidden;
  white-space: nowrap;
}

.notice-bar span {
  display: inline-block;
  padding: 10px 100%;
  animation: marquee 18s linear infinite;
  font-weight: bold;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/* SECTIONS */
.section {
  padding: 80px 20px;
}

.section.light {
  background: #f7f9fc;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.center {
  text-align: center;
}

/* GRID */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 40px;
}

.card {
  background: #fff;
  border: 2px solid #e3e6eb;
  padding: 28px;
  text-align: center;
  font-weight: 600;
  color: #0a5bd3;
  text-decoration: none;
  border-radius: 14px;
  transition: 0.3s;
}

.card:hover {
  background: linear-gradient(135deg, #0a5bd3, #083b8a);
  color: #fff;
  transform: translateY(-6px);
}

/* IMAGE ROW */
.section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.section-row.reverse {
  direction: rtl;
}

.section-row.reverse > * {
  direction: ltr;
}

.section-image {
  height: 360px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

/* FOOTER */
.footer {
  background: #0b1b33;
  padding: 40px 20px;
  color: #fff;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 30px;
}

.footer-links a {
  display: block;
  color: #fff;
  margin: 6px 0;
  text-decoration: none;
}

.footer-links a::before {
  content: "➜ ";
  color: #ffeb3b;
}

.footer-bottom {
  margin-top: 20px;
  text-align: center;
  font-size: 13px;
  color: #cfd6e0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .section-row {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 32px;
  }
}
/* Founder image size control */
.founder-box img {
  max-width: 320px;
  margin: 0 auto;
  display: block;
}
.founder-box img {
  max-width: 280px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
}
/* ================= CONTACT PAGE FORM ================= */

.contact-box {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.contact-box h2 {
  text-align: center;
  margin-bottom: 10px;
}

.contact-box p {
  text-align: center;
  margin-bottom: 22px;
  color: #555;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0a5bd3;
}

.form-status {
  margin-top: 15px;
  text-align: center;
  font-weight: 500;
  color: green;
}

/* ================= CONTACT PAGE FORM END ================= */


/* ===== MOBILE MENU FIX (NO DESIGN CHANGE) ===== */
@media (max-width: 768px) {

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
  }

  .nav.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    font-size: 26px;
    cursor: pointer;
    color: #0a5bd3;
  }
}

/* Desktop: no change */
.menu-toggle {
  display: none;
}

