/* ===== GENERAL ===== */
body {
  font-family: 'Segoe UI', Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #ffffff;
}
.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
  padding: 15px;
}
a {
  text-decoration: none !important;
  color: inherit;
}

/* ===== HEADER ===== */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #e6f2ff;   /* light blue */
  color: #003366;
  border-bottom: 1px solid #cce0ff;
  padding: 10px 0;
}

.brand{
  font-weight:700;
  font-size:18px;
  color:var(--accent);
  text-decoration:none;
}
.brand span{font-weight:600;color:#0f172a}

.sticky-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #003366;
  font-weight: 500;
  transition: color 0.3s;
  text-decoration: none;
}

nav a:hover {
  color: #007acc;
}

/* Hamburger button (hidden on desktop) */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #003366;
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: #e6f2ff;
    position: absolute;
    top: 60px;
    right: 15px;
    width: 200px;
    padding: 15px;
    border: 1px solid #cce0ff;
    border-radius: 6px;
  }
  nav a {
    margin: 10px 0;
  }
  .menu-toggle {
    display: block;
  }
  nav.active {
    display: flex;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: url('../images/hero.jpg') center/cover no-repeat;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #003366;
  text-align: center;
}
.hero .overlay {
  position: absolute;
  top:0; left:0; right:0; bottom:0;
  background: linear-gradient(rgb(151 174 198 / 85%), rgba(230, 242, 255, 0.8));
}
.hero-text {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 20px;
}
.hero h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #00264d;
}
.hero p {
  font-size: 20px;
  margin-bottom: 20px;
}
.hero-icons {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #00509e;
}
.hero-icons i {
  color: #007acc;
  margin: 0 6px;
}
.hero .subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 30px;
}
.hero-buttons {
  margin-top: 15px;
}
.hero .btn {
  background: #3399ff;
  color: white;
  padding: 14px 28px;
  border-radius: 6px;
  margin: 8px;
  font-weight: bold;
  font-size: 16px;
  transition: background 0.3s, transform 0.2s;
}
.hero .btn:hover {
  background: #007acc;
  transform: translateY(-2px);
}
.hero .call-btn {
  background: transparent;         /* transparent background */
  color: #007acc;                  /* text color */
  border: 2px solid #007acc;      /* border to make it visible */
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero .call-btn:hover {
  background: #007acc;            /* solid blue on hover */
  color: #fff;                     /* white text on hover */
  transform: translateY(-2px);
}

/* ===== SERVICES ===== */
.services {
  padding: 60px 20px;
  text-align: center;
  background: #f9fbff;
}
.services h2 {
  margin-bottom: 40px;
  color: #003366;
}
.service-cards {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.card {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 20px;
  width: 300px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
.card img {
  width: 100%;
  height: 200px;           /* fixed height */
  object-fit: cover;       /* crops nicely without stretching */
  border-radius: 10px;
  margin-bottom: 15px;
}

/* ===== ABOUT ===== */
.about {
  background: #eef7ff;
  padding: 60px 20px;
}
.about-container {
  display: flex;
  max-width: 1100px;
  margin: auto;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.about-img img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}
.about-text {
  flex: 1;
  line-height: 1.8;
  color: #333;
}

/* ===== PROFESSIONAL CTA ===== */
.cta {
  background: linear-gradient(135deg, #007acc, #3399ff); /* modern gradient */
  color: #fff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.05);
  transform: rotate(45deg);
  z-index: 1; /* ensure buttons are clickable */
}

.cta-container {
  position: relative;
  z-index: 2;
}


.cta h2 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.cta-buttons .call-btn {
  background: #007acc; /* bright blue */
  color: #fff;
}

.cta-buttons .call-btn:hover {
  background: #005fa3;
  transform: translateY(-3px);
}

.cta-buttons .email-btn {
  background: #ff6f00; /* vibrant orange */
  color: #fff;
}

.cta-buttons .email-btn:hover {
  background: #e65c00;
  transform: translateY(-3px);
}



/* Responsive */
@media (max-width: 600px) {
  .cta h2 {
    font-size: 32px;
  }
  .cta-buttons .btn {
    width: 100%;
    padding: 14px;
    margin: 6px 0;
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: #eef7ff;
  color: #003366;
  text-align: center;
  padding: 80px 20px;
}

.contact-container {
  max-width: 600px;
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #003366;
}

.contact p {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.6;
}

.contact a {
  color: #007acc;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.contact a:hover {
  color: #005fa3;
  text-decoration: underline;
}

.contact i {
  margin-right: 10px;
  color: #007acc;
}

/* Responsive */
@media (max-width: 500px) {
  .contact h2 {
    font-size: 28px;
  }
  .contact p {
    font-size: 16px;
  }
}


/* ===== FOOTER ===== */
footer {
  background: #0d1640;  /* dark blue background */
  color: #ffffff;        /* all text white */
  padding: 40px 20px;
  border-top: 1px solid #0b1235; /* slightly darker border */
  font-size: 15px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 30px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  color: #ffffff;       /* headings white */
}

.footer-col p,
.footer-col ul li {
  color: #ffffff;       /* paragraph and list text white */
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #ffffff;       /* links white */
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: #3399ff;       /* hover blue for links */
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  border-top: 1px solid #0b1235; /* darker line */
  padding-top: 10px;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 700px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
}

.brand{
  font-weight:700;
  font-size:18px;
  color:var(--accent);
  text-decoration:none;
}
.brand span{font-weight:600;color:#3399ff}

.terms-wrapper {
      max-width: 940px;
      margin: 40px auto;
      background: #fff;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      font-size: 16px;
      line-height: 1.75;
      color: #333;
    }
    .terms-wrapper h1 {
      font-size: 2rem;
      font-weight: 700;
      color: #0d1640;
      margin-bottom: 18px;
      text-align: center;
    }
    .terms-wrapper .intro {
      font-size: 1.05rem;
      color: #555;
      margin-bottom: 20px;
      text-align: left;
    }
    .terms-section h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #0d1640;
      margin-top: 26px;
      margin-bottom: 10px;
      padding-left: 12px;
      border-left: 4px solid #3399ff;
    }
    .terms-section p {
      margin-bottom: 12px;
    }
    .terms-section ul {
      margin: 8px 0 14px 20px;
    }
    .terms-section li {
      margin-bottom: 6px;
    }
    .terms-updates {
      border-top: 1px solid #e6e9f2;
      padding-top: 18px;
      margin-top: 24px;
    }
    @media (max-width: 720px) {
      .terms-wrapper { padding: 20px; margin: 20px; }
    }

.policy-wrapper {
      max-width: 940px;
      margin: 40px auto;
      background: #fff;
      padding: 40px;
      border-radius: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.08);
      font-size: 16px;
      line-height: 1.75;
      color: #333;
    }
    .policy-wrapper h1 {
      font-size: 2rem;
      font-weight: 700;
      color: #0d1640;
      margin-bottom: 18px;
      text-align: center;
    }
    .policy-wrapper .intro {
      font-size: 1.02rem;
      color: #555;
      margin-bottom: 20px;
      text-align: left;
    }
    .policy-section h3 {
      font-size: 1.15rem;
      font-weight: 700;
      color: #0d1640;
      margin-top: 26px;
      margin-bottom: 10px;
      padding-left: 12px;
      border-left: 4px solid #3399ff;
    }
    .policy-section p {
      margin-bottom: 12px;
    }
    .policy-section ul {
      margin: 8px 0 14px 20px;
    }
    .policy-section li {
      margin-bottom: 6px;
    }
    .policy-updates {
      border-top: 1px solid #e6e9f2;
      padding-top: 18px;
      margin-top: 24px;
    }
    /* small screens */
    @media (max-width: 720px) {
      .policy-wrapper { padding: 20px; margin: 20px; }
    }


