/* ========== RESET & GLOBAL ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* General */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
  color: #333;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== TOPBAR ===== */
.topbar {
  background-color: #007BFF;
  /* blue bar */
  color: white;
  font-size: 14px;
  padding: 8px 0;
}


/* Topbar: full-width */
.topbar-inner {
  max-width: 100%;
  /* full width */
  padding: 0 40px;
  /* balanced spacing on sides */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-left {
  font-weight: 500;
  letter-spacing: 0.5px;
}

.top-right span {
  margin-right: 20px;
}

.top-right i {
  margin-right: 6px;
  color: #FFD700;
  /* golden accent */
}

.btn-proposal {
  background: #FFD700;
  color: #333;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-proposal:hover {
  background: #ffcc00;
}

/* ===== NAVBAR ===== */
/* Nav Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  transition: all 0.3s ease;
}

/* Hover effect */
.nav-links li a:hover {
  color: #007BFF;
}

/* Active link */
.nav-links li a.active {
  color: #007BFF;
  font-weight: 600;
}

.nav-links li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #FFD700; /* gold underline */
}



.navbar {
  background-color: #ffffff;
  position: sticky;
  top: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

/* Navbar Container */
.nav-container {
  max-width: 1300px;   /* keeps it centered with space on sides */
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px; /* reduced navbar height */
}

/* Logo */
/* Fix logo size */
.logo img {
  height: 120px;
  /* much smaller */
  width: auto;
  /* keep aspect ratio */
  display: block;
}


.logo img:hover {
  transform: scale(1.05);
  /* Optional hover zoom */
}


/* Mobile Menu */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px; /* matches navbar height */
    right: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    width: 200px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: none;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    color: #333;
  }
}

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

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


nav .logo span {
  font-size: 1.4rem;
  font-weight: 600;
  color: #00bcd4;
  letter-spacing: 1px;
}

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

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
  color: #00bcd4;
}

/* ========== HEADER / HERO ========== */
header {
  background: linear-gradient(135deg, #00bcd4, #1a3c5d);
  color: white;
  padding: 160px 20px 100px;
  text-align: center;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

header p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 25px;
  opacity: 0.95;
}

.tagline {
  font-size: 1.1rem;
  font-style: italic;
  color: #e0f7fa;
}

/* ========== ABOUT SECTION ========== */
/* Hero Section */

.about-hero .hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 43, 90, 0.7); /* dark overlay */
}

.about-hero .hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.about-hero h1 {
  font-size: 42px;
  margin-bottom: 15px;
}

.about-hero h1 span {
  color: #FFD700;
}

.about-hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}
.about-hero h1 span {
  color: #FFD700; /* gold highlight */
}
.about-hero p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
  color: #f0f0f0;
}
.about-hero .divider {
  width: 80px;
  height: 3px;
  background: #FFD700;
  margin: 20px auto 0;
}


.about-hero p {
  font-size: 18px;
  color: #f0f0f0;
}

/* About Content */
.about-content {
  padding: 80px 20px;
  background: #f9fbfd;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.about-left h3,
.about-right h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #042e57;
}

.about-left p,
.about-right p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* About Content */
.about-content {
  padding: 100px 20px;
  background: #ffffff;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-left h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: #042e57;
}

.about-left p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.values {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.values li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.values i {
  color: #FFD700;
  font-size: 18px;
}

/* Image */
.about-right img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-right img:hover {
  transform: scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.15);
}

/* Button */
.btn-primary {
  background: #FFD700;
  color: #333;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e0a800;
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-right {
    margin-top: 30px;
  }
}

/* //////// */
/* ===== Capabilities Section ===== */
.capabilities {
  background: #fff;
  padding: 100px 20px;
}

.cap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Side */
.image-wrapper {
  position: relative;
  display: inline-block;
}

.image-wrapper img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.experience-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #fff;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  text-align: center;
}

.experience-badge h2 {
  font-size: 32px;
  margin: 0;
  color: #007BFF; /* Brand Blue */
}

.experience-badge p {
  margin: 0;
  font-size: 14px;
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
}

/* Right Side */
.cap-right h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #042e57;
}

.cap-right h2 span {
  color: #FFD700; /* Brand Gold */
}

.cap-right p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

.cap-divider {
  width: 80px;
  border: 2px solid #FFD700; /* Gold divider */
  margin: 20px 0;
}

.cap-right h3 {
  font-size: 22px;
  font-weight: 700;
  color: #042e57;
}

.cap-right h3 span {
  color: #FFD700; /* Gold highlight */
}

/* Responsive */
@media(max-width: 992px) {
  .cap-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .experience-badge {
    left: 50%;
    transform: translateX(-50%);
  }
  .cap-divider {
    margin: 20px auto;
  }
}
/* About Content */

