/* FONTS */

@font-face {
  font-family: '29LT Zerif Serif';
  src: url('fonts/29LTZerifSerif-Regular.woff2') format('opentype');
}

body {
  font-family: '29LT Zerif Serif', serif !important;
  margin: 0;
  padding: 0;
  background-color: #f2f2f2;
  overflow-x: hidden; /* Prevent horizontal scrolling */
  max-width: 100%;
}

/* HEADER STARTS */

/* Custom Carousel */
/* Reset default margins and paddings */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hide horizontal overflow to prevent scrolling */
body, html {
  overflow-x: hidden;
}

/* Optional: Set a background color */
body {
  background-color: #f0f0f0;
}

.alpha-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.alpha-carousel .slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.alpha-carousel .slide {
  min-width: 100%;
  /* Adjust height as needed */
  height: 500px;
}

.alpha-carousel img {
  width: 100%;
  height: 100%;
  object-fit: fill; /* Stretch the image to fill the space */
  display: block;
}


.alpha-carousel .prev,
.alpha-carousel .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 24px;
  background-color: rgb(255, 255, 255);
  user-select: none;
  z-index: 1;
  border-radius: 0 3px 3px 0;
}

.alpha-carousel .prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}

.alpha-carousel .next {
  right: 0;
}

.alpha-carousel .dots {
  text-align: center;
  position: absolute;
  bottom: 15px;
  width: 100%;
}

.alpha-carousel .dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 5px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  display: inline-block;
}

.alpha-carousel .dot.active {
  background-color: rgba(255, 255, 255, 1);
}/* Responsive Design */
@media (max-width: 768px) {
  /* Adjust slide height for smaller screens */
  .alpha-carousel .slide {
    height: 300px; /* You can adjust this value as needed */
  }

  /* Adjust navigation arrow sizes */
  .alpha-carousel .prev,
  .alpha-carousel .next {
    padding: 12px;
    font-size: 20px;
  }

  /* Adjust dot sizes */
  .alpha-carousel .dot {
    height: 12px;
    width: 12px;
  }
}

@media (max-width: 576px) {
  /* Further adjustments for very small screens */
  .alpha-carousel .slide {
    height: 200px; /* Adjust as needed */
  }

  .alpha-carousel .prev,
  .alpha-carousel .next {
    padding: 10px;
    font-size: 18px;
  }

  .alpha-carousel .dot {
    height: 10px;
    width: 10px;
    margin: 0 3px;
  }
}
/* Custom Carousel Ends */

header {
  padding: 20px 0;
}

.navbar,
.navbar-light .navbar-nav .nav-link,
.home-link {
  color: #000000 !important;
}

.navbar {
  background: #ffffff;
}

.navbar-brand img {
  max-height: 40px;
  width: auto;
  margin-right: 10px;
}

.company-name {
  margin-right: 20px;
}

.navbar-toggler {
  color: rgb(0, 0, 0);
  background-color: transparent;
  border: none;
}

.navbar-nav .nav-item .nav-link {
  text-decoration: none;
  transition: border-bottom 0.3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
  border-bottom: 1px solid;
}

/* About Us */

/* Styling for the mission and vision cards */
.mv-card {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 20px;
  margin: 15px;
  border-radius: 10px;
  box-sizing: border-box; /* Add box-sizing */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border: 3px solid gold;
}

/* Add a background image to each card */
.mission-card {
  background-image: url('images/all/26.png');
}

.vision-card {
  background-image: url('images/all/25.png');
}

/* Image styling - larger */
.mv-card-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease-in-out;
}

/* Hover animation */
.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Title styling */
.mv-card-title {
  font-size: 28px;
  font-weight: bold;
  margin-top: 15px;
  color: #000000;
  text-align: left;
}

/* Description styling */
.mv-card-description {
  font-size: 16px;
  color: #000000;
  line-height: 1.6;
  margin-top: 10px;
  text-align: left;
}

/* Service Section Background */
#services {
  background-image: url('images/services/background.jpg'); /* Add background image */
  background-size: cover;
  background-position: center;
  padding: 5rem 0;
  color: #fff;
  border: 3px solid gold;
}

