/* Set up a flexbox container that spans the full viewport height */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Poppins', sans-serif;
}
/* Main content should take available space */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}
/* Custom Breadcrumb Styling */
.breadcrumb {
    margin-top: 70px; /* Adjusted to prevent overlap with fixed navbar */
    background-color: #f8f9fa;
    padding: 10px 15px;
    border-radius: 5px;
    display: flex;
    justify-content: center; /* Center the breadcrumb */
}
.breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    padding: 0 5px;
    color: #6c757d;
}

.carousel {
    margin-top: 60px; /* Adjust as needed */
}
.section {
    padding: 50px 0;
}
.line-through {
    display: flex;
    color: #0955c7;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 1.4rem;
    font-weight: 600;
}
.line-through::before, .line-through::after {
    content: "";
    flex: 1;
    align-self: center;
    border-bottom: 2px solid #d8d8d8;
}

.animated-text {
    animation: fadeInUp 1s ease-in-out;
    text-align: justify;
}

h2,h3,h4,h5  {
    color:rgba(51, 103, 214, 1);
}
.title_txt{
    margin-top: -3.5em;
    padding-top: 3.5em;
    padding-bottom: 0.5em;
}

.title_txt_h3{
    margin-top: -3.5em;
    padding-top: 3.5em;
    padding-bottom: 0.5em;
}
.title_txt::before {
    content: "";
    margin-right: .5em;
    border-left: .25em solid #5467ae;
    top: 0;
    left: 0;
}

.title_txt_h3::before {
    content: "";
    margin-right: .5em;
    border-left: .25em solid #5467ae;
    top: 0;
    left: 0;
}

