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

body {
  font-family: Arial, sans-serif;
}

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

/* Navbar Styles */
.navbar {
  background-color: white;
  color: black;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
}

/* Hamburger Menu */
/* Navigation links (desktop) */
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

/* Show menu when active */
.nav-links.active {
    display: flex;
}

/* Hamburger animation (optional) */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
}

/* Hamburger bars */
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: #000;
  transition: all 0.3s ease;
}


.nav-links a {
  font-size: 1rem;
  color: black;
  transition: color 0.3s;
}

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

/* Contact Us Button */
.contact-btn {
  background-color:  #e1cb84;
  color: white;
  padding: 12px 15px;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s, color 0.3s;
}

#contact-btn {
	color: white;
}

.contact-btn:hover {
  background-color:  #cda932;
}

/* Mobile Styles */
@media screen and (max-width: 768px) {
 .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* Hide menu by default */
  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    display: none;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  /* Show menu when active */
  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 20px;
    display: block;
    color: black;
  }
}

/* General Styles */


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

h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: black;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: black;
}

.core-values-text {
	color: white;
}
/* About Section Styles */
.about-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.about-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

/* Left Column */
.about-text {
  flex: 1;
  max-width: 600px;
}

/* Right Column: Image */
.about-image {
  flex: 1;
  max-width: 400px;
}

.rounded-image {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .about-row {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    max-width: 100%;
  }
}

/* Core Values Section */
.core-values-section {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.core-values-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: stretch;
}

/* Individual Column Styling */
.core-value {
  flex: 1;
  padding: 20px;
  border-radius: 15px;
  color: white;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Column Hover Effect */
.core-value:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Color Themes */
.vision {
  background-color: #00274d; /* Dark Blue */
}

.mission {
  background-color: #cda932; /* Pink Hue */
}

.ethics {
  background-color: #80d4ff; /* Light Blue */
}

/* Headings and Paragraphs */
.core-value h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.core-value p {
  font-size: 1rem;
  line-height: 1.6;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .core-values-row {
    flex-direction: column;
  }
}

.services-section {
	margin: 0px 15px;
}

/* Services Header */
.services-header {
  text-align: center;
  font-weight: bold;
  font-size: 2rem; /* Adjust the size as needed */
  margin-bottom: 30px; /* Adds space between header and the list of services */
}

/* Services Section */
.services-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* Individual Service */
.service {
  flex: 1;
  min-width: 200px; /* Adjust to control the minimum width of each service box */
  max-width: 23%; /* Ensure the service boxes fit evenly within the container */
  position: relative;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.service-text {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  padding: 10px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for text */
  color: white;
}

.service-text h3 {
  font-size: 1.25rem; /* Adjust size as needed */
  margin: 0;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .services-list {
    flex-direction: column;
    align-items: center;
  }

  .service {
    max-width: 100%;
  }
}

/* Contact Us Section */
/* Contact Us Section */
.contact-us-section {
  padding: 40px 20px;
  background-color: #f4f4f4;
  text-align: center;
}

.contact-header {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #333;
}

/* Contact Form Layout */
.contact-form {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.form-column {
  flex: 1;
  min-width: 200px;
}

/* Input and Textarea Styling */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

textarea {
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #007bff;
  outline: none;
}

/* Submit Button Styling */
.submit-button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 10px;
}

.submit-button:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .form-row {
    flex-direction: column;
    gap: 20px;
  }
}

/* Careers Section */
.careers-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.careers-header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

.job-advertisement {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.job-advertisement h3 {
  font-size: 1.5rem;
  color: #007bff;
  margin-bottom: 15px;
}

.job-advertisement p {
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
}

.job-advertisement ul {
  margin: 10px 0;
  padding-left: 20px;
}

.job-advertisement ul li {
  margin: 5px 0;
}

.download-link {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #007bff;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  animation: pulseBlink 1.5s infinite;
}

@keyframes pulseBlink {
    0% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7);
    }
    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 10px rgba(211, 47, 47, 0);
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(211, 47, 47, 0);
    }
}

.download-link:hover {
  background-color: #0056b3;
}

/* Clients Section */
.clients-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.clients-header {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #333;
}

/* Grid for Clients */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
  justify-items: center;
}

/* Individual Client Cards */
.client {
  background-color: #fff;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.client:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.client img {
  max-height: 250px;
  width: auto;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}


/* Footer Section */
.footer {
  padding: 20px 0;
  background-color: #80d4ff; /* Light blue hue */
  text-align: center;
  color: white;
}

.footer-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px;
}

.footer-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-icon img {
  width: 40px;
  height: 40px;
  margin-bottom: 5px;
}

.footer-icon p {
  font-size: 1rem;
  margin: 0;
}

footer p {
  font-size: 1rem;
  color: white ;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .footer-icons {
    flex-direction: column;
    align-items: center;
  }
  .clients-grid {
    grid-template-columns: 1fr; /* one client per row */
    gap: 20px;
  }

  .client img {
    max-width: 100%;
    height: auto;
  }
}
