:root {
  --primary-color: #0056b3;
  --secondary-color: #007bff;
  --background-color: #f4f7fa;
  --text-color: #222;
  --cta-color: #007bff;
  --cta-hover: #004c99;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", sans-serif;
  background: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ============================================================
   1. HEADER & NAVIGATION
============================================================ */
header.sticky {
  top: 0;
  background: var(--primary-color);
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

nav {
  width: 100%;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0%;
  height: 2px;
  background: white;
  transition: 0.3s ease;
}

.nav-links li a:hover::after {
  width: 100%;
}

.mobile-toggle {
  display: none;
  font-size: 1.8rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}

/* ============================================================
  2. SECTION LAYOUT & TITLES
============================================================ */
section {
  width: 100%;
}

h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* ============================================================
  3. CONTACT US INFO -  SECTION
============================================================ */
#contact-details {
  margin-top: 5vh;
}

#contact-details .contact-header h1{
  font-size: 4rem;
  justify-self: center;
  color: var(--primary-color);
  margin-bottom: 1.5vh;
}

#contact-details .contact-header p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 20px;
  justify-self: center;
  margin-bottom: 3vh;
}

.contact-details {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  background-color: var(--background-color);
}

.contact-email h3,
.contact-number h3,
.contact-address h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.contact-email p,
.contact-number p,
.contact-addressp {
  font-size: 1.1rem;
  color: black;
  margin-bottom: 15px;
}

.contact-email p a,
.contact-number p a{
  text-decoration: none;
  color: black;
}

/* ============================================================
  4. CONTACT SECTION
============================================================ */
.contact-container {
  display: flex;
  margin: 25px;
  flex-wrap: wrap;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
}

.contact-left {
  flex: 1;
  min-width: 300px;
  background-color: #eee;
}

.contact-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-right {
  flex: 0.5;
  padding: 40px 30px;
  min-width: 300px;
}

.contact-right h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.contact-right p {
  margin-bottom: 20px;
  color: #444;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form input {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

.cta-button {
  display: inline-block;
  padding: 10px 25px;
  background-color: var(--cta-color);
  color: white;
  font-weight: 700;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-self: center;
  width: 100%;
  font-size: 1.2rem;
}


/* ============================================================
  5. FOOTER STYLES
============================================================ */
footer {
  width: 100%;
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: #fff;
  text-align: center;
  padding: 22px 10px 12px 10px;
  margin-top: 40px;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.06);
  position: relative;
  z-index: 2;
}

footer p {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 1.1rem;
}