.values {
  list-style: none;
  padding: 0;
}

.values li {
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
}

.values i {
  color: #FFD700;
  font-size: 18px;
}

/* Button */
.btn-primary {
  background: #FFD700;
  color: #333;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e0a800;
  transform: translateY(-3px);
}

/* Responsive */
@media(max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about-right {
    margin-top: 30px;
  }
}


/* ========== SERVICES SECTION ========== */
#services {
  background: #ffffff;
  padding: 100px 20px;
}

#services h2 {
  text-align: center;
  color: #0e1f2f;
  font-size: 2rem;
  margin-bottom: 40px;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

/* Purple Service Box */
.service-box.purple {
  background-color: #4b0150;
  color: #fff;
  border-radius: 12px;
  padding: 40px 25px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.service-box.purple:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.service-box.purple i {
  font-size: 2.8rem;
  color: #ffcd00;
  margin-bottom: 15px;
}

.service-box.purple h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-box.purple p {
  font-size: 0.95rem;
  color: #f2f2f2;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ORDER BUTTONS */
.order-btn {
  background-color: #ffcd00;
  border: none;
  color: #222;
  padding: 10px 25px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.order-btn.grey {
  background-color: #555;
  color: white;
}

.order-btn:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

/* ========== CONTACT SECTION ========== */
#contact {
  background: linear-gradient(135deg, #1a3c5d, #00bcd4);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

#contact h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

#contact p {
  font-size: 1.1rem;
  max-width: 700px;
  margin: auto;
  opacity: 0.95;
}

.contact-btn {
  background: white;
  color: #0e1f2f;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 25px;
  cursor: pointer;
  transition: all 0.3s;
}

.contact-btn:hover {
  background: #00bcd4;
  color: white;
}


.socials {
  margin-top: 15px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

.socials a {
  color: #00bcd4;
  font-size: 1.3rem;
  transition: all 0.3s;
}

.socials a:hover {
  color: #ffffff;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #1e2a3a;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 15px 25px;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-top: 10px;
  }

  header h1 {
    font-size: 2.2rem;
  }

  .service-box.purple {
    padding: 30px 20px;
  }

  #about {
    padding: 70px 15px;
  }
}



/* /////new css */

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

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #173245;
  background: #f7fbfe
}

/* containers */
/* .container{max-width:1150px;margin:0 auto;padding:0 18px} */

/* TOPBAR */

/* HEADER / NAV */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(12, 40, 66, .06);
  position: sticky;
  top: 0;
  z-index: 50
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #173245
}

.brand img {
  height: 48px
}

.brand span {
  font-weight: 700;
  color: #0b3d91;
  font-size: 18px
}

.main-nav {
  display: flex;
  gap: 18px;
  align-items: center
}

.main-nav .nav-link {
  color: #0b3d91;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 4px
}

.main-nav .nav-link:hover,
.main-nav .nav-link.active {
  background: #eef6ff;
  color: #004f9e
}

.mobile-toggle {
  display: none;
  color: #0b3d91;
  font-size: 20px;
  cursor: pointer
}

/* HERO */
/* HERO SECTION */
.hero {
  position: relative;
  min-height: calc(100vh - 80px); /* subtract navbar height */
  padding: 100px 60px 60px; /* top, sides, bottom */
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0056b3, #00c6ff);
  overflow: hidden;
  color: #fff;
}


/* Container */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
}

/* Left */
.hero-left h1 {
  font-size: 50px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-left h1 span {
  color: #FFD700; /* highlight */
}

.hero-left p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #f0f0f0;
}

/* Buttons */
.hero-buttons {
  margin-bottom: 35px;
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  margin-right: 15px;
}

.btn-primary {
  background: #FFD700;
  color: #333;
}

.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #333;
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 30px;
  font-size: 16px;
  flex-wrap: wrap;
}

.hero-stats div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-stats i {
  color: #FFD700;
  font-size: 20px;
}

