/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fbfd;
  color: #0A1D44;
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.top-bar {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
}
.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.logo {
  height: 20%;
  width: 20%;
}
.social-icons {
  display: flex;
  gap: 15px;
}
.social-icons a {
  color: #F97316;
  font-size: 1.2rem;
  transition: color 0.3s;
}
.social-icons a:hover {
  color: #0A1D44;
}

/* Navbar */
.main-nav {
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}
.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-menu {
  display: flex;
  list-style: none;
  padding: 15px 0;
  gap: 25px;
}
.nav-menu li {
  position: relative;
}
.nav-menu a {
  color: #0A1D44;
  font-weight: 600;
  padding: 8px 12px;
  transition: all 0.3s ease;
}
.nav-menu a:hover,
.nav-menu a.active {
  border-bottom: 2px solid #F97316;
  color: #F97316;
}

/* Dropdown */
.nav-menu li.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;                     /* Hidden by default */
  position: absolute;
  top: 100%;                         /* Directly below parent */
  left: 0;
  background: #ffffff;
  border-radius: 6px;
  padding: 20px;
  min-width: 300px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  pointer-events: auto;
}

/* Show dropdown on hover or focus */
.nav-menu li.dropdown:hover > .dropdown-content,
.nav-menu li.dropdown:focus-within > .dropdown-content {
  display: grid;
}

.dropdown-content li {
  padding: 0;
}
.dropdown-content li a {
  font-weight: 600;
  color: #0A1D44;
  text-align: center;
  display: block;
  padding: 10px;
  border-radius: 4px;
  transition: background 0.3s;
}
.dropdown-content li a:hover {
  background-color: #FFF4EF;
  color: #F97316;
}

.hero-slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-content {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: #ffffff;
  max-width: 600px;
}
.slide-content h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.slide-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.cta-btn {
  background: #F97316;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s;
}
.cta-btn:hover {
  background: #c3560f;
}

/* Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 30px;
  z-index: 2;
}
.slider-nav span {
  font-size: 2rem;
  color: white;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
}
.slider-nav span:hover {
  color: #F97316;
}


/* Info Cards Section */
.info-section {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 60px 0;
  flex-wrap: wrap;
}

/* Each Card */
.info-card {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  flex: 1 1 30%;
  padding: 40px 25px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.info-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-5px);
}

/* Updated image size */
.info-card img.info-icon {
  width: 90px;
  height: auto;
  margin-bottom: 20px;
}

/* Heading */
.info-card h3 {
  color: #0A1D44;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Paragraph */
.info-card p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Button */
.info-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 24px;
  background-color: #F97316;
  color: #ffffff;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.3s ease;
}
.info-btn:hover {
  background-color: #c3560f;
}

/* Responsive layout */
@media (max-width: 900px) {
  .info-card {
    flex: 1 1 100%;
    padding: 30px 20px;
  }
  .info-card img.info-icon {
    width: 70px;
  }
}


/* Welcome Section */
/* Welcome Section */
.welcome-section {
  background: linear-gradient(135deg, #fef6f0, #f3f8ff);
  padding: 80px 20px;
  text-align: center;
  border-top: 2px solid #F97316;
  border-bottom: 2px solid #0A1D44;
}

.welcome-section .subheading {
  font-size: 1.1rem;
  color: #F97316;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.welcome-section h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0A1D44;
  margin-bottom: 20px;
}

.welcome-section .highlight {
  color: #F97316;
}

.welcome-section .lead-text {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.welcome-section p {
  font-size: 1rem;
  color: #555;
  max-width: 850px;
  margin: 0 auto;
  line-height: 1.6;
}


/* Services Section */
.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.services {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #0A1D44;
  margin-bottom: 50px;
  font-weight: 700;
}

.service-cards {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.service-card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
  flex: 1 1 30%;
  overflow: hidden;               /* Ensures image stays inside rounded corners */
  display: flex;
  flex-direction: column;
}


.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}



.service-card h3 {
  color: #0A1D44;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 15px;
}

/* Smaller, Neat Button */
.link-btn {
  align-self: center;
  padding: 6px 16px;
  font-size: 0.85rem;
  border-radius: 20px;
  background-color: #F97316;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
  border: none;
}

.link-btn:hover {
  background-color: #c3560f;
}


/* Split Section */
/* Section Layout */
.split-section {
  width: 100%;
  background-color: #fff;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.container-split {
  display: flex;
  flex-wrap: nowrap;
  min-height: 400px;
  position: relative;
}

/* Left Side - White */
.split-left {
  flex: 1 1 50%;
  padding: 80px 60px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.split-left h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0A1D44;
  margin-bottom: 20px;
}

.split-left .highlight-text {
  color: #F97316;
}

.split-left p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  max-width: 90%;
}

