@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

:root {
  --primary: #0B2D72;
  --accent: #0992C2;
  --gold: #F6E7BC;
  --dark: #071a40;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--dark);
  color: #fff;
  overflow-x: hidden;
}

.container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
}

/* ================= NAVBAR ================= */

header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  background: linear-gradient(90deg,#0B2D72,#071a40);
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav img {
  height: 80px;   /* Bigger logo */
}

nav ul {
  display: flex;
  list-style: none;
  gap: 35px;
}

nav ul li a {
  text-decoration: none;
  color: var(--gold);
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: var(--accent);
}

/* ================= PREMIUM HERO ================= */

.premium-hero {
  position: relative;
  height: 100vh;
  background:
    linear-gradient(to right, rgba(7,26,64,0.96) 45%, rgba(7,26,64,0.65) 85%),
    url('../assets/city-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 120px;
  overflow: hidden;
}

.hero-wrapper {
  width: 100%;
  padding-left: 8%;
}

.hero-content {
  max-width: 620px;
  text-align: left;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.hero-content p {
  font-size: 1.1rem;
  color: #dcdcdc;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* Buttons */

.btn-gold {
  background: linear-gradient(90deg,#F6E7BC,#d8b768);
  color: #0B2D72;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-blue {
  background: linear-gradient(90deg,#0992C2,#0B2D72);
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.btn-gold:hover,
.btn-blue:hover {
  transform: translateY(-5px);
}

/* ================= HEX FLOATING ================= */

.hex-container {
  position: absolute;
  right: 8%;
  top: 30%;
  display: grid;
  grid-template-columns: repeat(2,120px);
  gap: 25px;
}

.hex {
  width: 110px;
  height: 110px;
  background: rgba(9,146,194,0.25);
  border: 1px solid rgba(9,146,194,0.6);
  clip-path: polygon(
    25% 5%, 75% 5%,
    100% 50%, 75% 95%,
    25% 95%, 0% 50%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(8px);
  transition: 0.4s;
}

.hex:hover {
  transform: scale(1.1);
  background: rgba(9,146,194,0.45);
}

/* ================= SECTIONS ================= */

.section {
  padding: 140px 0;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 70px;
  font-weight: 700;
}

/* ================= EXPERTISE SECTION ================= */

.expertise-section {
  background: linear-gradient(180deg,#071a40,#0B2D72);
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: auto;
  margin-bottom: 80px;
}

.section-label {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
}

.section-header p {
  color: #cfcfcf;
  font-size: 1.05rem;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 40px;
}

.expertise-card {
  background: rgba(255,255,255,0.05);
  padding: 45px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  transition: 0.4s;
}

.expertise-card h3 {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.expertise-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
}

/* ================= FOOTER ================= */

footer {
  background: #061530;
  text-align: center;
  padding: 40px;
  margin-top: 120px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

  nav img {
    height: 60px;
  }

  .premium-hero {
    padding-left: 5%;
  }

  .hero-content h1 {
    font-size: 2.4rem;
  }

  .hex-container {
    display: none;
  }

}
/* ================= ABOUT HERO ================= */

.about-hero {
  height: 45vh;
  background:
    linear-gradient(to right, rgba(7,26,64,0.95), rgba(7,26,64,0.75)),
    url('../assets/city-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-top: 120px;
}

.about-hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.about-subtitle {
  font-size: 1.2rem;
  color: #d6d6d6;
}

/* ================= ABOUT CONTENT ================= */

.about-content-section {
  background: linear-gradient(180deg,#071a40,#0B2D72);
  padding: 100px 0 140px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 25px;
  font-size: 1.05rem;
  color: #dcdcdc;
}

.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px){
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-hero {
    height: 55vh;
  }
}
.enterprise-section {
  background: linear-gradient(180deg,#071a40,#0B2D72);
}

.enterprise-text {
  max-width: 900px;
  margin: auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #dcdcdc;
}

.mission-vision-section {
  background: #071a40;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
  gap: 50px;
}

.mission-card {
  background: rgba(255,255,255,0.05);
  padding: 50px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
}

.capabilities-section {
  background: linear-gradient(180deg,#0B2D72,#071a40);
}

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

.cap-card {
  padding: 25px;
  background: rgba(9,146,194,0.1);
  border: 1px solid rgba(9,146,194,0.4);
  border-radius: 10px;
  transition: 0.3s;
}

.cap-card:hover {
  background: rgba(9,146,194,0.3);
  transform: translateY(-5px);
}

.timeline-section {
  background: #071a40;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 25px;
  margin-top: 40px;
}

.timeline-step {
  padding: 25px;
  border-left: 4px solid var(--accent);
  background: rgba(255,255,255,0.04);
}

.why-section {
  background: linear-gradient(180deg,#071a40,#0B2D72);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.why-card {
  padding: 35px;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
}
/* ================= SERVICES HERO ================= */

.services-hero {
  height: 40vh;
  background:
    linear-gradient(to right, rgba(7,26,64,0.95), rgba(7,26,64,0.75)),
    url('../assets/city-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
}

.services-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.services-hero p {
  color: #dcdcdc;
  font-size: 1.1rem;
}

/* ================= SERVICES GRID ================= */

.services-section {
  background: linear-gradient(180deg,#071a40,#0B2D72);
  padding: 100px 0 140px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 30px;
}

.service-card {
  background: linear-gradient(180deg,#0B2D72,#071a40);
  padding: 35px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  transition: 0.4s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.service-icon {
  font-size: 40px;
  margin-bottom: 20px;
  color: #0992C2;
}

.service-card h3 {
  margin-bottom: 15px;
  color: #F6E7BC;
}

.service-card p {
  color: #dcdcdc;
  font-size: 0.95rem;
}
/* ================= BLOG HERO ================= */

.blog-hero {
  height: 40vh;
  background:
    linear-gradient(to right, rgba(7,26,64,0.95), rgba(7,26,64,0.75)),
    url('../assets/city-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
}

.blog-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.blog-hero p {
  color: #dcdcdc;
  font-size: 1.1rem;
}

/* ================= BLOG SECTION ================= */

.blog-section {
  background: linear-gradient(180deg,#071a40,#0B2D72);
  padding: 100px 0 140px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  gap: 40px;
}

.blog-card {
  background: linear-gradient(180deg,#0B2D72,#071a40);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.4s;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}

.blog-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.blog-content {
  padding: 25px;
}

.blog-content h3 {
  color: #F6E7BC;
  margin-bottom: 15px;
}

.blog-content p {
  color: #dcdcdc;
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.blog-btn {
  display: inline-block;
  padding: 10px 20px;
  background: linear-gradient(90deg,#0992C2,#0B2D72);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.blog-btn:hover {
  transform: translateY(-3px);
}
/* ================= CONTACT HERO ================= */

.contact-hero {
  height: 40vh;
  background:
    linear-gradient(to right, rgba(7,26,64,0.95), rgba(7,26,64,0.75)),
    url('../assets/city-hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 120px;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-hero p {
  color: #dcdcdc;
  font-size: 1.1rem;
}

/* ================= CONTACT SECTION ================= */

.contact-section {
  background: linear-gradient(180deg,#071a40,#0B2D72);
  padding: 120px 0 160px 0;
}

.contact-wrapper {
  display: flex;
  justify-content: center;
}

.contact-card {
  max-width: 700px;
  background: linear-gradient(180deg,#0B2D72,#071a40);
  padding: 60px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.contact-card h2 {
  margin-bottom: 25px;
  color: #F6E7BC;
}

.contact-card p {
  color: #dcdcdc;
  margin-bottom: 35px;
  line-height: 1.6;
}

.contact-email {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0992C2;
  padding: 15px 25px;
  background: rgba(9,146,194,0.1);
  border-radius: 8px;
  display: inline-block;
}