.animated-card {
    animation: fadeInUp 1.5s ease-in-out;
}
@keyframes fadeInUp {
    from {
        transform: translate3d(0, 40px, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.bg-bulue-white{
  background: #EAF8FF;
}
/* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #003558; /* Button color */
    color: white; /* Icon color */
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Shadow */
    font-size: 20px; /* Icon size */
    transition: background-color 0.3s, transform 0.3s;
    text-decoration: none;
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Initially hidden */
    z-index: 9999; /* Ensures it's on top */
}

.back-to-top.show {
    opacity: 1; /* Show button when scrolled */
    visibility: visible; /* Show button when scrolled */
}

.back-to-top:hover {
    background-color: #dbc501;
    transform: scale(1.1);
}

.back-to-top i {
    margin: 0;
}

#backtop{
    position: relative;
    top: 4px;
    left: 10px;
    font-size: 20px;
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}




@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.animated-button {
    display: block;
    width: 258px; /* Adjust width as needed */
    margin: 0 auto; /* Center align horizontally */
    text-align: center; /* Center align text */
    border: none; /* Remove border */
    border-radius: 0; /* Square corners */
    text-decoration: none; /* Remove default link underline */
    padding: 12px 20px; /* Adjust padding as needed */
    transition: background-color 0.3s ease; /* Smooth transition on hover */
    animation: pulse 1.5s infinite;
}

.animated-button:hover {
    background-color: #0c2e8a; /* Darker color on hover */
    color: white; /* Text color on hover */
}

.animated-button:focus {
    outline: none; /* Remove focus outline */
}

@media (max-width: 576px) {
    .animated-button {
        width: 100%; /* Full width on smaller screens */
    }
}

/* Custom Footer Styling */
.footer {
    background-color: #0667b6;
    margin-top: auto; /* Ensure the footer is pushed to the bottom */
    color: #fff;
}
.footer-top{  
  padding-top: 2rem;
}
.footer-top h4 {
  margin-bottom: 10px;
}
.footer-top p {
  margin-bottom: 5px;
}
.footer-bottom{
  background-color: #03477e;

}
.footer-bottom p {
  padding: 3px 0;
  font-size: 13px;
}
.footer-bottom ul li {
  padding: 3px 0;
  font-size: 13px;
}

.footer-bottom .d-flex {
  flex-wrap: wrap; /* Allows wrapping of flex items */
  gap: 10px; /* Adds some space between rows on smaller devices */
}

.footer-bottom .d-flex > div {
  flex: 1 1 100%; /* Forces divs to occupy full width on small devices */
  text-align: center; /* Centers content in smaller devices for a cleaner look */
}

.footer-bottom .list-inline {
  padding: 0;
  margin: 0;
  text-align: center;
}

.footer-bottom .list-inline-item {
  display: inline-block;
  margin: 0 10px;
}

@media (min-width: 576px) {

  .footer-bottom .d-flex > div {
      flex: 0 0 auto; /* Allows flex items to shrink to their content width */
      text-align: left; /* Aligns content to the left for larger screens */
  }

  .footer-bottom .list-inline-item {
      margin: 0 15px;
  }
}


/* Media Queries */
@media (max-width: 768px) {
    .footer p {
        font-size: 0.875rem; /* Adjust font size for smaller screens */
    }
}
@media (max-width: 576px) {
    .footer h5 {
        font-size: 1.25rem; /* Slightly smaller font size for very small screens */
    }
    .footer p {
        font-size: 0.75rem; /* Smaller font size for very small screens */
    }
}
.title_txt_d2 {
    padding: 10px 20px;
    position: relative;
    display: inline-block; /* Ensures element size is based on content */
    font-weight: bold;
    font-size: 18px;
}

.title_txt_d2::after, .title_txt_d2::before {
    content: "";
    width: 20px; /* Increase width to cover text */
    height: 20px; /* Increase height to cover text */
    position: absolute;
    transition: all 1s;
}

.title_txt_d2::before {
    top: 0;
    left: 0;
    border-top: 2px solid #007bff; /* Adjust border thickness */
    border-left: 2px solid #007bff; /* Adjust border thickness */
    transform: rotate(360deg); /* Rotate for top-left corner */
}

.title_txt_d2::after {
    bottom: 0;
    right: 0;
    border-bottom: 2px solid #007bff; /* Adjust border thickness */
    border-right: 2px solid #007bff; /* Adjust border thickness */
}

.social-icons a {
    color: #333;
    margin: 0 10px;
    transition: color 0.3s ease;
    font-size: 24px;
}
.social-icons a:hover {
    color: #007bff;
}
.nav-link.text-danger:hover {
    color: #ff6b6b !important; /* Hover color for Logout link */
    transform: scale(1.1); /* Slightly enlarge on hover */
}
.navbar-nav .nav-link-active {
    color: #970000;
    font-weight: 600;
}

/* mega-menu */
* {
    font-family: "Source Sans Pro", "Roboto", Arial, sans-serif;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  .dropdown-menu.show {
    -webkit-animation: fadeIn 0.3s alternate;
    /* Safari 4.0 - 8.0 */
    animation: fadeIn 0.3s alternate;
  }
  
  .nav-item.dropdown.dropdown-mega {
    position: static;
  }
  .nav-item.dropdown.dropdown-mega .dropdown-menu {
    width: 90%;
    top: auto;
    left: 5%;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0;
    outline: none;
  }
  .navbar-toggler:focus {
    box-shadow: none;
  }
  .navbar-toggler .hamburger-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 50px;
    z-index: 11;
    float: right;
  }
  .navbar-toggler .hamburger-toggle .hamburger {
    position: absolute;
    transform: translate(-50%, -50%) rotate(0deg);
    left: 50%;
    top: 50%;
    width: 50%;
    height: 50%;
    pointer-events: none;
  }
  .navbar-toggler .hamburger-toggle .hamburger span {
    width: 100%;
    height: 4px;
    position: absolute;
    background: #333;
    border-radius: 2px;
    z-index: 1;
    transition: transform 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), background 0.2s cubic-bezier(0.77, 0.2, 0.05, 1), all 0.2s ease-in-out;
    left: 0px;
  }
  .navbar-toggler .hamburger-toggle .hamburger span:first-child {
    top: 10%;
    transform-origin: 50% 50%;
    transform: translate(0% -50%) !important;
  }
  .navbar-toggler .hamburger-toggle .hamburger span:nth-child(2) {
    top: 50%;
    transform: translate(0, -50%);
  }
  .navbar-toggler .hamburger-toggle .hamburger span:last-child {
    left: 0px;
    top: auto;
    bottom: 10%;
    transform-origin: 50% 50%;
  }
  .navbar-toggler .hamburger-toggle .hamburger.active span {
    position: absolute;
    margin: 0;
  }
  .navbar-toggler .hamburger-toggle .hamburger.active span:first-child {
    top: 45%;
    transform: rotate(45deg);
  }
  .navbar-toggler .hamburger-toggle .hamburger.active span:nth-child(2) {
    left: 50%;
    width: 0px;
  }
  .navbar-toggler .hamburger-toggle .hamburger.active span:last-child {
    top: 45%;
    transform: rotate(-45deg);
  }
  
  .icons {
    display: inline-flex;
    margin-left: auto;
  }
  .icons a {
    transition: all 0.2s ease-in-out;
    padding: 0.2rem 0.4rem;
    color: #ccc !important;
    text-decoration: none;
  }
  .icons a:hover {
    color: white;
    text-shadow: 0 0 30px white;
  }