/* Right Image */
.hero-right img {
  width: 100%;
  max-width: 500px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* Background wave at bottom */
.hero-wave {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%;
  height: 180px;
  background: url("images/wave.svg") no-repeat bottom;
  background-size: cover;
  z-index: 0;
}

/* Responsive */
@media(max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-right img {
    margin-top: 30px;
  }
  .hero-left h1 {
    font-size: 36px;
  }
}


/* FEATURES */
.features {
  padding: 34px 0
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px
}

.feature {
  background: #fff;
  padding: 22px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(12, 40, 66, 0.04);
  text-align: center
}

.feature i {
  font-size: 28px;
  color: #00bcd4;
  margin-bottom: 10px
}

.feature h4 {
  margin-bottom: 8px;
  color: #0b3d91
}

/* CTA BAND */
.cta-band {
  background: #004f9e;
  color: #fff;
  padding: 18px 0;
  margin-top: 18px;
  border-radius: 6px
}

.cta-band .container {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.cta-band .btn-primary {
  background: #ffd54f;
  color: #001033
}

/* ABOUT */
.about-preview {
  padding: 100px 20px;
  background: #fff;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-left img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.about-right h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #042e57;
}

.about-right h2 span {
  color: #FFD700;
}

.about-right p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.about-hero {
  position: relative;
  background: url("images/aboutbg.jpeg") center/cover no-repeat;
  padding: 140px 20px;
  text-align: center;
  color: white;
}

.about-hero::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 100px;
  background: url("images/wave.svg") no-repeat bottom;
  background-size: cover;
}

.about-hero .container {
  position: relative;
  z-index: 1;
}


.about-content {
  padding: 36px 0
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start
}

.values {
  list-style: disc;
  padding-left: 18px;
  margin-top: 8px
}

/* ===== Why Choose Us ===== */
.why-choose {
  background: #ffffff;
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #042e57;
}

.section-title span {
  color: #FFD700; /* gold accent */
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

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

.choose-card {
  background: #f9fbfd;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.choose-card i {
  font-size: 40px;
  color: #007BFF;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.choose-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #042e57;
  font-weight: 600;
}

.choose-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Hover Effect */
.choose-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.choose-card:hover i {
  color: #FFD700; /* gold on hover */
}


/* ===== Services Section ===== */
.services {
  background: #f9fbfd;
  padding: 100px 20px;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #042e57;
}

.section-title span {
  color: #FFD700; /* gold accent */
}

.section-subtitle {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  margin: 0 auto 60px;
  line-height: 1.6;
}

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

.service-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.service-card i {
  font-size: 40px;
  color: #007BFF;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #042e57;
  font-weight: 600;
}

.service-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Hover Effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.service-card:hover i {
  color: #FFD700; /* gold highlight on hover */
}



/* SERVICES (purple cards converted to blue-accent) */
.services-section {
  padding: 50px 0
}

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

.service-card {
  background: #0b3d91;
  color: #fff;
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(11, 61, 145, 0.12);
  transition: transform .25s, box-shadow .25s
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(11, 61, 145, 0.18)
}

.service-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #b5b9b9, #0077b6);
  font-size: 30px
}

.service-title {
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.6px
}

.service-desc {
  color: rgba(255, 255, 255, 0.9);
  min-height: 58px
}

/* ORDER BUTTONS */
.order-btn {
  margin-top: 14px;
  background: #ffd54f;
  color: #062633;
  padding: 10px 18px;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  font-weight: 700
}

.order-btn.grey {
  background: #1f3555;
  color: #fff
}

/* CONTACT */
.contact-hero {
  padding: 40px 0;
  background: #fff;
  text-align: center
}

.contact-form-section {
  padding: 30px 0
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 28px
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #dfeff8;
  margin-bottom: 12px;
  font-size: 15px
}

.contact-info {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(12, 40, 66, 0.04)
}

.map iframe {
  width: 100%;
  height: 300px;
  border: 0;
  border-radius: 10px;
  margin-top: 18px
}

/* FOOTER */
/* ===== Footer ===== */
/* ===== Footer ===== */
footer {
  background: #007BFF; /* deep navy blue */
  color: white;
  padding: 60px 20px 20px;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
}

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

.footer-about img {
  height: 150px;
  margin-bottom: 15px;
}

.footer-about p {
  color: white;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  color: #FFD700;
  margin-bottom: 15px;
  font-size: 18px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #FFD700;
}

.footer-contact p {
  margin: 8px 0;
  color: white;
}

.footer-contact i {
  color: #FFD700;
  margin-right: 8px;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: white;
}

.socials a {
  color: #ddd;
  margin: 0 10px;
  font-size: 16px;
  transition: 0.3s;
}

.socials a:hover {
  color: #FFD700;
}


.socials a {
  color: #ddd;
  margin: 0 10px;
  font-size: 16px;
  transition: 0.3s;
}

.socials a:hover {
  color: #FFD700;
}


/* UTILITIES */
.text-center {
  text-align: center
}

/* RESPONSIVE */
@media (max-width:980px) {
  .hero-inner {
    grid-template-columns: 1fr
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .two-col {
    grid-template-columns: 1fr
  }

  .contact-grid {
    grid-template-columns: 1fr
  }
}

@media (max-width:720px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 68px;
    right: 18px;
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08)
  }

  .main-nav.open {
    display: flex
  }

  .mobile-toggle {
    display: block
  }

  .features-grid {
    grid-template-columns: 1fr
  }

  .top-right {
    display: none
  }

  .cta-band .container {
    flex-direction: column;
    gap: 12px;
    align-items: center
  }
}