/* Styling for the cards */
.service-card {
  height: 100%;
  border: none;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  background-color: rgba(255, 255, 255, 0.9); /* Add light background for contrast */
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid gold !important;
}

/* Make all cards the same height */
.service-card .card-body {
  height: auto; /* Let the card body adjust to content */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
}

/* Black title */
.service-card h5 {
  font-size: 18px;
  font-weight: bold;
  color: black; /* Ensure title is black */
}

/* Hover animation for the card */
.service-card:hover {
  transform: translateY(-10px); /* Moves card up slightly */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Adds a shadow */
}

/* Card Image */
.service-card img {
  width: 100%; /* Make the image fill the width */
  height: 200px; /* Set a fixed height */
  object-fit: contain; /* Ensure the image fits within the card without cropping */
  transition: transform 0.3s ease-in-out;
  padding: 10px;
}

/* Animate image on hover */
.service-card:hover img {
  transform: scale(1.05); /* Scale image on hover */
}

/* Button styling */
.btn-primary {
  background-color: #FABB00 !important;
  border-color: #FABB00 !important;
  padding: 10px 20px;
}

.btn-primary:hover {
  background-color: #FABB00 !important;
  border-color: #FABB00 !important;
}

/* HEADER ENDS */


/* FOOTER STARTS */

/* Float of Social Media */

.social-media-card {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1000;
  background-color: #000; /* Black background */
  padding: 5px; /* Reduced padding for a slimmer card */
  border-radius: 3px;
  width: 30px; /* Set a fixed width for a slimmer appearance */
}

.social-media-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column; /* Stack the icons vertically */
  align-items: center; /* Center the icons within the card */
}

.social-media-card ul li {
  margin-bottom: 10px; /* Reduced space between icons */
}

.social-media-card ul li:last-child {
  margin-bottom: 0; /* Remove space after the last icon */
}

.social-media-card a {
  color: #ffffff; /* White icon color */
  text-align: center;
  font-size: 18px; /* Reduced icon size */
  display: block;
  width: 100%;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .social-media-card {
      position: fixed;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      z-index: 1000;
      background-color: #000; /* Black background */
      padding: 5px; /* Reduced padding for a slimmer card */
      border-radius: 3px;
      width: 30px; /* Set a fixed width for a slimmer appearance */
      background-color: rgba(0, 0, 0, 0.9); /* Less transparent black background */
      opacity: 0.75; /* Slightly reduce the transparency */
    }

    .social-media-card ul li {
        margin-bottom: 8px; /* Slightly reduce space between icons */
    }

    .social-media-card a {
        font-size: 16px; /* Reduce icon size further for mobile */
    }
}


.py-4 {
  padding-bottom: 10px !important;
}

.site-footer {
  background: #000000;
  color: white;
  font-size: small;
}

.site-footer a {
  color: #ffffff;
}

.footer-contact p {
  margin-bottom: 5px;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  margin-right: 10px;
}

.list-inline-item:last-child {
  margin-right: 0;
}

.bottom {
  padding-top: 10px;
  border-top: 1px solid #444;
  text-align: center;
  margin-top: 20px;
}

.footer-logo {
  text-align: center;
}

/* Footer Responsive Adjustments */
@media (max-width: 768px) {
  .site-footer {
    text-align: center;
    padding: 20px;
  }

  .footer-contact,
  .list-unstyled {
    margin: 0 auto;
    padding: 0;
  }

  .list-inline-item {
    display: inline-block;
    margin-bottom: 10px;
  }
}

/* FOOTER ENDS HERE */

/* Main Page */

/* Carousel Section */
#hero {
  padding: 50px 0;
  background-color: #ffffff;
}

#hero .carousel {
  max-width: 100%;
  height: 500px; /* Adjust height as per your need */
}

#hero .carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
}

#hero .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.index_container {
  max-width: 1200px;
  margin: 0 auto;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
}

