@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Roboto:wght@400&display=swap");

body {
  font-family: "Arial", sans-serif;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: blue;
}

h1,
h2,
h3 {
  font-family: "Montserrat", sans-serif; /* Heading font */
  font-weight: bold; /* Bold for headings */
  color: #003366; /* Dark blue color for headings */
}

.navbar-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #ffffff; // Deep blue background
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* border:1px solid black */
}

.navbar-header.scrolled {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  background-color: #ffffff; /* color: #ffffff; Text color when scrolled */
}

.navbar-header.scrolled a {
  color: #ffffff; //Text color when scrolled
}

.title-container {
  text-align: center;
  margin-top: 50px;
}

.animated-title {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.logo img {
  width: 20vw;
  height: auto; /* Ensure the logo maintains its aspect ratio */
}

.nav-links {
  padding: 10px;
  margin: auto;
  margin: 0;
  list-style: none;
  display: flex;
  /* border:1px solid black; */
  color: #003366;
  /* background-color: #003366; */
  /* width:50%; */
  /* height:50px; */
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  font-size: 1.3rem;
  font-weight: 600;
  padding: 0.8rem;
  text-decoration: none;
  color: #003366; /* Default color */
  transition: background-color 0.3s, color 0.3s ease;
}

.nav-links a:hover {
  background-color: #0044cc; /* Lighter blue on hover */
  color: white;
  border-radius: 10px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.bar {
  height: 3px;
  width: 25px;
  background-color: #7983ce;
  margin: 4px 0;
}

/* .hero {
    background: url("Images/rk.jpeg") no-repeat center center/cover;
    color: white;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  } */
.hero-carousel {
  box-sizing: border-box;
  border-radius: 10px;
  height: 85vh;
  overflow: hidden;
  margin: 10px 10px;
}

.hero-carousel img {
  width: 100%;
  height: 85vh;
}

.hero-carousel h2 {
  color: white;
}

.hero-carousel p {
  color: white;
}

.cta-button {
  background-color: #ff6600;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}
.welcome-section {
  /* border: 1px solid black; */
  margin: 50px 0px;
}

.welcome-section h1 {
  text-align: center;
  font-weight: 700;
  margin-top: 15px;
  color: #004080;
}
.welcome {
  /* border: 1px solid black; */
  border-radius: 10px; /* Slightly rounded corners */

  background-color: #f8f9fa; /* Light background color  for dark grey:-#cac9d1 */
  padding: 50px 20px; /* Top and bottom padding, side padding */
  text-align: center; /* Center the text */
  margin: 30px 0; /*Margin between sections */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

.welcome-content {
  max-width: 800px; /* Limit the width for better readability */
  margin: auto; /* Center align the content */
  /* margin-top: 10px; */
}

.welcome h1 {
  font-size: 2.5rem; /* Large font size for the heading */
  color: #343a40; /* Dark text color */
  margin-bottom: 20px; /* Space below the heading */
}

.welcome p {
  font-size: 1.2rem; /* Slightly larger than normal text */
  color: #6c757d; /* Medium gray color for the paragraph */
  line-height: 1.6; /* Improved line spacing for readability */
  margin: 10px 0; /* Margin between paragraphs */
}

.services,
.why-choose-us,
.process,
.industries,
.contact {
  margin-top: 30px;
  padding: 2rem;
  text-align: center;
}

.services h2 {
  text-align: center;
  font-weight: 700;
  /* margin-top: 15px; */
  color: #004080;
}

.service-items {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  overflow: hidden;
}

.service-item {
  width: 20%;
  margin: 1rem;
  /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
}

.service-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.why-choose-us {
  background-color: #f4f4f4; /* Light background */
  padding: 2rem; /* Space around the section */
  text-align: center; /* Center the text */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

.why-choose-us h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #004080; /* Dark blue color for the heading */
}

.benefits {
  display: flex; /* Flexbox for layout */
  flex-wrap: wrap; /* Allow items to wrap */
  justify-content: center; /* Center items */
}

.benefit {
  background-color: white; /* White background for each benefit */
  border-radius: 8px; /* Rounded corners for each benefit */
  padding: 1.5rem; /* Space inside each benefit box */
  margin: 1rem; /* Space around each benefit */
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
  width: 300px; /* Fixed width */
  transition: transform 0.3s; /* Smooth transform effect */
}

.benefit:hover {
  transform: translateY(-5px); /* Lift effect on hover */
}

.benefit h3 {
  color: #004080; /* Dark blue color for subheadings */
  font-size: 25px;
  margin-bottom: 0.9rem; /* Space below subheading */
}

.benefit p {
  color: #333; /* Dark gray for paragraph text */
  margin-top: 7px;
}

.contact {
  background-color: #004080; /* Light gray background for contrast */
  padding: 2rem; /* Space around the section */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  text-align: center; /* Centered text */
  margin: 1rem 0; /* Margin above and below the section */
  color: white;
}

.contact h2 {
  font-size: 2rem; /* Larger font size for the heading */
  /* color: #004080; Dark blue color for the heading */
  margin-bottom: 1rem; /* Space below the heading */
}

.contact p {
  font-size: 1.1rem; /* Slightly larger font for paragraphs */
  /* color: #333; Dark gray for better readability */
  margin: 0.5rem 0; /* Space above and below each paragraph */
}

.contact p a {
  /* color:#004080 */
}

.contact a {
  /* color: white; Link color to match the theme */
  text-decoration: none; /* Remove underline from links */
  font-weight: bold; /* Make links stand out */
}

.contact a:hover {
  text-decoration: underline; /* Underline on hover for better UX */
}

.contact-button {
  color: white;
  display: inline-block; /* Make button behave as a block for padding */
  padding: 0.75rem 1.5rem; /* Space inside the button */
  background-color: #004080;

  border-radius: 5px; /* Rounded corners for the button */
  margin-top: 1rem; /* Space above the button */
  transition: background-color 0.3s; /* Smooth transition for hover effect */
}

.contact-button:hover {
  /* color: white; */
  background-color: #003366; /*Darker shade on hover */
}

.process {
  margin-top: 30px;
  text-align: center;
}

.process h2 {
  color: #004080; /* Heading color */
  margin-bottom: 20px; /* Space below the heading */
}

.process-items {
  /* display: flex;
      flex-wrap: wrap;
      justify-content: space-around;  */
}

.process-item {
  display: flex; /* Flex layout for each item */
  align-items: center; /* Center items vertically */
  margin: 20px; /* Space around each process item */
  background-color: #f4f4f4; /* Light gray background for contrast */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  overflow: hidden; /* Clip overflow */
  width: 100%; /* Width for each item */
}

.process-item img {
  width: 50%; /* Image takes half the width */
  height: auto; /* Maintain aspect ratio */
}

.process-detail {
  width: 50%;
  padding: 20px; /* Space inside detail section */
  text-align: left; /* Align text to the left */
}

.process-detail h3 {
  text-align: center;
  color: #004080; /* Color for subheadings */
  margin: 0; /* Remove default margin */
}

.process-detail p {
  line-height: 2;
  margin: 25px 0px;
  color: #333; /* Dark gray for better readability */
}

.industries {
  background: url("./Images/test.jpg");

  /* background-color: #f9f9f9; */
  padding: 3rem; /* Space around the section */
  border-radius: 10px; /* Rounded corners */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
  text-align: center; /* Centered text */
  margin: 2rem 0; /* Margin above and below the section */
  transition: 0.5s ease-in-out;
}

.industries h2 {
  text-transform: uppercase;
  font-size: 2rem; /* Larger font size for the heading */
  color: white; /* Dark blue color for the heading */
  margin-bottom: 1rem; /* Space below the heading */
}

.industry-list {
  margin-top: 5rem;
  display: flex; /* Flexbox for layout */
  justify-content: space-around; /* Space items evenly */
  flex-wrap: wrap; /* Allow items to wrap */
}

.industry-item {
  background-color: white; /* White background for each industry */
  border-radius: 8px; /* Rounded corners for each item */
  padding: 1.5rem; /* Space inside each item */
  margin: 1rem; /* Space around each item */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Slight shadow for depth */
  width: 180px; /* Fixed width */
  transition: transform 0.3s; /* Smooth transform effect */
}

.industry-item img {
  width: 60px; /* Fixed size for icons */
  height: auto; /* Maintain aspect ratio */
  margin-bottom: 10px; /* Space below the icon */
}

.industry-item h3 {
  color: #004080; /* Dark blue color for subheadings */
  font-size: 1.5rem; /* Font size for subheadings */
}

.industry-item:hover {
  transform: translateY(-5px); /* Lift effect on hover */
}

.industries.aerospace {
  background: url("./Images/ap.jpg") no-repeat center center;
  background-size: cover;
}

.industries.automotive {
  background: url("./Images/rk.jpeg") no-repeat center center;
  background-size: cover;
}

.industries.medical {
  background: url("./Images/rk.jpg") no-repeat center center;
  background-size: cover;
}

/* ----------- */
.mission-section {
  display: flex;
  gap: 40px;
  align-items: center;
}
.mission-section img {
  max-width: 400px;
}
.mission-section p {
  max-width: 400px;
}

.values-card {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}
.values-card img {
  max-width: 300px;
}
.values-card h3 {
  text-decoration: underline;
}
.v-card {
  display: flex;
  gap: 20px;
}
.v-card p {
  max-width: 300px;
}

/* //footer content */

.footer-content {
  background-color: #004080;
  color: white;
  text-align: center;
  padding: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-socials a {
  margin: 0 10px;
  color: #ffffff;
  font-size: 1.5rem; /* Adjust icon size */
}

.footer-links li {
  display: inline;
  margin: 0 10px;
}

.footer-links a:hover {
  color: #61dafb; /* Change color on hover */
}

.footer-bottom {
  background-color: #004080; /* Dark blue background */
  color: white; /* White text color */
  text-align: center; /* Center align text */
  padding: 1rem; /* Space around the text */
  font-size: 0.9rem; /* Slightly smaller font size */
  border-top: 1px solid #ffffff; /* Optional: white top border for separation */
}

.footer-bottom p {
  margin: 0; /* Remove default margin */
}
@media (max-width: 1300px) {
  .values-card p {
    max-width: 800px;
  }
}
@media (max-width: 640px) {
  .v-card {
    flex-flow: column;
  }
  .v-card3,
  .v-card4 {
    flex-direction: column-reverse;
  }
}
@media (max-width: 600px) {
  .mission-section img {
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #004080;
    color: white;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 1;
  }
  .nav-links li {
    margin-top: 10px;
  }
  .nav-links a {
    color: white;
  }

  .mission-section {
    flex-flow: column;
  }
  .mission-section img {
    width: 800px;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .process-item {
    flex-direction: column; /* Stack items vertically on small screens */
    width: 100%; /* Full width */
  }

  .service-item {
    width: 30%;
  }

  .process-item img {
    width: 100%; /* Image takes full width */
    height: auto; /* Maintain aspect ratio */
  }

  .about-company {
    padding: 30px 10px; /* Adjust padding for smaller screens */
  }

  .about-content {
    padding: 15px; /* Reduce padding for smaller screens */
  }

  .about-text {
    width: 90%; /* Adjust text width on tablet devices */
  }
  .footer-links {
    display: flex;
    flex-direction: column;
  }
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-bottom {
    font-size: 0.8rem; /* Smaller font size on mobile */
  }
}

/* About us page */

/* Main Section Styles */

.about-company {
  background-color: #f8f9fa;
  padding: 40px 20px;
  margin: 30px 0;
  border-radius: 10px;
}

.about-company-bg-img {
  width: 100%;
  height: 40vh; /* Adjusted for better visibility */
  background: url("./Images/aboutus.jpg") no-repeat center center/cover;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8; /* Added opacity for text contrast */
}

.about-company h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.about-content {
  width: 100%; /* Adjusted width for better visibility */
  height: 100%;
  margin: 20px auto;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  color: black;
}

.about-content h2 {
  font-size: 2rem;
  color: #003366;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-text {
  font-size: 1.1rem;
  line-height: 2;
  color: #555;
  width: 80%;
  margin: auto;
  margin-top: 10px;
}

/* .about-image img {
      width: 100%;
      max-width: 400px;
      border-radius: 10px;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  }
   */
.mission-section,
.values-section {
  background-color: #ffffff;
  padding: 40px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

.mission-section h2,
.values-section h2 {
  color: #004080;
  margin-bottom: 20px;
}

.mission-section p {
  font-size: 1.2rem;
  color: #333;
  line-height: 1.6;
}

.values-section ul {
  list-style-type: disc;
  padding-left: 20px;
}

.values-section li {
  font-size: 1.2rem;
  color: #333;
  margin: 10px 0; /* Space between list items */
}

.team-section {
  background-color: #ffffff;
  padding: 50px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.team-section h2 {
  font-size: 2.5rem;
  color: #003366;
  font-weight: 700;
  margin-bottom: 20px;
}

.team-grid {
  display: flex;
  justify-content: space-evenly;
}
.team-section p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 30px;
}

.team-members {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap; /* Allow for responsiveness */
}

.team-member {
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  transition: transform 0.3s, box-shadow 0.3s ease-in-out;
  background-color: #f9f9f9;
  width: 45%; /* Makes each director's section take up 45% of the width */
}

.team-member:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.team-member img {
  width: 80%;
  height: auto;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.team-member h3 {
  color: #004080;
  font-size: 1.5rem;
  margin: 10px 0;
}

.team-member p {
  color: #555;
  font-size: 1rem;
  line-height: 1.5;
  margin-top: 10px;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
  .team-member {
    width: 100%; /* Stack the members vertically on small screens */
  }
}

@media (max-width: 600px) {
  .service-item {
    width: 100%; /* 1 item per row */
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #004080;
    color: white;
    position: absolute;
    top: 60px;
    left: 0;
    z-index: 1;
  }
  .nav-links li {
    margin-top: 10px;
  }
  .nav-links a {
    color: white;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .team-grid {
    display: flex;
    flex-direction: column; /* Stack items vertically on small screens */
    align-items: center; /* Center align items */
  }

  .team-member {
    width: 90%; /* Full width on mobile */
    margin-bottom: 20px; /* Space between members */
  }

  .about-content {
    width: 90vw; /* Adjusted width for smaller screens */
  }
}
@media (max-width: 480px) {
  .about-company {
    padding: 20px 5px; /* Further reduce padding for mobile */
  }

  .about-content {
    padding: 10px; /* Further reduce padding */
  }

  .about-text {
    width: 95%; /* Take almost full width on mobile */
    font-size: 1rem; /* Adjust font size for mobile */
  }

  .about-content h2 {
    font-size: 1.5rem; /* Adjust heading size on mobile */
  }

  .about-company h1 {
    font-size: 2rem; /* Smaller heading size for mobile */
  }
}
