@charset "UTF-8";
/* CSS Document */

/* General Styles */

body, html {
  overflow-x: hidden;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

h1, h2, h5 {
  color: black;
}

a {
  text-decoration: none;
  color: #007bff;
}

a:hover {
  color: #0056b3;
}

.circle-icon-container {
    width: 100px;
    height: 100px;
    background-color: #3498db; /* Customize the background color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.circle-icon-container img {
    width: 60%; /* Size the image to fit nicely within the circle */
    height: 60%;
    object-fit: contain;
}


/* Navbar */
.navbar {
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  transition: background-color 0.3s ease;
}

#navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Optional shadow for contrast */
}

.navbar-spacer {
  height: 80px;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-link {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: black;
  transition: color 0.3s ease;
  margin-right: 15px;
}

.nav-link:hover {
  color: #003B7B;
}

.navbar-toggler {
  border: 1.5px solid #333;
}

/* Custom dark icon for the hamburger menu */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='black' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Hero Section */
.jumbotron {
  position: relative;
  color: white;
  padding: 4rem 2rem;
  background-color: transparent;  /* Make sure the background is transparent */
}

.jumbotron h1 {
  font-size: 3rem;
  font-weight: bold;
  color: white;
}

.jumbotron p {
  font-size: 1.5rem;
  color: white;
}

.btn-primary {
  background-color: #B80C09;
  border: none;
}

.btn-primary:hover {
  background-color: #92140C;
  border-color: #92140C;
}

.btn-blue {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 8px 12px;
  font-size: 1rem;
  border-radius: 5px;
}

.btn-blue:hover {
  background-color: #003B7B;
  border-color: #003B7B;
}

.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3); /* Black overlay with transparency */
  z-index: 1;
}

.container {
  position: relative;
  z-index: 2;
}

.fade {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
  }
  /* When the class is active, fully show the page */
  .fade.active {
    opacity: 1;
  }

.fullservice-img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 8px;
  margin: 0;
  margin-top: 1rem;
  margin-bottom: 1rem;
	box-shadow: 0 4px 8px rgba(0, 30, 60, 0.1);
}

.action-img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  border-radius: 8px;
  margin: 0;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
	box-shadow: 0 4px 8px rgba(0, 30, 60, 0.1);
}

/* About Section */
#about {
  background-color: #f8f9fa;
}

#about .card {
  border: none;
  border-radius: 8px;
  margin-top: 1rem;
  box-shadow: 0 4px 8px rgba(0, 30, 60, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensures the cards take up equal height */
}

#about .card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1; /* Ensures the card body expands to take up available space */
  text-align: center;
}

#about .card-img-top {
  display: block;
  max-width: 100%; 
  height: auto; 
  margin: 0 auto;
}

#about .card-title {
  font-size: 1.25rem;
  color: black;
  font-weight: bold;
}

#about .card-text {
  font-size: 0.95rem;
  color: #555;
}

/* About Us Section */
#about {
  text-align: center;
  padding: 2rem;
}

#about p {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Services Section */
#services {
  background-color: #007bff;
  color: white;
  padding: 3rem 0;
}

#services h2 {
  color: white;
  font-size: 2rem;
  font-weight: bold;
}

#services p {
  font-size: 1.25rem;
}

#services .btn {
  background-color: #ffffff;
  color: #007bff;
  padding: 10px 20px;
  border-radius: 5px;
}

#services .services-carousel {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  gap: 20px;
  padding: 10px 0;
  width: 100%;
  position: relative;
}

#services .card {
  background-color: white;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  min-width: 250px;
  max-width: 280px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
  text-align: center;
  overflow: hidden; /*new*/
}

#services .card-img-top {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin: 0;
  border-radius: 0;
  margin-bottom: 5px;
}

#services .card-title {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin: 0;
}

#services .card-text {
  font-size: 0.95rem;
  color: #555;
}

#services .btn-sm {
  font-size: 0.9rem;
  padding: 5px 10px;
  margin-top: 10px;
}

#services .carousel-control-prev,
#services .carousel-control-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2.5rem;
  background: none;
  border: none;
  color: grey;
  cursor: pointer;
  z-index: 10;
}

#services .carousel-control-prev {
  left: -20px;
}

#services .carousel-control-next {
  right: -20px;
}

/* Contact Section */
#contact {
  padding: 2rem 0;
}

#contact form {
  max-width: 700px;
  margin: 0 auto;
}

#contact label {
  font-weight: bold;
}

#contact input, 
#contact textarea {
  border-radius: 4px;
  border: 1px solid #ddd;
  padding: 0.75rem;
  width: 100%;
  margin-bottom: 1rem;
}

#contact button {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

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