.carousel-indicators li {
  background-color: #333;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

.carousel-indicators .active {
  background-color: #ffffff00;
}

/* Main Page Ended */

/* Center modal vertically */
.modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

/* Close button icon */
.close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

/* swal alert box */
.custom-swal-size {
  width: 800px;
  height: 400px;
}

/* Services Page Styling */
.full-width-banner {
  background-image: url('images/all/minimal_3.jpg');
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 400px;
  position: relative;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}

.banner-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.banner-title {
  color: #ffffff;
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0);
}

.banner-title2 {
  color: #000000;
  font-size: 3rem;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0);
}

#services {
  padding: 50px 0;
}

.services-container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
  padding: 0 20px; /* Add padding to prevent the cards from touching the edges */
}

.services {
  display: flex;
  width: 90%; /* Reduce width to ensure it's smaller than the screen size */
  max-width: 1200px; /* Set a max width for larger screens */
  align-items: center;
  background-color: rgba(255, 255, 255, 1); /* Removed transparency */
  padding: 20px; /* Decreased padding for a more compact appearance */
  border-radius: 15px; /* Slightly more rounded corners */
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15); /* Slightly larger shadow for better prominence */
  position: relative;
  transition: transform 0.3s ease-in-out;
  z-index: 1;
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
  overflow: hidden; /* Prevent horizontal overflow */
  border: 3px solid gold;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  z-index: -1; /* Background image behind the text */
}

.service1 .services::before {
  background-image: url('images/all/Black2.png');
}

.service2 .services::before {
  background-image: url('images/all/White.png');
}

.service3 .services::before {
  background-image: url('images/all/Black2.png');
}

.service4 .services::before {
  background-image: url('images/all/White.png');
}

.service5 .services::before {
  background-image: url('images/all/Black2.png');
}

.service6 .services::before {
  background-image: url('images/all/White.png');
}

.service7 .services::before {
  background-image: url('images/all/Black2.png');
}

.service8 .services::before {
  background-image: url('images/all/White.png');
}

.service9 .services::before {
  background-image: url('images/all/Black2.png');
}

.service10 .services::before {
  background-image: url('images/all/White.png');
}

.services-image {
  width: 30%; /* Increased width for image to take up more space */
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.services-description {
  padding-left: 20px;
  width: 70%; /* Adjusted width for text to accommodate the larger image */
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}

.services h3 {
  font-size: 1.8rem; /* Increased font size for title */
  margin-bottom: 10px;
  color: #000000;
}

.services p {
  font-size: 1.1rem; /* Slightly increased font size for paragraph text */
  color: #000000;
}

/* Hover effect */
.services:hover {
  transform: translateY(-10px);
}

.services:hover .services-image {
  transform: scale(1.05);
}

/* Animation classes */
@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.slide-in-left {
  animation: slideInLeft 0.8s ease-in-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.8s ease-in-out forwards;
}

/* Scroll to top button */
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  padding: 15px;
  font-size: 20px;
  display: none;
  cursor: pointer;
}

#scrollToTopBtn:hover {
  background-color: #0056b3;
}


/* Project Styling */
.project-container {
  padding: 40px 0;
}

.project-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

/* Card Styling */
.project-card {
  margin-bottom: 30px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #ddd; /* Optional: Add a border for better separation */
  height: 300px; /* Updated height for uniformity */
  display: flex;
  flex-direction: column; /* Stack content vertically */
  overflow: hidden; /* Prevent overflow */
  border: 3px solid gold;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* Carousel Styling */
.project-carousel {
  flex: 0 1 70%; /* Adjusted to take up 70% of the card height */
  position: relative;
}

.project-card-body {
  flex: 0 1 30%; /* Adjusted to take up 30% of the card height */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 5px; /* Reduced padding to fit better */
}

.project-card-title {
  font-size: 1rem; /* Adjusted font size to fit within the card */
  font-weight: 700;
  color: #000000;
  margin: 0; /* Ensures title is centered vertically */
}

/* Carousel Inner Styling */
.carousel-inner {
  height: 100%; /* Ensure carousel takes up full height of the carousel container */
}

.carousel-inner img {
  height: 100%; /* Ensure images fit the height of the carousel container */
  width: 100%;
  object-fit: contain;
  border-radius: 5px 5px 0 0;
}

/* Carousel Controls */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  padding: 10px;
}