/* Right Side - Orange with image */
.split-right {
  flex: 1 1 50%;
  position: relative;
  background-color: #F97316;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.right-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/bg-overlay.avif') no-repeat center center;
  background-size: cover;
  opacity: 0.15;
  z-index: 0;
}

/* White Card */
.white-card {
  position: relative;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  max-width: 550px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  z-index: 1;
  transform: translateX(-60px); /* Move card towards left */
}

.white-card h2 {
  color: #F97316;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 15px;
}

.white-card p {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .container-split {
    flex-direction: column;
  }

  .split-left,
  .split-right {
    flex: 1 1 100%;
    padding: 40px 20px;
  }

  .white-card {
    margin-top: 20px;
  }
}


/* About Section */
.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: #fff;
  text-align: center;
}

.page-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 29, 68, 0.4); /* navy overlay */
  z-index: 0;
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.banner-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
}

.breadcrumb {
  font-size: 1rem;
  margin-top: 10px;
  color: #eee;
}


/* Consulting service Section */
.consulting-section {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 20px;
  gap: 40px;
  background-color: #ffffff;
  justify-content: space-between;
}

.consulting-left,
.consulting-right {
  flex: 1 1 48%;
}

.consulting-left .icon-text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.consulting-left img {
  width: 150px;
  height: 150px;
}

.consulting-left h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A1D44;
  margin-bottom: 10px;
}

.consulting-left p {
  color: #444;
  line-height: 1.7;
  font-size: 1rem;
}

/* Right Column Cards */
.consulting-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 25px 20px;
  border: 1px dashed #e0e0e0;
  border-radius: 8px;
  margin-bottom: 25px;
  background-color: #fefefe;
}

.consulting-card img {
  width: 100px;
  height: 100px;
}

.consulting-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0A1D44;
  margin-bottom: 8px;
}

.consulting-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .consulting-section {
    flex-direction: column;
  }

  .consulting-left,
  .consulting-right {
    flex: 1 1 100%;
  }

  .consulting-left .icon-text,
  .consulting-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .consulting-left h2 {
    text-align: center;
  }
}


.pm-section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.pm-flex {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}

.pm-icon {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.pm-flex h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A1D44;
  margin-bottom: 10px;
}

.pm-flex p {
  font-size: 1rem;
  color: #555;
  max-width: 1000px;
}

.pm-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 30px;
  gap: 20px;
}

.pm-grid ul {
  list-style: none;
  padding: 0;
  flex: 1 1 45%;
}

.pm-grid li {
  font-size: 1rem;
  color: #0A1D44;
  margin-bottom: 10px;
}

.pm-grid li i {
  color: #F97316;
  margin-right: 10px;
}

.pm-conclusion {
  font-size: 1rem;
  color: #555;
  max-width: 1100px;
}


.corporate-section {
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333;
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
}

.corporate-flex {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-bottom: 30px;
}

.corporate-icon {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.corporate-flex h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0A1D44;
  margin-bottom: 10px;
}

.corporate-flex p {
  font-size: 1rem;
  color: #555;
  max-width: 1000px;
  margin-bottom: 15px;
}

.corporate-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.corporate-grid ul {
  list-style: none;
  padding: 0;
  flex: 1 1 45%;
}

.corporate-grid li {
  font-size: 1rem;
  color: #0A1D44;
  margin-bottom: 10px;
}

