/* =========================
   RESET / BASE STYLES
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #ffffff;
  color: #111;
  line-height: 1.6;
}

/* =========================
   HEADER
========================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 40px;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.transparent {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

/* =========================
   NAVIGATION
========================= */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.logo img {
  width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
}

.nav-links a {
  margin-left: 20px;
  padding: 12px 18px;
  text-decoration: none;
  background: #004aad;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ffbd59;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: #004aad;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
  overflow: hidden;
  color: white;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("Images/Makgolane INC.png") center/cover no-repeat;
  filter: blur(2.5px);
  transform: scale(1.05);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  max-width: 750px;
  text-align: center;
  background: rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-text h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
}

/* =========================
   ABOUT
========================= */
.about {
  padding: 60px 40px;
  text-align: center;
}

.about {
    background-color: #E5E5E5;
}
/*#FAFAFA
#F2F2F2
#E5E5E5
#1C1C1C
#8A8A8A*/

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.services div {
  background: #f6f7fb;
  padding: 15px;
  border-radius: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services div:hover {
  background: #e9eefc;
  transform: translateY(-3px);
}

/* =========================
   CONTACT
========================= */
.contact {
  padding: 80px 40px;
  background: #f6f7fb;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-header h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-grid {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.contact-info {
  flex: 1;
}

.info-box {
  background: #fff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 10px;
}

.contact-form {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0f172a;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background: #004aad;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #4169E1;
}

.contact-form label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 5px;
}

/* checkbox sizing fix */
.contact-form input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* =========================
   FOOTER
========================= */
.footer {
  text-align: center;
  padding: 20px;
  background: #fff;
  border-top: 1px solid #eee;
}

/* FLOATING BUTTON */
.floating-contact {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #004aad;
  color: #fff;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  z-index: 9999;
  transition: 0.3s ease;
}

.floating-contact:hover {
  background: #4169E1;
  transform: translateY(-3px);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {

  .nav-links a {
    margin-left: 10px;
    font-size: 13px;
  }

  .contact-grid {
    flex-direction: column;
  }
}