/* Row and Column Spacing */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px; /* Adjusted to prevent overflow */
  margin-right: -15px;
}

.col-md-4 {
  flex: 0 0 calc(33.333% - 30px); /* Ensures 3 cards in a row */
  max-width: calc(33.333% - 30px);
  margin-bottom: 30px; /* Space between rows */
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
  padding-left: 15px;
  padding-right: 15px;
}

/* Modal Styling */
.modal-dialog {
  max-width: 80%; /* Increased width for a more balanced modal */
  margin: 1.75rem auto;
}

.modal-content {
  border: 3px solid gold !important;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.modal-title {
  font-size: 1.75rem;
  font-weight: 700;
}

.modal-body {
  padding: 30px;
}

.carousel-item img {
  width: 100%; /* Ensure the image fills the width of its container */
  height: 100%; /* Ensure the image fills the height of its container */
  object-fit: cover; /* Makes the image cover the container without distortion */
  max-height: 210px; /* Adjusted max height to fit the new card size */
}


/* Scroll to Top Button */
#scrollToTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  background-color: #FABB00;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#scrollToTopBtn:hover {
  background-color: #FABB00;
}

/* Footer Styling */
#footer {
  background-color: #343a40;
  color: white;
  padding: 20px;
  text-align: center;
  font-size: 1rem;
}

/* Contact US Started */
.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 50px auto;
  border: 1px solid #333;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  background-color: #000;
  position: relative;
  border-radius: 8px;
  box-sizing: border-box; /* Ensure padding doesn't cause overflow */
  border: 3px solid gold !important;
}

.main-heading {
  width: 100%;
  text-align: center;
  font-size: 32px;
  color: #fff;
  margin-bottom: 30px;
}

