/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* Header */
header {
  background: rgba(0, 0, 0, 0.8);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}
.logo {
  color: #fff;
  font-weight: 700;
}
.nav-links {
  list-style: none;
  display: flex;
}
.nav-links li {
  margin-left: 20px;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.nav-links a:hover, .nav-links a.active {
  color: #ffd700;
}

/* Hero */
/* Hero Section with Video */
.hero {
  position: relative;
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Overlay for contrast */
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 800px;
  padding: 20px;
}

.hero-content h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.hero-content p {
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
}
.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background: #ffd700;
  color: #000;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
}
.btn:hover {
  background: #e6c200;
}

/* Services */
/* Services Section */
.services {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(to right, #f9f9f9, #eef2f7);
}

.services h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #002147; /* Dark blue heading */
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

/* Service Cards */
.card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Gradient accent bar */
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 6px;
  border-radius: 15px 15px 0 0;
  background: linear-gradient(90deg, #ffd700, #ffae00);
}

.card i {
  font-size: 2.5rem;
  color: #ffae00;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: #002147;
}

.card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.5;
}

/* Hover Effects */
.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}
.card:hover i {
  color: #002147;
}

/* About */
.about, .clients {
  padding: 50px 20px;
  background: #fff;
}
.about h2, .clients h2 {
  margin-bottom: 20px;
  text-align: center;
}
.clients ul {
  list-style: none;
  padding-left: 0;
}
.clients ul li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}

/* Sub Hero */
.sub-hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1498050108023-c5249f4df085') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}
.sub-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}
.sub-hero p {
  font-size: 1.2rem;
}

/* About Content */
/* About Content */
.about-content {
  padding: 80px 20px;
  background: #fff;
}
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  align-items: center;
}
.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.about-image img:hover {
  transform: scale(1.05);
}
.about-text h2 {
  font-size: 2rem;
  color: #002147;
  margin-bottom: 15px;
  border-left: 6px solid #ffae00;
  padding-left: 12px;
}
.about-text p {
  margin-bottom: 15px;
  color: #444;
  line-height: 1.7;
}

/* Highlights */
.about-highlights {
  margin-top: 20px;
}
.highlight {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-weight: 500;
  color: #002147;
}
.highlight i {
  color: #ffae00;
  font-size: 1.2rem;
  margin-right: 10px;
}

.values {
  padding: 60px 20px;
  text-align: center;
}
.values h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #002147;
}
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}
.value-cards .card {
  padding: 30px 20px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.value-cards .card:hover {
  transform: translateY(-10px);
}
.value-cards .card i {
  font-size: 2.3rem;
  color: #ffae00;
  margin-bottom: 12px;
}
.value-cards .card h3 {
  margin-bottom: 10px;
  color: #002147;
}
.value-cards .card p {
  color: #555;
}

/* Clients */
.clients {
  padding: 50px 20px;
  background: #fff;
}
.clients h2 {
  margin-bottom: 20px;
  text-align: center;
}
.clients ul {
  list-style: none;
  padding-left: 0;
}
.clients ul li {
  padding: 10px;
  border-bottom: 1px solid #ddd;
}

/* Footer */
footer {
  background: #000;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  margin-top: 20px;
}

/* Clients Showcase */
.clients-showcase {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
}
.clients-showcase h2 {
  font-size: 2.4rem;
  color: #002147;
  margin-bottom: 10px;
}
.clients-showcase .section-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.client-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  font-weight: 500;
  color: #002147;
  display: flex;
  align-items: center;
  gap: 12px;
}
.client-card i {
  font-size: 1.4rem;
  color: #ffae00;
}
.client-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  background: #ffd700;
  color: #000;
}
.client-card:hover i {
  color: #002147;
}



