/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #fff;
  background-color: #1a237e;
}

/* ===== NAVBAR ===== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #1a237e;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo{
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img{
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #fff;
  margin-right: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin-left: auto;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.nav-links a:hover {
  color: #42a5f5;
}

.btn-quote {
  background-color: #1565c0;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  margin-left: 30px;
  white-space: nowrap;
}

.btn-quote:hover {
  background-color: #0d47a1;
}


/* ===== HERO ===== */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 40px;
  background: linear-gradient(135deg, #1a237e, #1565c0);
  min-height: 90vh;
}

.hero-text h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  margin-bottom: 20px;
}

.hero-text h1 span {
  color: #42a5f5;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 35px;
  color: #cfd8dc;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.btn-primary {
  background-color: #1976d2;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: #0d47a1;
}

.btn-secondary {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.btn-secondary:hover {
  color: #42a5f5;
}

.hero-image img {
  width: 420px;
  max-width: 100%;
  filter: drop-shadow(0 0 20px #42a5f5);
}

/* ===== SERVICES ===== */
.services {
  padding: 70px 40px;
  background: linear-gradient(135deg, #1a237e, #1565c0); 
  text-align: center;
}

.services h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: #fff;                /* ← FIXED: white text on dark bg */
  border-bottom: 2px solid rgba(255,255,255,0.4);
  display: inline-block;
  padding-bottom: 8px;
}

.subtitle {
  color: #cfd8dc;
  margin-bottom: 40px;
  font-size: 1rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background-color: rgba(255, 255, 255, 0.08);
  color: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s, background 0.3s;
}

.service-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 15px;
}

.card-header img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;               /* ← keeps original colored icons */
}

.card-header h3 {
  font-size: 1rem;
  color: #fff;
  line-height: 1.4;
}

.service-card p {
  font-size: 0.9rem;
  color: #cfd8dc;
  line-height: 1.7;
}


/* ===== SERVICES DETAIL ===== */
.services-detail {
  padding: 60px 40px;
  background: linear-gradient(135deg, #1a237e, #1565c0); /* ← dark blue */
  text-align: left;
}

.services-detail h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 10px;
}

.section-sub {
  color: #eaeff1;
  margin-bottom: 40px;
  font-size: 1rem;
  font-style: italic;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.detail-card {
  background-color: rgba(255,255,255,0.08); /* ← semi transparent card */
  color: #fff;
  padding: 25px 20px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
  transition: transform 0.3s, background 0.3s;
}

.detail-card:hover {
  transform: translateY(-6px);
  background-color: rgba(255,255,255,0.15);
}

.detail-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.detail-card .card-header img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none; /* ← makes images white */
}

.detail-card .card-header h3 {
  font-size: 1.15rem;
  color: #fff;
  line-height: 1.4;
}

.card-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 0 0 15px 0;
}

.detail-card p {
  font-size: 0.92rem;
  color: #cfd8dc;
  line-height: 1.8;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: 70px 40px;
  background: linear-gradient(135deg, #0d47a1, #1a237e);
  text-align: center;
}

.why-us h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 40px;
  border-bottom: 2px solid #42a5f5;
  display: inline-block;
  padding-bottom: 10px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background-color: rgba(255,255,255,0.08);
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s, transform 0.3s;
}

.why-card:hover {
  background-color: rgba(255,255,255,0.15);
  transform: translateY(-5px);
}

/* ← icon + heading side by side */
.why-card .card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 12px;
}

.why-card .card-header img {
  width: 55px;
  height: 55px;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;          /* ← keeps original colors */
}

.why-card .card-header h3 {
  font-size: 1.2rem;
  color: #fff;
}

.why-card .card-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 0 0 15px 0;
}

.why-card p {
  font-size: 0.95rem;
  color: #cfd8dc;
  line-height: 1.8;
}

/* ===== ABOUT ===== */
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  padding: 80px 40px;
  background: linear-gradient(135deg, #1a237e, #1565c0);
}

.about-text {
  flex: 1;
}

.about-label {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.about-label span {
  color: #42a5f5;
}

.about-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  border-bottom: 2px solid #42a5f5;
  padding-bottom: 10px;
}

.about-text p {
  font-size: 1rem;
  color: #cfd8dc;
  line-height: 1.8;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  max-height: 320px;
}

/* ===== CONTACT ===== */
.contact {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 80px 40px;
  background-color: #fff;
  color: #1a237e;
}

.contact-form {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form hr {
  border: 1px solid #1a237e;
  margin-bottom: 10px;
}

.contact-form .about-label {
  color: #1a237e;
}

.contact-form .about-label span {
  color: #1976d2;
}

.form-input {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 6px;
  background-color: #1976d2;
  color: #fff;
  font-size: 1rem;
  outline: none;
}

.form-input::placeholder {
  color: #e3f2fd;
}

.contact-form .btn-primary {
  width: fit-content;
  cursor: pointer;
  border: none;
}

.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 60px;
  color: #1a237e;
  font-size: 1rem;
}