.corporate-grid li i {
  color: #F97316;
  margin-right: 10px;
}



/* Careers Banner */
.careers-banner {
  background-color: #f9f9f9;
  padding: 40px 0;
  border-bottom: 1px solid #eee;
}

.careers-header {
  display: flex;
  align-items: center;
  gap: 25px;
}

.careers-icon {
  width: 60px;
  height: 60px;
}

.careers-header h2 {
  color: #0A1D44;
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 5px;
}

.careers-header p {
  color: #555;
  font-size: 1rem;
  margin: 0;
}

/* Job Openings */
.openings {
  padding: 40px 0;
}

.section-subtitle {
  font-size: 1.8rem;
  color: #0A1D44;
  margin-bottom: 30px;
}

.job-card {
  background-color: #fafafa;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  transition: box-shadow 0.3s;
}

.job-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.job-card h4 a {
  color: #F97316;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
}

.job-card h4 a:hover {
  text-decoration: underline;
}

.job-card p {
  margin: 5px 0;
  font-size: 1rem;
}

.career-contact {
  margin-top: 30px;
  font-size: 1rem;
  color: #333;
  text-align: center;
}

.career-contact a {
  color: #F97316;
  font-weight: 600;
  text-decoration: none;
}

.career-contact a:hover {
  text-decoration: underline;
}


.contact-section {
  padding: 60px 20px;
  background: #ffffff;
}

.contact-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.contact-form-container,
.contact-info {
  flex: 1 1 48%;
}

.contact-form-container h2,
.contact-info h2 {
  color: #0A1D44;
  margin-bottom: 15px;
  font-size: 1.8rem;
}

.contact-form-container p,
.contact-info p {
  color: #333;
  font-size: 1rem;
  margin-bottom: 10px;
}

form#contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input {
  flex: 1;
}

input, textarea {
  width: 100%;
  padding: 12px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #f9f9f9;
}

textarea {
  resize: vertical;
}

button[type="submit"] {
  background-color: #F97316;
  color: #fff;
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  width: 180px;
}

button[type="submit"]:hover {
  background-color: #ca5d15;
}

.status-message {
  font-size: 0.9rem;
  color: green;
  font-weight: 500;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  font-size: 1.2rem;
  color: #0A1D44;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #F97316;
}

@media (max-width: 768px) {
  .contact-flex {
    flex-direction: column;
  }
}


.career-section {
      max-width: 1000px;
      margin: 0 auto;
      background: #fff;
      padding: 30px 40px;
      border-radius: 12px;
      box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
    }
    .career-section h1 {
      color: #0A1D44;
      font-size: 2rem;
      margin-bottom: 10px;
    }
    .career-section p.lead {
      color: #555;
      margin-bottom: 25px;
    }
    .job-title {
      color: #F97316;
      font-weight: 700;
      font-size: 1.2rem;
    }
    .job-detail {
      margin-bottom: 12px;
    }
    .highlight {
      font-weight: bold;
      color: #0A1D44;
    }
    ul.skills {
      list-style: none;
      padding: 0;
    }
    ul.skills li::before {
      content: "✔";
      margin-right: 10px;
      color: #F97316;
    }
    .why-join {
      margin-top: 30px;
      padding: 20px;
      background-color: #f3f4f6;
      border-left: 5px solid #F97316;
      border-radius: 8px;
    }
    .why-join h3 {
      color: #0A1D44;
      margin-bottom: 10px;
    }


/* Footer */
.footer {
  background-color: #ffffff;
  padding: 60px 0 20px;
  border-top: 3px solid #F97316;
  margin-top: 60px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-col {
  flex: 1 1 30%;
}
.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  color: #0A1D44;
}
.footer-col p,
.footer-col li {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 8px;
}
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #777;
}

/* Responsive */
@media (max-width: 900px) {
  .info-section, .service-cards, .footer-grid {
    flex-direction: column;
    align-items: center;
  }
  .info-card, .service-card, .footer-col {
    width: 90%;
  }
  .hero-content h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}
