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

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

a {
  text-decoration: none;
  color: inherit;
}

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

/* ================= NAVIGATION ================= */
header {
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  background: #08203a;
  color: white;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 20px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #f26b21;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* ================= HERO ================= */
.hero {
 background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
            url('../img/Hero.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 18px;
  margin-bottom: 25px;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: #f26b21;
  color: white;
  border-radius: 4px;
  transition: 0.3s;
}

.btn:hover {
  background: #d95a17;
}

.btn-outline {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  border: 2px solid #0d2c54;
  color: #0d2c54;
  border-radius: 4px;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #0d2c54;
  color: white;
}

/* ================= SECTIONS ================= */
.section {
  padding: 60px 0;
}

.section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0d2c54;
}

/* ================= ABOUT GRID ================= */
.page-hero {
  background: linear-gradient(rgba(13,44,84,0.8), rgba(13,44,84,0.8)),
              url('../img/about-hero.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.page-hero h1 {
  font-size: 40px;
  margin-bottom: 15px;
}

.page-hero p {
  font-size: 18px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  width: 100%;
  border-radius: 8px;
}

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

.card {
  background: #f8f9fa;
  padding: 25px;
  border-left: 5px solid #f26b21;
  border-radius: 6px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 6px;
  margin-bottom: 15px;
}

.card h3 {
  margin-bottom: 15px;
  color: #0d2c54;
}

/* ================= CTA ================= */
.cta {
  background: #0d2c54;
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 80px;
}

/* ================= FOOTER ================= */
footer {
  background: linear-gradient(135deg, #0d2c54, #081a30);
  color: #ddd;
  padding: 50px 0 0 0;
  margin-top: 40px;
}

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

footer h3, footer h4 {
  color: white;
  margin-bottom: 15px;
}

footer ul {
  list-style: none;
}

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

footer ul li a {
  color: #ddd;
  transition: 0.3s;
}

footer ul li a:hover {
  color: #f26b21;
}

.footer-bottom {
  background: #000;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* ================= ANIMATIONS ================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: 0.8s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* ================= RESPONSIVE ================= */
@media(max-width: 768px) {

  .nav-links {
    position: absolute;
    right: 0;
    top: 60px;
    background: #0d2c54;
    flex-direction: column;
    width: 220px;
    display: none;
    padding: 20px;
  }

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

  .menu-toggle {
    display: block;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 32px;
  }
}
@media(max-width:768px){
  .brand-name {
    font-size: 14px;
  }

  .brand-sub {
    font-size: 10px;
  }
}

/* ================= VISION SECTION ================= */
.page-hero-commit {
  background: linear-gradient(rgba(13,44,84,0.8), rgba(13,44,84,0.8)),
              url('../img/commit-hero.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: white;
}
.vision-section {
  background: #0d2c54;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.vision-section h2 {
  margin-bottom: 20px;
}

.vision-section p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
}

/* ================= SERVICE BLOCK ================= */
.page-hero-service {
  background: linear-gradient(rgba(13,44,84,0.8), rgba(13,44,84,0.8)),
              url('../img/service-hero.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 80px;
}

.service-block.reverse {
  direction: rtl;
}

.service-block.reverse .service-content {
  direction: ltr;
}

.service-image img {
  width: 100%;
  border-radius: 8px;
}

.service-content p {
  margin: 15px 0;
}

.service-details {
  display: none;
  margin-top: 15px;
  padding-left: 20px;
}

.read-more-btn {
  background: #f26b21;
  color: white;
  border: none;
  padding: 8px 18px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 10px;
}

.read-more-btn:hover {
  background: #d95a17;
}

/* MOBILE */
@media(max-width: 768px){
  .service-block {
    grid-template-columns: 1fr;
  }

  .service-block.reverse {
    direction: ltr;
  }
}


/* ================= CONTACT GRID ================= */
.page-hero-contact {
  background: linear-gradient(rgba(13,44,84,0.8), rgba(13,44,84,0.8)),
              url('../img/contact-hero.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: white;
}

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

.contact-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 8px;
  text-align: center;
  transition: 0.3s;
  border-top: 4px solid #0d2c54;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-icon {
  font-size: 35px;
  margin-bottom: 15px;
}

.contact-card h3 {
  margin-bottom: 10px;
  color: #0d2c54;
}

/* ================= CONTACT CTA ================= */
.contact-cta {
  background: #0d2c54;
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.contact-cta h2 {
  margin-bottom: 15px;
}

.contact-closing {
  background: #f8f9fa;
  text-align: center;
  font-weight: bold;
  padding: 40px 20px;
  color: #0d2c54;
}



/* ================= HEADER LOGO ================= */
.logo img {
  height: 45px;
  width: auto;
  display: block;
}

/* ================= FOOTER LOGO ================= */
.footer-logo img {
  height: 55px;
  margin-bottom: 15px;
}

.footer-logo p {
  max-width: 250px;
}

/* ================= LOGO WRAPPER ================= */
.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 45px;
  width: auto;
}

/* Brand Text */
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  color: white;
  font-weight: 600;
  font-size: 16px;
}

.brand-sub {
  color: #f26b21;
  font-size: 12px;
  letter-spacing: 1px;
}

/* ================= FOOTER BRAND ================= */
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-brand img {
  height: 50px;
  width: auto;
}

.footer-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.footer-name {
  font-weight: 600;
  font-size: 16px;
  color: white;
}

.footer-sub {
  font-size: 12px;
  color: #f26b21;
  letter-spacing: 1px;
}

.footer-tagline {
  color: #ccc;
  max-width: 300px;
  font-size: 14px;
}