/* Specific Mobile Tweaks */
@media (max-width: 768px) {
    .nav-item.dropdown.dropdown-mega .dropdown-menu {
        width: 100%;
        max-height: 300px; /* Adapt height to fit within the viewport */
        overflow-y: auto; /* Enable scrolling for long menus */
        padding: 15px; /* Add padding for better aesthetics */
        border: 1px solid #ddd; /* Optional: add border for clarity */
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Optional shadow for visual separation */
        background-color: #fff; /* Ensure consistent background */
    }

    .mega-content .container-fluid {
        display: flex;
        flex-direction: column; /* Stack elements vertically */
        gap: 1rem; /* Provide consistent spacing between elements */
    }

    .mega-content .col-12 {
        margin-bottom: 0; /* Remove individual margin, use flex gap instead */
        width: 100%; /* Ensure columns take up full width */
    }
}


#training-list {
    background-color: #f8f9fa; /* Light background for contrast */
    cursor: pointer;
}

#training-list .course-card {
    transition: transform 0.2s;
}

#training-list .course-card:hover {
    transform: scale(1.05); /* Slightly enlarge on hover */
}

#training-list .modal-content {
    border-radius: 10px; /* Rounded corners for modals */
}

/*** Header carousel library css ***/

.myslider-banner-carousel .owl-dots {
    position: absolute;
    top: 85%;
    left: 8%;
    transform: translateX(-5%);
    display: flex;
    flex-direction: row;
}
.myslider-banner-carousel .owl-dots .owl-dot {
    height: 12px !important;
    width: 12px !important;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    display: inline-block;
}
.owl-dot:not(:last-child) {
    margin-right: 10px;
}
.owl-dot.active {
    background-color: rgba(255, 255, 255, 1) !important;
}

.myslider-banner-carousel .owl-nav {
    position: absolute;
    top: 85%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
}

.myslider-banner-carousel .owl-nav .owl-prev,
.myslider-banner-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF !important;
    background: #007bff !important;
    border: 1px solid #FFFFFF;
    font-size: 22px;
    transition: background 0.3s ease, border-color 0.3s ease;
    margin-left: 30px;
    border-radius: 50%;
}

.myslider-banner-carousel .owl-nav .owl-prev:hover,
.myslider-banner-carousel .owl-nav .owl-next:hover {
    background: #0f67c7;
    color:#ffffff;
}

@media (min-width: 2280px) {
    .myslider-banner-carousel .owl-dots {
        top: 85% !important;
        left: 23% !important;
    }
}
@media (min-width: 1400px) {
    .myslider-banner-carousel .owl-dots {
        top: 85%;
        left: 16%;
    }
    .myslider-banner-carousel .owl-carousel-item {
        position: relative;
        min-height: 700px;
    }
    .myslider-banner-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}
