/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header */
.site-header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 40px;
}

.main-nav ul {
  position: relative;
  padding-bottom: 2px;
  padding-right: 500px;
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.main-nav a {
  padding-right: 10px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.main-nav a:hover {
  color: #007bff;
}

.header-actions .btn {
  margin-left: 1rem;
  padding: 0.7rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-primary {
  background-color: #00b386;
  color: white;
}

.btn-primary:hover {
  background-color: #009e74;
}


/* Hero Section */
.hero {
  position: relative;
  background-image: linear-gradient(87deg,#13405e,transparent), url('bg.png');
  background-size: cover;
  background-position: center;
  height: 115vh;
  display: flex;
  align-items: center;
  color: white;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-content {
  position: absolute;
  z-index: 2;
  max-width: 600px;
  padding: 0 100px;
  padding-bottom: 150px;
  text-align: left;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero .btn-primary {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-primary:hover {
  background-color: #009e74;
}

/* Work Scope */
.work-scope-section {
  position: relative;
  background-color: #003049;
  margin-top: -160px;
  padding: 2rem 0;
  color: #ffffff;
}

.work-scope {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: center;
  padding: 0 1rem;
}

.work-item {
  flex: 1 1 200px;
  max-width: 300px;
}

.work-item h4 {
  text-decoration: underline;
  text-decoration-color: #00b386;
  text-decoration-thickness: 2px;
  text-underline-offset: 7px;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.work-item h5 {
  text-underline-offset: 7px;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.work-item p {
  padding: 0.5rem;
  /*text-align: justify;*/
  font-size: 0.95rem;
  color: #caf0f8;
}

/* Partners Section */
.partners-section {
  padding: 4rem 1rem;
  background-color: #f5f5f5;
  text-align: center;
}

.partners-section h2 {
  font-size: 1.8rem;
  color: #0077b6;
  margin-top: 1rem;
  margin-bottom: 5rem;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 4rem;
}

.partners-logos img {
  height: 60px; 
  width: auto; 
  object-fit: contain;
  display: block;
  max-width: 120px;
  margin: 0 auto;
  max-height: 50px;
  transition: transform 0.3s ease;
}

.partners-logos img:hover {
  transform: scale(1.05);
}

/* Roles Section */
.roles-section {
  background-color: #0b3954;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 32px;
  margin-top: -10px;
  margin-bottom: 30px;
  font-weight: bold;
}

.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 40px;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.role-item {
  border-bottom: 1px solid #4c6e89;
  padding: 12px 8px;
  font-weight: 600;
  position: relative;
}

.role-item i {
  float: right;
  color: #00b4d8;
  font-size: 14px;
  margin-top: 4px;
}

.center-button {
  margin-top: 40px;
}

.btn {
  background-color: #2bb673;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #249c5d;
}

/* Job Categories Section */
.job-categories {
  background: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 2px;
}

.job-categories h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0077b6;
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.category-card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}

.category-card:hover {
  transform: translateY(-5px);
}

.category-card i {
  background: #0077b6;
  color: white;
  padding: 12px;
  font-size: 1.5rem;
  border-radius: 8px;
}

.category-card h3 {
  margin: 0;
  color: #2b5874;
  font-size: 1.1rem;
}

/* Process Section */
.process-section {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #fff;
}

.process-section h2 {
  font-size: 2.2rem;
  color: #0077b6;
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.step {
  flex: 1 1 250px;
  max-width: 300px;
}

.arrow {
  font-size: 3rem;
  color: #8d99ae;
}

.step .icon {
  font-size: 3rem;
  color: #001d3d;
  margin-bottom: 1rem;
}

.step h3 {
  color: #2b5874;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.95rem;
  color: #333;
}

.process-cta {
  margin-top: 2.5rem;
}

.hire-btn {
  background-color: #2bb673;
  color: white;
  font-size: 1rem;
  padding: 0.8rem 2rem;
  margin-top: 2.5rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* feedback Section */
.testimonials {
  background-color: #0b3954;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 65px;
}

.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial-card {
  background: white;
  color: #000;
  padding: 20px;
  border-radius: 10px;
  max-width: 320px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.client-photo {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
  border: 2px solid #0077b6;
}

.client-profile {
  font-weight: 600;
  margin-bottom: 15px;
  color: #03045e;
}

.client-profile span {
  font-weight: normal;
  color: #333;
  font-size: 0.9rem;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 20px;
}

.read-more {
  font-weight: bold;
  color: #2ca58d;
  text-decoration: none;
}

.read-more i {
  margin-left: 6px;
}

/* stats Section */
.highlights-section {
  padding: 4rem 2rem;
  background: #fff;
  text-align: center;
}

.highlights-section h2 {
  font-size: 2rem;
  color: #0077b6;
  margin-bottom: 0.5rem;
}

.highlights-section .subheading {
  color: #555;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.stat-box {
  background-color: #f9f9f9;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.03);
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-box .icon {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.7rem;
}

.stat-info h3 {
  color: #001d3d;
  font-size: 1.8rem;
  margin: 0.3rem 0;
}

.stat-info p {
  color: #3365ba;
  font-size: 1rem;
  margin: 0;
  font-weight: 600;
}

.mt-2 {
  margin-top: 1rem;
}

/* Call To Action Section */
.cta-section {
  background-color: #e6f1f7;
  padding: 3rem 1rem;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  margin-top: -2rem;
}

.cta-section p {
  color: #444;
  margin-bottom: 1.5rem;
}

.cta-buttons a {
  color: 2bb6;
  display: inline-block;
  margin: 0 0.5rem;
  padding: 0.75rem 1.5rem;
}

.btn-primary {
  background-color: #00b386; /* Change this to your desired color */
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 5px; /* This makes the edges fully round */
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn-primary:hover {
  background-color: #149e76; /* Optional: darker shade on hover */
}

/* Footer */
.footer {
  background-color: #0d3c58;
  color: #fff;
  padding: 1rem 1rem 2rem;
  font-size: 0.95rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  align-items: flex-start;
}

.footer-logo {
  max-width: 100px;
  margin-bottom: 1rem;
}

.footer-col h4 {
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: 1.1rem;
}

.footer-col p {
  color: #ccc;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-links a i {
  margin-right: 0.5rem;
}

.footer-links a:hover {
  color: #fff;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.newsletter-form input {
  flex: 1;
  padding: 0.6rem;
  border: none;
  border-radius: 4px;
}

.newsletter-form button {
  background-color: #1ab188;
  border: none;
  padding: 0.6rem 1rem;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1rem;
}

.footer-bottom-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #ccc;
}

.legal-links a {
  margin-right: 1rem;
  color: #ccc;
  text-decoration: none;
}

.legal-links a:hover {
  text-decoration: underline;
}




/* Responsive Adjustments */
@media (max-width: 768px) {

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .work-scope {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    padding: 2rem 1rem;
    justify-content: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .process-steps {
    flex-direction: column;
  }

  .arrow {
    transform: rotate(90deg);
  }
}
