/* Navbar Customization */
.navbar {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 0.8rem 1rem;
  transition: all 0.3s ease-in-out;
  
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: #c10606;
  transition: color 0.3s ease-in-out;
  
}

.navbar-brand:hover {
  color:  red;
}

.nav-link {
  color: rgb(0, 0, 0);
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease-in-out;
}

.nav-link:hover {
  color: #ffffff;
  background-color: rgb(0, 0, 0) ;
  border-radius: 5px;
}

.nav-link.active {
  color: #ff5722;
  font-weight: bold;
}



  /* Styling the introduction section */
.intro-section {
    position: relative;
    height: 100vh;
    background: url('../photo/1980x1080\ Cover.jpg') no-repeat center center/cover;
    animation: moveBackground 20s linear infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  /* Overlay styling */
  .overlay {
    background: rgba(251, 251, 251, 0.364); /* Transparent overlay */
    color: #060000;
    padding: 10px;
    border-radius: 0px;
    font-size: 10px;
  }
  
  /* Background animation */
  @keyframes moveBackground {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: 100% 100%;
    }
  }


/* service section */
/* Styling for the Services Section */
.services-section {
    padding: 50px 20px;
    text-align: center;
    background-color: #f9f9f9;
    margin-bottom: 20px;
  }
  
  /* Title styling */
  .section-title {
    font-size: 2rem;
    color: #d32f2f;
    margin-bottom: 20px;
  }
  
  /* Styling for the slider and enabling scrolling */
  .services-slider {
    display: flex;
   /* overflow-x: scroll; */
    /* Allow horizontal scrolling */
    padding: 10px;
    gap: 20px;
    animation: scrollServices 20s linear infinite; /* Automatic scrolling */
  }
  
  /* Auto-scrolling effect */
  @keyframes scrollServices {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  
  /* Individual service card styling */
  .service-card {
    min-width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 15px;
    flex-shrink: 0; /* Prevent cards from shrinking */
    position: relative;
  }
  
  /* Fix image shape: ensure aspect ratio is correct */
  .service-card img {
    width: 100%;
    height: 200px; /* Set a fixed height to avoid distortion */
    object-fit: cover; /* Ensures image covers the box without distortion */
    border-radius: 10px;
    margin-bottom: 10px;
  }
  
  /* Title and description text styling */
  .service-card h3 {
    margin: 10px 0;
    color: #d32f2f;
    font-size: 1.1rem;
  }
  
  .service-card p {
    font-size: 0.9rem;
    color: #555;
  }
  
  /* Custom CSS for employees */
  .employee-scroll-container {
    display: flex;
    overflow: hidden;
    position: relative;
}
.employee-scroll-container .d-flex {
    animation: scrollLeft 40s linear infinite;
}
.employee-card {
    flex: 0 0 auto;
    width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.employee-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}





















.testimonials {
  background-color: #f8f9fa;
}

.carousel-item {
  padding: 20px;
}

.card-body {
  padding: 2rem;
}

.testimonial-author {
  margin-top: 20px;
}

.testimonial-author h5 {
  font-size: 1.1rem;
  font-weight: bold;
}

.testimonial-author p {
  font-size: 0.9rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: #333;
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
}











.portfolio {
  background-color: #f8f9fa;
}

.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  object-fit: cover;
  height: 200px;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  background-color: #0056b3;
  border-color: #004085;
}

.portfolio h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 500;
}

.card-text {
  font-size: 1rem;
  color: #6c757d;
}

.card-footer {
  background-color: #fff;
}

/* Responsive Adjustments */
@media (max-width: 767px) {
  .portfolio h2 {
    font-size: 2rem;
  }
}












.address {
  background-color: #f8f9fa;
}

.card {
  border: none;
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.card-text {
  font-size: 1rem;
  color: #6c757d;
}

.btn-primary {
  background-color: red;
  border-color: red;
}

.btn-primary:hover {
  background-color:rgb(4, 131, 185);
  border-color: rgb(6, 114, 197);
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .card-body {
    padding: 1.5rem;
  }

  .card-title {
    font-size: 1.25rem;
  }

  .card-text {
    font-size: 0.9rem;
  }
}











.portfolio-footer {
  background-color: grey;
  color: #ccc;
}

.footer-logo {
  max-width: 150px;
  height: auto;
}

.social-icons a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #007bff;
}

.portfolio-footer p {
  margin: 0;
  font-size: 0.9rem;
}

.portfolio-footer .small {
  font-size: 0.8rem;
}

@media (max-width: 767px) {
  .portfolio-footer .social-icons a {
    margin: 0 10px;
  }
}










.mission-vision {
  background: linear-gradient(to bottom, #f9f9f9, #eaeaea);
  color: #333;
  font-family: 'Arial', sans-serif;
}

.vertical-drag {
  position: relative;
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.vertical-drag:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.divider {
  width: 100px;
  height: 2px;
  background: #007bff;
  margin: 0 auto;
  border-radius: 1px;
}

h2 {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.fs-5 {
  font-size: 0.5rem;
  line-height: 1.8;
  font-weight: 200;
}

.text-primary {
  color: #007bff !important;
}

.text-success {
  color: #28a745 !important;
}

@media (max-width: 768px) {
  .vertical-drag {
    padding: 15px;
  }

  h2 {
    font-size: 1.5rem;
  }

  .fs-5 {
    font-size: 1rem;
  }
}



.contact-header {
  background: linear-gradient(to bottom, #007bff, #0056b3);
  color: white;
  padding: 40px 0;
  text-align: center;
}

.contact-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.contact-section {
  padding: 40px 0;
}

.contact-details i {
  font-size: 1.5rem;
  color: #007bff;
  margin-right: 10px;
}

.contact-form input,
.contact-form textarea {
  border-radius: 8px;
}

.btn-submit {
  background: #007bff;
  border: none;
  border-radius: 8px;
  color: white;
}

.btn-submit:hover {
  background: #0056b3;
}

.contact-details p {
  font-size: 1rem;
  color: #555;
}