@media (max-width: 1399px) {
    .myslider-banner-carousel .owl-carousel-item {
        position: relative;
        min-height: 550px;
    }
    .myslider-banner-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .myslider-banner-carousel .owl-dots {
        top: 87%;
        left: 10%;
        transform: translate(-50%, -50%);
    }
}
@media (max-width: 1200px) {
    .myslider-banner-carousel .owl-dots {
        top: 90%;
        left: 11%;
    }
}
@media (max-width: 768px) {
    .myslider-banner-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    .myslider-banner-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .myslider-banner-carousel .owl-dots {
        top: 85%;
        left: 16%;
    }
}
@media (max-width: 576px) {
    .myslider-banner-carousel .owl-carousel-item {
        position: relative;
        min-height: 400px;
    }
    .myslider-banner-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .myslider-banner-carousel .owl-dots {
        left: 12%;
    }   
}
.btn-custom-light {
    display: inline-block;
    padding: 5px 24px;
    font-size: 13px;
    font-weight: 600;
    color: #333; /* Text color */
    background-color: #f9f9f9; /* Light background */
    border: 2px solid #ccc;
    border-radius: 30px; /* Rounded corners */
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-custom-light:hover {
    color: #fff; /* Change text color on hover */
    background-color: #007bff; /* Blue background on hover */
    border-color: #007bff; /* Border color to match background */
    box-shadow: 0 6px 12px rgba(0, 123, 255, 0.2);
    text-decoration: none; /* Remove underline on hover */
    transform: translateY(-2px); /* Slight lift effect */
}


/* why choose us */

    /* Ensure all feature-boxes have the same height */
.feature-box {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between; /* Distribute the content evenly */
  background: #FFFFFF;
}

.feature-box .feature-title {
  margin-top: auto; /* Push title to the bottom of the box */
}

.feature-box .feature-text {
  flex-grow: 1; /* Allow text to take available space */
}

/* Flexbox adjustment for equal height */
@media (min-width: 576px) {
  .feature-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 991px) {
  .feature-box {
    height: auto; /* Make it auto height on smaller screens if needed */
  }
}

/* news */
/* Ensure images are responsive and fit nicely */
.news .card-img {
  width: 100%;
  height: 200px;
  object-fit: cover; /* Makes the image cover the area without stretching */
}

/* Customizing card layout for better appearance */
.news .card {
  display: flex;
  flex-direction: column;
  border: none;
  height: 100%; /* Make sure cards take up full height */
}

.news .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%; /* Ensure body takes up remaining space */
}

.news .card-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px; /* Spacing between title and text */
}

.news .card-text {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px; /* Spacing between text and date */
}

/* Adjust button style */
.news .btn-primary {
  background-color: #0056b3;
  border: none;
  font-size: 0.9rem;
  padding: 10px 15px;
  text-decoration: none;
}

.news .btn-primary:hover {
  background-color: #003f7f;
  color: white;
}

/* Ensure all cards have equal height */
.news .row {
  display: flex;
  flex-wrap: wrap;
}

.news .col-md-6 {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 15px;
  /* Ensures equal height of cards */
}

.news .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 15px;
}

/* Responsive behavior */
@media (max-width: 767px) {
  .news .card {
    flex-direction: column;
  }
  
  .news .card-img {
    height: 200px;
    object-fit: cover;
  }

  .news .card-body {
    height: auto;
  }

  .news .col-md-6 {
    padding: 0; /* Remove padding for small devices */
  }
}

@media (min-width: 768px) {
  .news .card-img {
    height: 200px; /* Set a fixed height for images on larger screens */
    object-fit: cover; /* Keep the image's aspect ratio and fill the space */
  }

  /* Ensure cards stay the same height on larger screens */
  .news .col-md-6 {
    height: 100%;
  }

  /* Maintain consistent padding */
  .news .card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
}

