/* ================= GLOBAL RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
  background-color: #ffffff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER / NAVBAR ================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;

  background: rgba(10, 26, 47, 0.45); /* transparent */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  color: #fff;
}

.main-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 0; /* ✅ slim navbar (same as pehle feel) */
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  height: 100px; /* ✅ bigger logo */
  width: auto;
}

.logo span {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

/* ===== NAV LINKS ===== */
.main-nav ul {
  list-style: none;
  display: flex;
}

.main-nav ul li {
  margin-left: 25px;
}

.main-nav ul li a {
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: #ff9800;
}

/* ================= HERO SECTION ================= */
.hero-section {
  height: 100vh;
  padding-top: 80px; /* navbar space */

  background:
    linear-gradient(
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0.25)
    ),
    url("images/hero.png") center / cover no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #ff9800;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin: auto;
}

.hero-buttons {
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  margin: 10px;
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background: #ff9800;
  color: #fff;
}

.btn-primary:hover {
  background: #e68900;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
}

.btn-secondary:hover {
  background: #fff;
  color: #0a1a2f;
}

/* ================= COMPANY INTRO ================= */
.company-intro {
  padding: 80px 0;
  text-align: center;
}

.company-intro h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.company-intro p {
  max-width: 900px;
  margin: 10px auto;
  font-size: 17px;
}

/* ================= CORE SERVICES ================= */
.core-services {
  background: #f4f6f9;
  padding: 80px 0;
}

.core-services h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-box {
  background: #fff;
  padding: 35px;
  border-radius: 6px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.service-box:hover {
  transform: translateY(-8px);
}

.service-box h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.service-box p {
  font-size: 15px;
  margin-bottom: 15px;
}

.service-box a {
  color: #ff9800;
  font-weight: 600;
}

/* ================= ACHIEVEMENTS ================= */
.achievements {
  padding: 80px 0;
  background: #0a1a2f;
  color: #fff;
}

.achievements h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-box h3 {
  font-size: 36px;
  color: #ff9800;
}

.stat-box p {
  margin-top: 10px;
}

/* ================= WHY CHOOSE US ================= */
.why-us {
  padding: 80px 0;
}

.why-us h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-list {
  max-width: 600px;
  margin: auto;
  list-style: none;
}

.why-list li {
  font-size: 17px;
  margin: 15px 0;
}

/* ================= CTA SECTION ================= */
.cta-section {
  background: linear-gradient(to right, #102f5e, #0a1a2f);
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
}

.cta-section p {
  margin: 20px 0;
  font-size: 18px;
}

/* ================= FOOTER ================= */
.main-footer {
  background: #0a1a2f;
  color: #ccc;
  padding-top: 50px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.main-footer h3,
.main-footer h4 {
  color: #fff;
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin: 10px 0;
}

.footer-links ul li a:hover {
  color: #ff9800;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #333;
  margin-top: 30px;
  font-size: 14px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

  .hero-content h1 {
    font-size: 34px;
  }

  .main-nav ul {
    flex-wrap: wrap;
  }

  .logo img {
    height: 36px;
  }

  .logo span {
    font-size: 20px;
  }

  .main-header {
    background: rgba(10, 26, 47, 0.85);
  }
}
