body {
  font-family: "Poppins", sans-serif;
  margin: 0;
  color: #111;
  background-color: #fff;
}

/* Navbar */
header {
  background: #0d2481;
  padding: 15px 0;
  z-index: 999;
  position: fixed;
  top: 0;
  width: 100%;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
  width: 90%;
}
nav .logo {
  color: #fff;
  font-weight: 650;
  font-size: 24px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
nav ul li a:hover {
  color: orange;
}

/* Home Section */

/*#home {
  background: linear-gradient(to Right, #0d2481, #ef7c00);
  color: #fff;
  text-align: center;
  padding: 100px 80px;
}*/
#home {
  background: linear-gradient(to Right, #0d2481, #ef7c00);
  color: #fff;
  text-align: center;
  padding: 100px 80px;
  height: 40vh; /* full viewport height */
  width: 93%;   /* full width */
  margin: 0;     /* remove unwanted space */
  display: flex; /* optional: center content */
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.home-content p {
  font-size: 22px; }


/* .btn {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  cursor: pointer;
} */

.btn {
  font-size: 22px;        /* button text size */
  padding: 14px 28px;
  background-color: transparent;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s ease;
}
.btn:hover {
  background: #fff;
  color: #0d2481;
  transform: scale(1.05)
}

#about h2{
    font-size: 2.2em;
  color: #173b9b;
  text-align: center;
}
#about h3 {
  color: #0d2481;
  margin-top: 30px;
}

#about ul.values-list {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin: 20px auto;
  padding: 0;
}

#about ul.values-list li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

#about ul.values-list li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: orange;
}
/* About Section */
/* #about {
  padding: 80px 20px;
  background: #f3f3f3;
  text-align: center;
}
.us{
    flex: 1 1 45% ;
    text-align: left;
}


.stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
  gap: 20px;
}
.card {
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 20px 40px;
  border-radius: 8px;
  font-weight: bold;
  color: #0d2481;
} */

/* ===== ABOUT SECTION STYLING ===== */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  padding: 80px 10%;
  background-color: #f8f9ff;
  gap: 50px;
}

/* Left Side: Text */
.about-content {
  flex: 1;
  min-width: 400px;
}

.about-content h2 {
  color: #0a1a6b;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 25px;
  text-align: center;
}

.about-content p {
  color: #333;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-content strong {
  color: #0a1a6b;
}

/* Right Side: Info Cards */
.about-stats {
  flex: 0 0 380px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-card {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 25px 15px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.stat-card h3 {
  font-size: 2em;
  color: #0a1a6b;
  margin-bottom: 5px;
}

.stat-card p {
  font-size: 18px;
  color: #333;
}

/* Responsive */
@media (max-width: 992px) {
  .about-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-content, .about-stats {
    width: 90%;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
  }
}

/* Footer */
footer {
  background: #0d2481;
  color: white;
  text-align: center;
  padding: 15px;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #fff;
  color: #111;
}

/* ===== Navbar ===== */
header {
  background-color: #022678;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo-container img {
  height: 50px;
  margin-right: 10px;
}

.logo-container h1 {
  font-size: 28px;
  margin: 0;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

nav a:hover {
  text-decoration: underline;
}

/* ===== Section Defaults ===== */
section {
  padding: 80px 30px;
}
h1 {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 70px;
}

h2 {
  font-size: 2.2em;
  color: #173b9b;
  text-align: center;
  margin-bottom: 30px;
}

/* ===== Services ===== */
#services {
  background-color: #f8f9ff;; /* light grey background outside the grid */
   /* adds spacing above and below the grid */
}
#services h2{
    font-size: 2.2em;
  color: #173b9b;
  text-align: center;
}

.services-grid {
   background-color: #f8f9ff;; 
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-box {
  border-radius: 8px;
  padding: 25px;
  background-color: #fff;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  border-bottom: 5px solid #173b9b;
}

.service-box h3 {
  color: #c15b0a;
  margin-bottom: 15px;
  text-align: center;
  font-size: 20px;
}

.service-box li {
  list-style: none;
  margin: 8px 0;
  font-size: 18px;
}

.service-box li::before {
  content: "⚡ ";
  color: #173b9b;
  text-align: left;
}

/* ===== Projects ===== */
#projects {
  background-color: #f8f9ff;; /* light grey background outside the grid */
   /* adds spacing above and below the grid */
}
.projects-grid {
  background-color: #f8f9ff;;  
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
}


.project-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-left: 5px solid #173b9b;
}

.project-card h4 {
  color: #ea7617;
  margin-bottom: 24px;
  font-size: 20px;
}

.project-card p {
  font-size: 18px;
}

.budget {
  background: #173b9b;
  color: white;
  padding: 6px 12px;
  border-radius: 15px;
  font-size: 14px;
  display: inline-block;
  margin-top: 10px;
}

/* ===== Contact Section ===== */
.contact-section {
  background: linear-gradient(to top, #173b9b, #e67e22);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 60px 80px;
}

.contact-info {
  width: 45%;
}

.contact-info p {
  margin: 8px 0;
  line-height: 1.6;
  font-size: 18px;
}

form {
  width: 45%;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 25px;
  border-radius: 8px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: none;
  border-radius: 4px;
  outline: none;
}

form button {
  background-color: #ffb703;
  color: #173b9b;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #ffd166;
}

/* ===== Footer ===== */
footer {
  text-align: center;
  padding: 15px;
  background-color: #173b9b;
  color: white;
  font-size: 14px;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
  }

  .contact-info,
  form {
    width: 100%;
    margin-top: 20px;
  }

  section {
    padding: 40px 20px;
  }
}

.phone-group {
  display: flex;
  gap: 10px;
}

.phone-group select {
  width: 30%;
  padding: 30px;
  border: none;
  border-radius: 4px;
  outline: none;
}

.phone-group input {
  width: 70%;
}


/* Our Proprietor Section */
.team-section {
  text-align: center;
  padding: 80px 20px;
  background-color: #f8f9ff;;
}

.team-section h2 {
 font-size: 2.2em;
  color: #173b9b;
  margin-bottom: 50px;
  font-weight: bold;
}

/* Team Container Layout */
.team-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 80px;
  text-align: left center;
  gap: 30px;
  transition: transform 0.3s ease;
}

.team-container:hover {
  transform: translateY(-5px);
}

/* Left Side (Photo + Name) */
.team-card {
  flex: 0 0 220px;
  text-align: center;
}

.team-card img {
  width: 320px;
  height: 370px;
  border-radius: 10px;
  object-fit: cover;
  /* border: 1px solid #e2e2e5; */
  margin-bottom: 15px;
}

.team-card h3 {
  color: #e96b1c;
  font-size: 1.4em;
  margin-bottom: 5px;
}

.team-card h4 {
  color: #0a1a6b;
  font-size: 1em;
  font-weight: 600;
}

/* Right Side (Description) */
.team-content {
  flex: 1;
}

.team-content p {
  font-size: 18px;
  line-height: 2;
  color: #333;
  text-align: left;
}

/* Responsive Design */
@media (max-width: 768px) {
  .team-container {
    flex-direction: column;
    text-align: center;
  }

  .team-card {
    margin-bottom: 20px;
  }

  .team-card img {
    width: 150px;
    height: 150px;
  }
}