@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: #f8f8f8;
}


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; 
  /* background-color: #003366; 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;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;

}

.bar {
  height: 3px;
  width: 25px;
  background-color: #7983ce;
  margin: 4px 0;
}

.icons{
  margin-left:15px;
}



/* .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: 30vh;
  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 */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  text-align: center; /* Centered text */
  margin: 1rem 0 1px 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: 40%; /* Image takes half the width */
    height: 50vh; /* 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/RK Images/Aerospace.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: background 0.1s ease-in-out
}

.industryHeading{
  text-align:center;
  text-transform:uppercase;
    font-size: 2rem; /* Larger font size for the heading */
    color: #004080; /* Dark blue color for the heading */
    margin-bottom: 1rem; /* Space below the heading */
}

/* .industries h2 {
  background-color:black;
  opacity:0.5
    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 */
    width: 15%; 
    padding: 1rem; /* 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 */
   /* Fixed width */
    transition: transform 0.3s; /* Smooth transform effect */
}

.industry-item img {
    width: 100%; /* Fixed size for icons */
    height: 100px; /* 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/RK Images/Aerospace.jpg") no-repeat center center;
    background-size: cover;
}

.industries.automotive {
    background: url("./Images/RK Images/Automotive.jpg") no-repeat center center;
    background-size: cover;
}

.industries.medical {
    background: url("./Images/RK Images/Medical Device.jpg") no-repeat center center;
    background-size: cover;
}

.industries.industrial-equipment {
  background: url("./Images/RK Images/Industrial Eqipment.jpg") no-repeat center center;
  background-size: cover;
}

.industries.defense {
  background: url("./Images/RK Images/Defence.jpg") no-repeat center center;
  background-size: cover;
}



.our-clients {
  /* background: #f5f5f5; */
  padding: 40px 0;
  overflow: hidden;
}

.carousel {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.carousel-track {
  display: inline-flex;
  animation: scroll-text 25s linear infinite;
}

.client {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 180px;
  margin: 0 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0eafc, #cfdef3); /* soft gradient */
  color: #333;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 2px solid #fff;
  position: relative;
}

/* Hover effect */
.client:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

/* Optional: subtle animated ring */
.client::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: linear-gradient(45deg, #004080, #84fab0);
  z-index: -1;
  filter: blur(10px);
  opacity: 0.2;
  animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.2;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.4;
  }
}


/* Animation */
@keyframes scroll-text {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* //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{} */
.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 */
}

/* Define the keyframes for the animation */
@keyframes fadeInUp {
  to {
      opacity: 1; /* End fully visible */
      transform: translateY(0); /* End in original position */
  }
}

@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;
  }

  .industry-item {
    width: 45%; /* Adjust the width for mobile/tablet devices */
}

  .menu-toggle {
    display: flex;
  }

  .hero-carousel {
    width: 100%;
    height: 50vh;
    margin:0;
    padding:0;
  }
  .hero-carousel img{
    width: 100%;
    height: 50vh;
  }

  .process-detail {
    width:100%;
    padding: 20px; //Space inside detail section
    text-align: left;// Align text to the left
}


  .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: 40vh; /* Maintain aspect ratio */
}
  .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 */
/* Main Section Styles */


.about-company {
    background-color: #f8f9fa;
    padding: 50px 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin: 30px 0;
}

.about-content {
    display: flex;
    align-items: center;
}

.about-text {
    flex: 1;
    margin-right: 20px;
}

.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);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.team-member {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    transition: transform 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
}

.team-member img {
    width: 80%;
    border-radius: 50%;
    margin-bottom: 10px;
}

.team-member h3 {
    color: #004080;
    margin: 10px 0;
}

.team-member p {
    color: #555;
}




@media (max-width: 600px) {
    .service-item {
      width: 100%; /* 1 item per row */
    }
  }

  @media (max-width: 480px) {
    .industry-item {
        width: 90%; /* Full width on very small screens */
    }

    .industryHeading {
        font-size: 1.5rem; /* Slightly smaller heading font size for mobile */
    }

    .industries {
        padding: 1rem; /* Reduce padding on smaller screens */
    }
}