* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, sans-serif;
        }

        body {
            line-height: 1.6;
        }

        header {
    position: relative;
    overflow: hidden;
    text-align: center;
    color: #fff;

}
/* Overlay background */
.carousel-item .overlay {

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

/* Ensure the content appears above the overlay */
.carousel-caption {
    position: absolute;
    z-index: 2;
    color: #fff;
}

/* Animation for content */
.animated-content h5,
.animated-content p {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards;
}

/* Delay animations for smoother effects */
.animated-content h5 {
    animation-delay: 0.5s;
}

.animated-content p {
    animation-delay: 1s;
}

/* Keyframes for fade-in effect */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

 .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: black;
    padding: 10px 20px;
    height: 89px;
}
        .navbar a {
            color: white;
            text-decoration: none;
            padding: 8px 16px;
        }
        .navbar a:hover {
            background-color: transparent;
            border-radius: 4px;
        }
        .dropdown {
            position: relative;
            display: inline-block;
        }
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: #f9f9f9;
            min-width: 190px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
            z-index: 1;
        }
        .dropdown-content a {
            color: black;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
        }
        .dropdown-content a:hover {
            background-color: #f1f1f1;
        }
        .dropdown:hover .dropdown-content {
            display: block;
        }

/* Carousel container */
.carousel {
            position: absolute;
            top: -77px;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            animation: zoomOut 20s infinite;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: -1;
        }

        .carousel img {
            height: 550px;
            object-fit: cover;
        }
        .carousel-caption {
            position: absolute;
            right: 15%;
            bottom: 6.25rem;
            left: 15%;
            padding-top: 1.25rem;
            padding-bottom: 1.25rem;
            color: #fff;
            text-align: center;
        }
        .carousel-caption h2 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #f4f4f4; /* Metallic Light */
    text-shadow: 3px 3px 10px #000000;
}
.carousel-caption p {
    font-size: 1.4rem;
    color: #ccc; /* Metallic Silver */
   
}
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


/* Zoom-out animation */
@keyframes zoomOut {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.3);
    }
}

/* Text in header */
header h1 {
    position: relative;
    font-size: 3rem;
    z-index: 1; /* Place it above the carousel */
    margin: 0;
}

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .hero {
            
/*            background-image: url('hero-bg.jpg');*/
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px;
            border-radius: 10px;
        }

        .hero-text {
            flex: 1;
            margin-right: 20px;
        }

        .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 10px;
    text-align: left;
}

       .hero-text p {
    color: #555;
    margin-bottom: 20px;
   margin-left: 20px;
    margin-top: 20px;
    text-align: left;
    /* padding-right: 20px; */
    margin-right: 20px;
}

    .hero-icons img {
    transition: transform 0.5s;
    transform-style: preserve-3d;
}
.hero-icons img:hover {
    transform: rotateY(180deg);
}
        .icon-item {
            text-align: center;
        }

        .icon-item img {
            max-width: 50px;
            margin-bottom: 10px;
        }

        .hero-image {
            flex: 1;
            text-align: center;
        }

        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.6); /* Adds depth */
        }

        .card {
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-top: -85px;
            max-width: 360px;
            text-align: center;
            position: relative;
            margin-left: auto;
        }
        .card span{
          color: #da2c4c;
          font-size: 19px;
         font-weight: 700;
        }

        .card h3 {
            margin-bottom: 10px;
        }

        .card a {
            color: #007bff;
            text-decoration: none;
            font-weight: bold;
        }
    .full-height-section {
  height: 448px; /* Full viewport height */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the image */
  display: flex; /* Flexbox for centering content */
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center content */
  color: white; /* Adjust text color for better visibility */
  text-align: center; /* Center-align text */
  padding: 20px; /* Add some padding for mobile devices */
  background-image: url('bg-2.jpg');
}

/* Middle Section Styles */
.middle-section h2 {
  font-size: 2rem; /* Adjust font size */
  margin-bottom: 10px;
  text-align: left;
  color: black;
 font-weight: 600;
}

.middle-section p {
  font-size: 1rem; /* Adjust font size */
  line-height: 1.6; /* Improve readability */
  text-align: left;
  color: black;
}
      .hero-icons .single-item {
    position: relative;
    display: inline-flex
    margin-bottom: 26px;
}
  .hero-icons .single-item img{
    width: 50px;
    height: 50px;
      }  
      .single-item{
      display: flex;
      } 