.contact-info,
.contact-card {
  flex: 1;
  padding: 20px;
  background-image: url('/images/all/25.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin: 10px;
  border-radius: 8px;
  color: #000;
  box-sizing: border-box;
  min-width: 300px;
  max-width: 100%; /* Ensure it doesn't exceed the container width */
  border: 3px solid gold !important;
}

.contact-info h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact-info ul {
  list-style-type: none;
  padding: 0;
}

.contact-info ul li {
  font-size: 18px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.contact-info ul li .icon {
  margin-right: 10px;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info ul li span {
  display: block;
}

.contact-info h3 {
  font-size: 20px;
  font-weight: bold;
  margin-top: 30px;
}

.contact-info p {
  font-size: 18px;
  margin: 10px 0;
  display: flex;
}

.contact-info p .icon {
  margin-right: 10px;
  font-size: 20px;
  flex-shrink: 0;
  align-self: flex-start;
}

.contact-info p span {
  display: block;
  line-height: 1.5;
}

.contact-card h5 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #000;
}

.contact-card .form-group {
  margin-bottom: 20px;
}

.contact-card input[type="text"],
.contact-card textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #444;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  font-size: 16px;
  box-sizing: border-box;
}

.contact-card textarea {
  resize: vertical;
  height: 100px;
}

.contact-card input[type="submit"] {
  background-color: #555;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100%;
  font-size: 18px;
}

.contact-card input[type="submit"]:hover {
  background-color: #333;
}

.mt-15 {
  margin-top: 15px;
}

/* Responsive Styles */

/* Medium devices (tablets, 992px and down) */
@media (max-width: 992px) {
  /* Adjust paddings and margins */
  .mv-card {
    padding: 18px;
    margin: 12px;
  }
  .mv-card-title {
    font-size: 26px;
  }
  .mv-card-description {
    font-size: 15px;
  }
  /* Adjust service card image height */
  .service-card img {
    height: 180px;
  }
  /* Adjust font sizes */
  .service-card h5 {
    font-size: 17px;
  }
  /* Adjust project card height */
  .project-card {
    height: 380px;
  }
  /* Adjust modal */
  .modal-dialog {
    max-width: 85%;
  }
  .modal-body {
    padding: 25px;
  }
  /* Adjust footer font size */
  .site-footer {
    font-size: 0.9rem;
  }
}

/* Small devices (landscape phones, 768px and down) */
@media (max-width: 768px) {
  /* Adjust carousel height */
  #uniqueSlider {
    height: 60vh;
  }
  /* Adjust navbar brand image */
  .navbar-brand img {
    max-height: 30px;
  }
  /* Adjust navbar link font size */
  .navbar-nav .nav-item .nav-link {
    font-size: 14px;
  }
  /* Stack mission and vision cards vertically */
  .mv-card {
    padding: 15px;
    margin: 10px;
  }
  .mv-card-title {
    font-size: 24px;
  }
  .mv-card-description {
    font-size: 14px;
  }
  /* Adjust services section padding */
  #services {
    padding: 2rem 0;
  }
  /* Adjust service card image height */
  .service-card img {
    height: 150px;
  }
  /* Adjust service card font sizes */
  .service-card h5 {
    font-size: 16px;
  }
  /* Adjust project card height */
  .project-card {
    height: 350px;
  }
  /* Stack services vertically */
  .services {
    flex-direction: column;
    padding: 20px;
  }
  .services-image {
    width: 100%;
    margin-bottom: 20px;
  }
  .services-description {
    width: 100%;
    padding-left: 0;
  }
  /* Adjust carousel height */
  #hero .carousel {
    height: 300px;
  }
  /* Adjust footer font size */
  .site-footer {
    font-size: 1rem;
  }
  /* Adjust modal */
  .modal-dialog {
    max-width: 95%;
  }
  .modal-body {
    padding: 20px;
  }
  /* Adjust project card column width */
  .col-md-4 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
  /* Adjust scroll to top button */
  #scrollToTopBtn {
    padding: 10px;
    font-size: 16px;
    bottom: 15px;
    right: 15px;
  }
  /* Contact us adjustments */
  .contact-container {
    flex-direction: column;
    padding: 20px 10px;
    margin: 20px auto;
  }
  .contact-info,
  .contact-card {
    margin: 10px 0;
    max-width: 100%; /* Ensure they don't exceed the container */
  }
  .main-heading {
    margin-bottom: 20px;
  }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
  /* Adjust carousel height */
  #uniqueSlider {
    height: 50vh;
  }
  /* Adjust navbar brand image */
  .navbar-brand img {
    max-height: 25px;
  }
  /* Adjust navbar link font size */
  .navbar-nav .nav-item .nav-link {
    font-size: 12px;
  }
  /* Adjust mission and vision card font sizes */
  .mv-card-title {
    font-size: 20px;
  }
  .mv-card-description {
    font-size: 13px;
  }
  /* Adjust services section padding */
  #services {
    padding: 1.5rem 0;
  }
  /* Adjust service card image height */
  .service-card img {
    height: 120px;
  }
  /* Adjust service card font sizes */
  .service-card h5 {
    font-size: 14px;
  }
  /* Adjust project card height */
  .project-card {
    height: auto; /* Let it adjust to content */
  }
  /* Adjust hero carousel height */
  #hero .carousel {
    height: 200px;
  }
  /* Adjust modal */
  .modal-dialog {
    max-width: 100%;
    margin: 0;
  }
  .modal-content {
    border-radius: 0;
  }
  .modal-body {
    padding: 15px;
  }
  /* Adjust scroll to top button */
  #scrollToTopBtn {
    padding: 8px;
    font-size: 14px;
    bottom: 10px;
    right: 10px;
  }
  /* Adjust footer font size */
  .site-footer {
    font-size: 1rem;
  }
  /* Contact us adjustments */
  .contact-container {
    padding: 55px 5px;
    margin: 15px auto;
  }
  .contact-info,
  .contact-card {
    padding: 15px;
    min-width: auto;
    max-width: 100%;
  }
  .contact-info h2,
  .contact-card h5 {
    font-size: 18px;
  }
  .contact-info ul li,
  .contact-info p {
    font-size: 14px;
  }
  .contact-card input[type="submit"] {
    font-size: 14px;
    padding: 10px 15px;
  }
}

/* Contact Us Ended */