/* Footer */
footer {
  background-color: #333;
  color: white;
  padding: 1rem 0;
}

footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .jumbotron {
    padding: 3rem 1rem;
  }

  .jumbotron h1 {
    font-size: 2rem;
  }

  #about .card {
    margin-top: 2rem;
  }

  #contact button {
    width: 100%;
  }
}

#fullservices {
  background-color: #f0f4f8;
}

#fullservices .service-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 30, 60, 0.2);
  transition: transform 0.2s ease;
  padding-top: 1.2rem;
  overflow: hidden;
}

#fullservices .service-card:hover {
  transform: translateY(-5px);
}

#fullservices .service-img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 8px;
  margin: 0;
  margin-bottom: 0.5rem;
	box-shadow: 0 4px 8px rgba(0, 30, 60, 0.1);
}

#fullservices .service-title {
  font-size: 1.25rem;
  color: #333;
  font-weight: 600;
}

#fullservices .service-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 1.5rem;
}

#fullservices .btn-primary {
  background-color: transparent;
  color: black;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  font-size: 0.9rem;
  border: 1px solid #000000; /* Border color and thickness */
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

#fullservices .btn-primary:hover {
  background-color: #007bff; /* Fill color on hover */
  color: white; /* Text color on hover */
  border: 1px solid #007bff;
}

.requestTitle {
    max-width: 800px;
    margin-top: 50px;
	font-size: 2.5rem;
	font-weight: bold;
	color: white;
	text-align: left;
}

.requestsubtitle {
    max-width: 800px;
    margin-top: 50px;
	font-size: 1.8rem;
	color: white;
	text-align: left;
}

#requestquote {
    background-color: #ffffff;
    max-width: 800px;
    margin-top: 50px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#requestquote .form-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #333333;
    text-align: center;
    margin-bottom: 30px;
}

#requestquote .form-label {
    font-weight: 500;
    color: #555555;
}

#requestquote .form-group input,
#requestquote .form-group select,
#requestquote .form-group textarea {
    border: 1px solid #cccccc;
    padding: 10px;
    border-radius: 5px;
    transition: border-color 0.3s;
    width: 100%;
}

#requestquote .form-group input:focus,
#requestquote .form-group select:focus,
#requestquote .form-group textarea:focus {
    border-color: #007bff;
    outline: none;
}

#requestquote .submit-btn {
    background-color: #007bff;
    color: #ffffff;
    font-weight: bold;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

/* Custom Checkboxes */
#requestquote .custom-checkbox .custom-control-label::before {
    border-radius: 4px;
}

#requestquote .row .col-md-6 {
    padding-right: 10px;
    padding-left: 10px;
}

/* Responsive Styles */
@media (max-width: 767px) {
    #requestquote {
		max-width: 92%;
        margin: 20px 15px;
        padding: 15px;
    }
    #requestquote .form-title {
        font-size: 1.5rem;
    }
    #requestquote .submit-btn {
        padding: 10px;
    }
    #requestquote .form-group {
        margin-bottom: 15px;
    }
	#requestquote .row .col-md-6 {
        padding-right: 5px;
        padding-left: 5px;
    }
	.requestTitle, .requestsubtitle {
        max-width: 100%;
        font-size: 1.5rem; /* Adjust font size for better readability on mobile */
        margin-top: 20px;
    }
}


/* Responsive layout */
@media (max-width: 992px) {
  #fullservices .col-md-3 {
    flex: 0 0 50%; /* 2 cards per row on tablet screens */
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  #fullservices .col-md-3 {
    flex: 0 0 100%; /* 1 card per row on mobile screens */
    max-width: 100%;
  }
}

.quotebanner {
  background-color: #f8f9fa;
  color: white;
  padding: 3rem 0;
}

.quotebanner h2 {
  color: black;
}

.quotebanner p {
  color: black;
  font-size: 1.25rem;
}

.quotebanner .btn {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
}

.service-img {
  max-width: 80%; /* This ensures the image takes full width on large screens */
  height: auto;
}

/* Smaller image on mobile */
@media (max-width: 767px) {
  .service-img {
    max-width: 50%; /* Adjust the width to be smaller on mobile devices */
    margin: 0 auto; /* Optional: centers the image */
	margin-bottom: 20px;
  }
}

#carrierform .form-group {
    margin-bottom: 15px;
}

#carrierform .form-label {
    font-weight: bold;
}

#carrierform textarea,
#carrierform select,
#carrierform input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#carrierform button {
    padding: 12px 20px;
    font-size: 1.2rem;
    border-radius: 5px;
    background-color: #007bff;
    color: white;
    border: none;
}

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

#carrierform .form-control {
    margin-bottom: 10px;
}
