body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background: #f7f7f7;
    color: #333;
}

/* NAVBAR */
.navbar {
    background: white;
    padding: 15px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
}

.logo img {
    width: 40px;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, maroon, #800000);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

section {
    max-width: 1000px;
    margin: auto;
    padding: 60px 20px;
}

h2 {
    color: maroon;
    margin-bottom: 20px;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* FOUNDER */
.founder-container {
    display: flex;
    gap: 30px;
    align-items: center;
}

.founder img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    border: 4px solid maroon;
}

.role {
    color: gray;
    margin-bottom: 10px;
}

/* TRUST */
.trust-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* FORM */
.form-section form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

input, textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

button {
    background: maroon;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background: #800000;
}

/* SCROLL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* MOBILE */
@media (max-width: 768px) {
    .founder-container {
        flex-direction: column;
        text-align: center;
    }
}
/* FORM CARD WRAP */
.form-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    max-width: 600px;
    margin: auto;
}

/* INPUT GROUP */
.input-group {
    position: relative;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    transition: all 0.3s ease;
}

/* FOCUS EFFECT */
.input-group input:focus,
.input-group textarea:focus {
    border-color: maroon;
    outline: none;
    box-shadow: 0 0 0 3px rgba(128, 0, 0, 0.1);
}

/* TEXTAREA HEIGHT */
textarea {
    min-height: 120px;
    resize: vertical;
}

/* BUTTON POLISH */
.form-card button {
    margin-top: 10px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

/* FORM MESSAGE */
#formMsg {
    margin-top: 15px;
    font-size: 14px;
    color: green;
    text-align: center;
}
/* FIX FORM ALIGNMENT */
.form-card form {
    width: 100%;
}

.input-group {
    width: 100%;
}

.input-group input,
.input-group textarea {
    width: 100%;
    box-sizing: border-box; /* VERY IMPORTANT */
}
/* LABELS */
.input-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #444;
}
/* CENTER CARD HEADINGS */
.card h3 {
    text-align: center;
    margin-bottom: 10px;
}
/* CARD CONTENT FLOAT EFFECT */
.card-content {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.card.show-content .card-content {
    opacity: 1;
    transform: translateY(0);
}
.ck-footer {
  background-color: maroon;
  color: white;
  padding: 40px 20px 20px;
  margin-top: 50px;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.footer-logo h2 {
  margin: 0;
}

.footer-logo p {
  font-size: 14px;
  opacity: 0.8;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

.footer-bottom {
  font-size: 13px;
  opacity: 0.7;
}
@media (max-width: 600px) {
  .footer-links a {
    display: block;
    margin: 8px 0;
  }
}
a {
color: black;
  margin: 0 12px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}
a:hover {
  text-decoration: underline;
  opacity: 0.8;
}
.ck-footer {
  background-color: maroon;
  color: white;
  padding: 40px 20px 20px;
  margin-top: 50px;

  /* Rounded top corners */
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.footer-logo h2 {
  margin: 0;
}

.footer-logo p {
  font-size: 14px;
  opacity: 0.8;
}

.footer-links {
  margin: 20px 0;
}

.footer-links a {
  color: white;
  margin: 0 12px;
  text-decoration: none;
  font-size: 15px;
  transition: 0.3s;
}

.footer-links a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* SOCIAL ICONS */
.footer-social {
  margin: 20px 0;
}

.social-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 35px;
  height: 35px;
  margin: 5px;

  background: white;
  color: maroon;

  border-radius: 50%;
  text-decoration: none;
  font-weight: bold;

  transition: 0.3s;
}

.social-box:hover {
  background: #f2f2f2;
  transform: scale(1.1);
}

/* CONTACT TEXT */
.footer-contact p {
  margin: 3px 0;
  font-size: 14px;
  opacity: 0.9;
}

.footer-bottom {
  margin-top: 15px;
  font-size: 13px;
  opacity: 0.7;
}

/* MOBILE */
@media (max-width: 600px) {
  .footer-links a {
    display: block;
    margin: 8px 0;
  }
}