/* ===== General ===== */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #ffffff;
  color: #333;
}

/* ===== Hero ===== */
.hero {
  background: linear-gradient(to right, #007BFF, #00CFFF);
  color: #fff;
  text-align: center;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.hero span {
  color: #ffeb3b;
}

.hero p {
  font-size: 1.1rem;
  margin-top: 10px;
}

/* ===== About Section ===== */
.about {
  padding: 60px 20px;
  text-align: center;
}

.about h2 {
  color: #007BFF;
  font-size: 2rem;
  margin-bottom: 15px;
}


.socials a {
  color: #fff;
  font-size: 18px;
  margin: 0 8px;
  transition: 0.3s;
}

.socials a:hover {
  color: #ffeb3b;
}

/* ################# */
/* =========================
   Projects Page Styles
========================= */

.projects-hero{
  padding: 70px 0;
  background: radial-gradient(circle at top left, rgba(0,120,255,0.12), transparent 55%),
              radial-gradient(circle at bottom right, rgba(0,200,120,0.10), transparent 55%);
}

.projects-hero-inner{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.projects-hero-text h1{
  font-size: 44px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.projects-hero-text h1 span{
  color: #0078ff;
}

.projects-hero-text p{
  max-width: 620px;
  opacity: 0.9;
}

.projects-hero-badges{
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge{
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(0,0,0,0.08);
  backdrop-filter: blur(8px);
  font-size: 14px;
}

.projects-hero-card{
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  backdrop-filter: blur(10px);
}

.stat{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 12px 10px;
  border-radius: 12px;
  background: rgba(0,0,0,0.03);
  margin-bottom: 10px;
}

.stat-num{
  font-size: 26px;
  font-weight: 800;
}

.stat-label{
  opacity: 0.8;
  font-size: 14px;
}

.hero-cta{
  display: block;
  text-align: center;
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #0078ff;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.hero-cta:hover{ opacity: 0.92; }

.projects-section{
  padding: 70px 0;
}

.projects-toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 26px 0 18px;
  flex-wrap: wrap;
}

.filters{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-btn{
  border: 1px solid rgba(0,0,0,0.12);
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: 0.2s ease;
}

.filter-btn.active,
.filter-btn:hover{
  background: #0078ff;
  color: #fff;
  border-color: #0078ff;
}

.searchbox{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  min-width: 260px;
}

.searchbox input{
  border: none;
  outline: none;
  width: 100%;
}

.projects-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.project-card{
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.project-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.10);
}

.project-thumb{
  position: relative;
  height: 190px;
  overflow: hidden;
}

.project-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: 0.35s ease;
}

.project-card:hover .project-thumb img{
  transform: scale(1.12);
}

.project-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 55%);
  opacity: 0;
  transition: 0.25s ease;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
}

.project-card:hover .project-overlay{ opacity: 1; }

.project-view-btn{
  border: none;
  background: #0078ff;
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.project-body{
  padding: 16px;
}

.project-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.project-top h3{
  font-size: 18px;
  margin: 0;
}

.chip{
  font-size: 12px;
  font-weight: 800;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,120,255,0.12);
  color: #0078ff;
}

.project-body p{
  opacity: 0.88;
  margin: 0 0 12px;
  font-size: 14px;
}

.project-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.project-tags span{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
}

.project-actions{
  display: flex;
  gap: 10px;
}

.mini-btn{
  flex: 1;
  display: inline-block;
  text-align: center;
  padding: 10px 12px;
  border-radius: 12px;
  background: #0078ff;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid #0078ff;
}

.mini-btn:hover{ opacity: 0.92; }

.mini-btn.outline{
  background: transparent;
  color: #0078ff;
}

.projects-cta{
  padding: 55px 0;
  background: #0b1220;
  color: #fff;
}

.projects-cta-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.projects-cta h2{ margin: 0 0 6px; }

.cta-btn{
  padding: 12px 16px;
  border-radius: 12px;
  background: #0078ff;
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

/* Modal */
.project-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
  z-index: 9999;
}

.project-modal.open{ display: flex; }

.modal-content{
  width: min(640px, 100%);
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  position: relative;
}

.modal-content h3{ margin-top: 0; }

.modal-close{
  position: absolute;
  right: 10px;
  top: 10px;
  border: none;
  background: rgba(0,0,0,0.06);
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 22px;
}

/* Responsive */
@media (max-width: 980px){
  .projects-hero-inner{ grid-template-columns: 1fr; }
  .projects-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px){
  .projects-grid{ grid-template-columns: 1fr; }
  .projects-hero-text h1{ font-size: 34px; }
}