.menu{
    padding: 20px;
}

 .bg-3 {
            background-color: #ffffff;
            padding: 50px 0;
        }
        .bg-3 h3{
            color: white;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            overflow: hidden;
            position: relative;
        }

        h3 {
            text-align: center;
            color: #333;
        }

        #slider {
            display: flex;
            width: calc(250px * 12); /* 6 items visible, so 6 * 2 for loop */
            animation: slide 20s linear infinite;
        }

        #slider li {
            list-style: none;
            text-align: center;
            margin: 0 10px;
        }

        #slider img {
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        }

        .tooltip {
            background-color: #333;
            color: #fff;
            padding: 5px 10px;
            border-radius: 5px;
            margin-bottom: 10px;
            font-size: 12px;
        }

        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(calc(-250px * 6)); /* Slide one set of items */
            }
        }

        #slider:hover {
            animation-play-state: paused;
        }


.section-design{
    height: auto;
    width: 100%;
}
.full-height-section2 {
  height: 448px; /* Full viewport height */
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: center; /* Centers the image */
  display: flex; /* Flexbox for centering content */
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center content */
  color: white; /* Adjust text color for better visibility */
  text-align: center; /* Center-align text */
  padding: 20px; /* Add some padding for mobile devices */
  background-image: url('bg-1.jpg');
}
.sec-alignment{
    margin-bottom: 50px;
    margin-top: 50px;
}
.testimonial_section {
      display: block;
      overflow: hidden;
    }

    .testimonial_section:after {
      display: block;
      clear: both;
      content: "";
    }

    .testimonial_section .about_content {
      background-color: #020d26;
      padding-top: 77px;
      padding-right: 210px;
      padding-bottom: 62px;
      position: relative;
    }

    .testimonial_section .about_content .background_layer {
      background-color: #afaea9;
      width: auto;
      margin-left: -200px;
      right: 0;
      position: absolute;
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
    }

    .testimonial_section .about_content .layer_content {
      position: relative;
      z-index: 9;
      height: 100%;
    }

    .testimonial_section .about_content .layer_content .section_title {
      margin-bottom: 24px;
      position: relative;
    }

    .testimonial_section .about_content .layer_content .section_title:after {
      display: block;
      clear: both;
      content: "";
    }

    .testimonial_section .about_content .layer_content .section_title h5 {
      font-family: "Open Sans";
      font-weight: 400;
      font-size: 15px;
      line-height: 28px;
      color:#020d26;
      margin-top: -5px;
      margin-bottom: 6px;
    }

    .testimonial_section .about_content .layer_content .section_title h2 {
      font-family: "Titillium Web";
      font-weight: 300;
      font-size: 45px;
      line-height: 50px;
      padding-bottom: 51px;
      margin-bottom: 0px;
      color: #fff;
    }

    .testimonial_section .about_content .layer_content .section_title h2 strong {
      font-weight: 600 !important;
      width: 100%;
      display: block;
    }

    .testimonial_section .about_content .layer_content .section_title .heading_line {
      position: relative;
    }

    .testimonial_section .about_content .layer_content .section_title .heading_line span {
      transition: all 0.5s ease-in-out 0s;
      position: relative;
    }

    .testimonial_section .about_content .layer_content .section_title .heading_line span:after {
      content: "";
      right: auto;
      left: 69px;
      position: absolute;
      bottom: 28px;
      width: 17px;
      margin-left: 0;
      border-bottom-width: 3px;
      border-bottom-color: #cacaca;
      border-bottom-style: solid;
    }

    .testimonial_section .about_content .layer_content .section_title .heading_line:after {
      content: "";
      left: 1%;
      margin-left: 0;
      position: absolute;
      bottom: 28px;
      width: 59px;
      border-bottom-width: 3px;
      border-bottom-style: solid;
      border-bottom-color: #ff5e14;
    }

    .testimonial_section .about_content .layer_content .section_title p {
      color: #fff;
      margin: 0 0 15px;
    }

    .testimonial_section .about_content .layer_content a {
      color: #fff;
      text-transform: capitalize;
      font-size: 15px;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s;
    }

    .testimonial_section .about_content .layer_content a i {
      font-size: 18px;
      vertical-align: middle;
    }

    .testimonial_section .about_content .layer_content a:hover {
      color: #ff5e14;
    }

    .testimonial_section .testimonial_box {
      margin-top: 60px !important;
      position: relative;
    }

    .testimonial_section .testimonial_box .testimonial_container {
      background-color: #ff5e14;
      margin-left: -170px !important;
      position: relative;
    }

    .testimonial_section .testimonial_box .testimonial_container .background_layer {
      background-color: black;
      width: auto;
      margin-right: -200px;
      right: 0;
      background-image: url(../images/map.png);
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center;
      position: absolute;
      height: 100%;
      top: 0;
      left: 0;
    }

    .testimonial_section .testimonial_box .testimonial_container .layer_content {
      position: relative;
      z-index: 9;
      height: 100%;
    }

    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel {
      display: block;
      position: relative;
    }

    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials {
      margin: 10px 0 10px 0;
      padding: 62px 0px 72px 50px;
      position: relative;
      text-align: center;
    }

    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content {
      box-shadow: 0 0 25px 0 rgba(0, 0, 0, 0.13);
      margin-left: 150px;
      margin-top: 69px;
      padding: 45px 40px 45px 40px;
      z-index: 1;
      position: relative;
      background-color: #fff;
      transition: all 0.5s ease-in-out 0s;
    }

    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption {
      margin-bottom: 15px;
      position: relative;
    }

    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption:after {
      content: "";
      width: 30px;
      display: block;
      height: 2px;
      text-align: center;
      left: 46%;
      margin-top: 6px;
      background-color: #ff5e14;
      position: absolute;
    }

    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption h6 {
      padding-top: 0;
      margin-bottom: -5px;
      font-size: 19px;
      font-weight: 600;
      line-height: 24px;
      color: #020d26;
    }

    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content .testimonial_caption span {
      font-size: 12px;
      color: #454040;
      margin: 0;
    }

    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .testimonial_content p {
      padding: 0;
      margin: 0;
      padding-top: 10px;
      font-size: 16px;
      line-height: 28px;
      font-weight: 400;
      color: #5d6576;
      font-style: italic;
    }

    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img {
      border: none;
      position: absolute;
      top: 0;
      left: 55px;
      top: 80px;
    }

    .testimonial_section .testimonial_box .testimonial_container .layer_content .testimonial_owlCarousel .testimonials .images_box .testimonial_img img {
      border: 5px solid #fff;
      box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
      width: 35%;
    }

    .testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev {
      position: absolute;
      top: 165px;
      right: 42px;
      border-radius: 0;
      background: black;
      display: block;
      outline: 0;
      width: 34px;
      line-height: 34px;
      height: 34px;
      color: #fff;
      font-size: 23px;
      margin-top: -20px;
      transition: all 0.3s ease-in-out;
    }

    .testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-prev:hover {
      background: #020d26;
    }

    .testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next {
      position: absolute;
      top: 165px;
      right: 5px;
      border-radius: 0;
      display: block;
      background: black;
      outline: 0;
      width: 34px;
      text-align: center;
      line-height: 34px;
      height: 34px;
      color: #fff;
      font-size: 23px;
      margin-top: -20px;
      transition: all 0.3s ease-in-out;
    }

    .testimonial_section .testimonial_box .testimonial_container .owl-nav .owl-next:hover {
      background: #020d26;
    }

    @media all and (max-width: 991px) {
      .testimonial_section .about_content {
        padding-right: 15px !important;
      }

      .testimonial_section .about_content .background_layer {
        width: 200% !important;
      }

      .testimonial_section .testimonial_box {
        margin-top: 0 !important;
      }

      .testimonial_section .testimonial_box .background_layer {
        width: 200% !important;
        margin-left: -200px;
      }

      .testimonial_section .testimonial_box .about_content {
        padding-left: 15px !important;
        padding-right: 15px !important;
        margin-top: 28% !important;
      }

      .testimonial_section .testimonial_box .testimonial_container {
        margin-left: -15px !important;
      }

      .testimonial_section .testimonial_box .testimonial_container .testimonials {
        margin: 0px 0 20px 0;
      }

      .testimonial_section .testimonial_box .testimonial_container .testimonials .testimonial_content {
        margin-left: -36px !important;
      }

      .testimonial_section .testimonial_box .testimonial_container .testimonials .images_box {
        display: none;
      }
    }
    .bg-3 {
    background-image: url('back1.jpg');
    background-size: cover; /* Ensures the image covers the full width */
    background-position: center; /* Centers the image */
    width: 100%; /* Ensures the element takes full width */
}
h5{
    color: white !important;
}




