/* ===== GLOBAL RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  color: #ffffff;
  overflow-x: hidden;
  position: relative;
  background: #000; /* fallback color */
}

/* ===== NAVIGATION ===== */
nav {
  width: 100%;
  height: 70px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0,0,0,0.5);
  position: fixed;
  top: 0;
  z-index: 100;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  transition: 0.2s ease;
}

nav ul li a:hover {
  color: #b4975a;
}

/* ===== HERO SECTION ===== */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-bg {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: blur(8px) brightness(0.6);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top:0; left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.3);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none; /* removes underline */
  color: inherit;        /* keeps the current text color */
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px; /* space between links */
  margin-top: 15px;
}

.social-links a img {
  transition: transform 0.2s, opacity 0.2s;
  cursor: pointer; /* shows the pointer hand */
}

.social-links a:hover img {
  transform: scale(1.2);  /* slightly grows the icon */
  opacity: 0.8;            /* subtle fade effect */
}

.phone {
  display: flex;
  gap: 10px;
  align-items: center;
}

.phone select {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.phone input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.service-card-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
}

.service-card {
  border: 1px solid #dddddd;
  padding: 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
}

/* Hide the default checkbox */
.service-card input[type="checkbox"] {
  appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #666;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

/* Checkbox tick */
.service-card input[type="checkbox"]:checked::after {
    content: "✔";
  color: white;
  font-size: 18px;        /* bigger tick */
  font-weight: 600;
  background: transparent;
  width: 24px;
  height: 24px;
  border-radius: 6px;

  position: absolute;
  top: 0;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card:hover {
  border-color: #007bff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-name {
  font-size: 15px;
  font-weight: 500;
}

nav .logo img {
  height: 90px;        /* control logo size here */
  width: auto;
  object-fit: contain;
}

.hero-content h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  padding: 14px 26px;
  border: 1px solid #06088d;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
  color: #fff;
  transition: 0.3s ease;
}

.btn:hover {
  background: #06088d;
  color: white;
}

/* ===== SECTIONS ===== */
.section {
  padding: 80px 40px;
  max-width: 1000px;
  margin: auto;
  text-align: center;
  position: relative;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.section p {
  font-size: 18px;
  color: #f2f2f2;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-box {
  padding: 30px;
  border: 1px solid #06088d;
  border-radius: 6px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-box:hover {
  transform: translateY(-10px); /* moves the box up */
  box-shadow: 0 10px 20px rgba(6, 8, 141, 0.3); /* subtle shadow */
}

.service-header {
  display: flex;
  align-items: center;
  gap: 10px; /* space between icon and heading */
}

.service-icon + .service-icon {
  margin-left: 1px; /* space between icon1 and icon2 only */
}

.service-icon {
  width: 30px;       /* small icon */
  height: 30px;
  object-fit: contain;
}

.service-box h3 {
  margin: 0;          /* remove default margin */
  font-size: 20px;
}


/* CONTACT FORM */
form {
  max-width: 500px;
  margin: 40px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

form input, form textarea {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
}

form button {
  padding: 14px;
  border: none;
  background: #b4975a;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
  margin-top: 20px;
  font-size: 14px;
  color: #ccc;
}

/* Features */
.features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 1rem;
}

.feature {
  background-color: transparent;
  padding: 1.5rem;
  border-radius: 5px;
  border: 1px solid#06088d;
  flex: 1 1 30%;
  min-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.feature:hover {
  transform: translateY(-10px); /* moves the box up */
  box-shadow: 0 10px 20px rgba(6, 8, 141, 0.3); /* subtle shadow */
}

/* Stats */
.stats-grid {
  display: flex;
  justify-content: space-around;
  text-align: center;
  flex-wrap: wrap;
  
}

.stat h4 {
  font-size: 2rem;
  color: var(--blue);
}

/* RESPONSIVE */
@media(max-width: 768px) {
  nav {
    flex-direction: column;
    gap: 10px;
  }
  nav ul {
    flex-direction: column;
    gap: 15px;
  }
  .hero-content h1 { font-size: 36px; }
  .hero-content p { font-size: 16px; }
}

@media(max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .btn { padding: 12px 22px; font-size: 14px; }
}