/* ===== Services Page ===== */
/* ===== ACTIVE NAV LINK ===== */
.nav-links a.active {
  color: #42a5f5;
  font-weight: bold;
  border-bottom: 2px solid #42a5f5;
  padding-bottom: 3px;
}

/* ===== PAGE HERO (used on all inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1a237e, #1565c0);
  padding: 100px 40px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.page-hero-text h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.page-hero-text p {
  font-size: 1.2rem;
  color: #cfd8dc;
}

/* ===== SERVICES DETAIL ===== */
.services-detail {
  padding: 70px 40px;
  background-color: #fff;
  color: #1a237e;
  text-align: center;
}

.services-detail h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.section-sub {
  color: #555;
  margin-bottom: 40px;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  max-width: 1000px;
  margin: 0 auto;
}

.detail-card {
  background-color: #1a237e;
  color: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: left;
  transition: transform 0.3s;
}

.detail-card:hover {
  transform: translateY(-6px);
}

.detail-card img {
  width: 50px;
  margin-bottom: 12px;
  filter: brightness(0) invert(1);
}

.detail-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.detail-card hr {
  border: 1px solid #42a5f5;
  margin-bottom: 12px;
}

.detail-card p {
  font-size: 0.95rem;
  color: #cfd8dc;
  line-height: 1.7;
}

/* ===== WHY CHOOSE US ===== */
.why-us {
  padding: 70px 40px;
  background: linear-gradient(135deg, #1a237e, #1565c0);
  text-align: center;
}

.why-us h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  border-bottom: 2px solid #42a5f5;
  display: inline-block;
  padding-bottom: 10px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.why-card {
  background-color: rgba(255,255,255,0.08);
  padding: 35px;
  border-radius: 10px;
  text-align: left;
  transition: background 0.3s;
}

.why-card:hover {
  background-color: rgba(255,255,255,0.15);
}

.why-card img {
  width: 55px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #fff;
}

.why-card p {
  font-size: 0.95rem;
  color: #cfd8dc;
  line-height: 1.7;
}


/* ===== About ===== */
/* ===== ABOUT INTRO ===== */
.about-intro {
  background-color: #1a237e;
  padding: 60px 40px;
  text-align: center;
  max-width: 100%;
}

.about-intro p {
  font-size: 1.15rem;
  color: #cfd8dc;
  line-height: 1.9;
  max-width: 800px;
  margin: 0 auto;
}

/* ===== VALUES SECTION ===== */
.values {
  background-color: #1a237e;
  padding: 20px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  max-width: 900px;
  margin: 0 auto;
}

.value-card {
  background-color: #1565c0;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  transition: transform 0.3s;
}

.value-card:hover {
  transform: translateX(8px);
}

.value-icon img {
  width: 60px;
  filter: brightness(0) invert(1);
}

.value-text h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.value-text p {
  font-size: 0.95rem;
  color: #cfd8dc;
  line-height: 1.8;
}


/* ===== TEAM LEADERS ===== */
.team-leaders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding: 60px 80px;
  background: linear-gradient(135deg, #1a237e, #1565c0);
  width: 100%;
  box-sizing: border-box;
}

.leader-card {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.07);
  transition: transform 0.3s;
}

.leader-card:hover {
  transform: translateY(-6px);
}

.leader-card img {
  width: 100%;
  height: 220px;        /* ← FIXED: was too tall before */
  object-fit: cover;
  object-position: center top;  /* ← FIXED: shows face properly */
}

.leader-info {
  padding: 20px 25px;
  border: none;
  background-color: transparent;
}

.leader-info h3 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 4px;
}

.role {
  display: block;
  font-size: 0.9rem;
  color: #42a5f5;
  font-weight: bold;
  margin-bottom: 10px;
}

.leader-info hr {
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin-bottom: 12px;
}

.leader-info p {
  font-size: 0.9rem;
  color: #cfd8dc;
  line-height: 1.8;
}

/* ===== FULL TEAM GRID ===== */
.team-grid-section {
  background: linear-gradient(135deg, #1a237e, #0d47a1);
  padding: 70px 40px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.team-grid-section h2 {
  font-size: 2rem;
  color: #fff;
  margin-bottom: 8px;
}

.team-grid-section .section-sub {
  color: #cfd8dc;
  margin-bottom: 10px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 900px;
  margin: 40px auto 0;
}

.team-card {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, background 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  background-color: rgba(255, 255, 255, 0.15);
}

.team-card img {
  width: 100%;
  height: 180px;        /* ← FIXED: controlled height */
  object-fit: cover;
  object-position: center top;  /* ← FIXED: centers on face */
}

.team-card h4 {
  font-size: 1rem;
  padding: 12px 10px 4px;
  color: #fff;
}

.team-card p {
  font-size: 0.85rem;
  color: #42a5f5;
  padding-bottom: 15px;
}