/* Base styles for the Accreditation Slider */
.accreditation-slider {
  padding: 2em 1em;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

.slide-track {
  display: flex;
  gap: 1em;
  animation: scroll 40s linear infinite; /* Adjust duration to control speed */
}

.slide {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
}

.slide img {
  width: 150px; /* Adjust size as needed */
  height: 150px; /* Adjust size as needed */
  object-fit: contain;
  transition: transform 0.3s ease;
}

.slide img:hover {
  transform: scale(1.1);
}

/* Animation for continuous scrolling */


@keyframes scroll {
	0% { transform: translateX(0); }
	100% { transform: translateX(calc(-250px * 7))}
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .slide-track {
    gap: 0.5em;
    animation-duration: 50s; /* Slower animation for smaller screens */
  }
  .slide img {
    width: 120px; /* Adjusted size */
    height: 120px;
  }
}

@media (max-width: 480px) {
  .slide img {
    width: 100px; /* Adjusted size */
    height: 100px;
  }
  .accreditation-slider {
    padding: 1em 0.5em;
  }
}

/* contact page */
.contact-header {
  background: linear-gradient(135deg, #6cb8f0, #5a9be7);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}
.contact-info {
  background-color: #f9f9f9;
  padding: 2rem;
  border-radius: 8px;
}
.map-placeholder {
  height: 300px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #666;
  border-radius: 8px;
}

/* floating footer messengers */
.floating-icons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
.floating-icons a {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.floating-icons a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
.whatsapp {
  background-color: #25D366;
}
.messenger {
  background-color: #0084FF;
}

/* flags_in contact page */

.country-card {
  background: #fff;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  height: 100%; 
}

.country-card:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.image-container {
  width: 100%;
  height: 120px; /* Set a fixed height for the flag image */
  overflow: hidden;
  background: #f8f9fa;
}

.image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure full-cover image scaling */
  transition: transform 0.3s ease-in-out;
}

.country-card:hover .image-container img {
  transform: scale(1.1);
}

.country-title h6 {
  font-size: 0.9rem;
  color: #333;
  font-weight: 600;
  text-align: center;
}

.animated-text_fadeinn {
  font-size: 1.5rem;
  color: #007bff;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInn 1.5s ease-in-out;
}

@keyframes fadeInn {
  from {
      opacity: 0;
      transform: translateY(-10px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}
.service-img {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%; /* Ensure the image container spans full width */
  height: 200px; /* Set a uniform height */
  overflow: hidden; /* Hide any overflowed part of the image */
  background-color: #f8f9fa; /* Optional background color for contrast */
  border: 1px solid #ddd; /* Optional border for better separation */
  border-radius: 8px; /* Optional rounded corners */
  margin-bottom: 20px; /* Add spacing below */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle shadow */
}

.service-img img {
  max-width: 100%; /* Ensure the image doesn't stretch horizontally */
  max-height: 100%; /* Ensure the image doesn't stretch vertically */
  object-fit: contain; /* Keep image aspect ratio while fitting the container */
}

/* for blog image size */
.blog-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 5px;
}

/* Blog content alignment */
.blog-content {
  height: 250px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 5px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Centered button styles */
.custom-btn {
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 18px;
  font-weight: 600;
  background: linear-gradient(45deg, #007bff, #0056b3);
  color: #fff;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.custom-btn:hover {
  background: linear-gradient(45deg, #0056b3, #003d80);
  color: #fff;
  box-shadow: 0 8px 15px rgba(0, 91, 187, 0.3);
  transform: translateY(-2px);
}

/* services */
/* Custom CSS for Single Service Page */
.service-section {
  padding: 50px 0;
}

.service-header {
  text-align: center;
  margin-bottom: 40px;
}

.service-header h2 {
  font-size: 28px;
  font-weight: bold;
  color: #007bff;
}

.service-description {
  text-align: center;
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 40px;
}

.service-features {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.feature-item {
  width: 100%;
  margin: 15px 0;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  background-color: #f8f9fa;
  text-align: center;
}

.feature-item h4 {
  color: #007bff;
  margin-bottom: 15px;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.feature-item p {
  font-size: 16px;
  color: #555;
}

.contact-section {
  background-color: #f1f1f1;
  padding: 50px 0;
}

.contact-header {
  text-align: center;
  margin-bottom: 30px;
}

.contact-header h3 {
  font-size: 26px;
  font-weight: 600;
  color: #007bff;
}

.contact-form {
  width: 60%;
  margin: 0 auto;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.contact-form .form-group {
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form textarea {
  height: 150px;
  resize: vertical;
}

.contact-form button {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #0056b3;
}

@media (max-width: 768px) {
  .service-features {
      flex-direction: column;
      align-items: center;
  }

  .feature-item {
      width: 80%;
      margin: 10px 0;
  }

  .contact-form {
      width: 90%;
  }
}