/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* =========================
   THEME COLORS
========================= */
:root {
  --bg-dark: #0b1224;
  --bg-dark-2: #0f1b3d;
  --card-bg: #111c33;
  --border: rgba(255, 255, 255, 0.08);

  --primary: #6d7cff;
  --secondary: #4da3ff;

  --text-main: #ffffff;
  --text-muted: #cfd6ff;
}

/* =========================
   BODY
========================= */
body {
  background: radial-gradient(circle at top, #15245b, #0b1224 70%);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

/* ===== NAVBAR ===== */
.navbar {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 80px;
  background: var(--bg-dark-2);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  width: 100px;
  height: auto;
  filter: brightness(1.5) contrast(1.2);
}

.brand-main {
  color: #8b8dff;
  font-weight: 700;
  font-size: 1.3rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li a {
  margin: 0 15px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 4px;
  transition: border-bottom 0.3s ease;
}

.nav-links li a:hover,
.nav-links li a.active {
  border-bottom: 2px solid var(--primary);
}

.cta-btn {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  padding: 10px 20px;
  border-radius: 8px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
}

/* ===== ABOUT US CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 60px auto 100px;
  padding: 0 20px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(109, 124, 255, 0.2);
  color: var(--text-main);
}

h1 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 700;
  font-size: 2.5rem;
}

p.lead {
  text-align: center;
  font-size: 1.15rem;
  margin-bottom: 50px;
  color: var(--text-muted);
}

.about-section {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.about-text {
  flex: 1 1 480px;
}

.about-text h2 {
  color: var(--primary);
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 1.6rem;
}

.about-text p,
.about-text ul {
  margin-bottom: 18px;
  color: var(--text-muted);
}

.about-text ul {
  padding-left: 20px;
  list-style-type: disc;
}

.about-image {
  flex: 1 1 400px;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 0 15px rgba(109, 124, 255, 0.3);
  filter: brightness(1.1);
}

/* ===== FOUNDER SECTION ===== */
.founder-section {
  max-width: 700px;
  margin: 80px auto 60px;
  background: var(--bg-dark-2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  box-shadow: 0 0 30px rgba(77, 163, 255, 0.4);
}

.founder-image img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(77, 163, 255, 0.8);
  border: 3px solid var(--primary);
}

.founder-text h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 1.8rem;
  font-weight: 700;
}

.founder-text p {
  font-style: italic;
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 400px;
}

/* ===== FOOTER ===== */
.footer-top {
  max-width: 1200px;
  margin: auto;
  padding: 70px 20px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
  background: radial-gradient(circle at top, #0b1430, #020617 70%);
  color: var(--text-muted);
  border-radius: 0 0 20px 20px;
}

/* Brand */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 50px;
}

.footer-logo h3 {
  color: #8b8dff;
  line-height: 1.1;
}

.footer-logo span {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.phone {
  color: #d1d5ff;
  margin-bottom: 15px;
}
.phone.landline {
  color: #9ca3af;
  font-size: 14px;
}


.footer-whatsapp {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.footer-whatsapp a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

.footer-whatsapp a:hover {
  transform: scale(1.05);
}

.footer-whatsapp i {
  font-size: 20px;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 30px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Social icons */
.socials a {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: #0c1a33;
  border-radius: 50%;
  margin-right: 8px;
  color: #8b8dff;
  transition: 0.3s;
}

.socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  transform: translateY(-3px);
}

/* Links */
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
}

.footer-col ul li a:hover {
  color: #8b8dff;
}

/* CTA */
.footer-cta {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  padding: 25px;
  border-radius: 16px;
}

.footer-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 12px 26px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 0 25px rgba(139, 141, 255, 0.35);
  transition: 0.3s;
}

.footer-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(139, 141, 255, 0.55);
}

/* Bottom center */
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px;
  text-align: center;
  font-size: 13px;
  color: #9aa3ff;
  margin-top: 40px;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-logo {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
  }
  .about-text,
  .about-image {
    flex: 1 1 100%;
  }
  .founder-section {
    flex-direction: column;
    text-align: center;
  }
  .founder-image img {
    margin-bottom: 15px;
  }
}
