/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: #0c0c0c;
  background-color: #ffffff;
  overflow-x: hidden;
}

.layout_padding {
  padding: 90px 0;
}

.layout_padding2 {
  padding: 75px 0;
}

.heading_container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.heading_container h2 {
  font-weight: bold;
  position: relative;
}

.heading_container h2 span {
  color: #435a64;
}
.heading_container p {
  font-family: 'Times New Roman', Times, serif;
  color: #000;
  position: relative;

}

.heading_container.heading_center {
  align-items: center;
  text-align: center;
}

/* Remove default link styles */
a, a:hover, a:focus {
  text-decoration: none;
}

.btn, .btn:focus {
  outline: none !important;
  box-shadow: none;
}


/* ================= HEADER SECTION ================= */
/* Header Content - Contact Info */
.contact_info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact_info p {
  display: inline-block;
  gap: 5px;
  align-items: center;
  text-align: left;
  font-size: 20px;
  margin: 2px 0;
}

.contact_info strong {
  min-width: 5px;
  display: inline-block;
  text-align: left;
  font-size: 14px;
}

.social_box {
  display: inline-block;
  margin-top: 2px;
}

.social_box a {
  color: #000000;
  font-size: 14px;
  margin-right: 10px;
  transition: color 0.3s ease;
}

.social_box a:hover {
  color: #ff6122;
}

 /* Hero Section Styling */
 .hero-section {
  position: relative;
  height: 90vh;
  overflow: hidden;
}
.hero-video {
  width: 100%;
  height: 90%;
  object-fit: cover;
}
.hero-content {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -20%);
  z-index: 2;
  text-align: center;
  color: #fff;
}
/* Slider Section Overlaid on Video */
.slider-section {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 3;
}
.detail-box h1 {
  color: #fff;
.hero-content p {
  color: #81b326;
}
}
.btn1, .btn2 {
  background-color: #7aa63a;
color: black;
font-weight: bold;
padding: 5px 10px;
border-radius: 30px;
}
.btn1.btn2:hover{
  background-color: #7aa63a;
  color: black;
}

/* ================= HEADER CONTAINER ================= */
.header_top {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  padding: 10px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1900px;
  z-index: 1000;
}

.contact_info {
  display: flex;
  flex-direction: column; /* Stack the items vertically */
  align-items: center; /* Center-align the items */
  gap: 20px; /* Space between the items */
  font-size: 14px;
  color: #fff;
}

.contact_info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.contact_info strong {
  font-size: 14px;
  font-weight: bold;
}


.social_box {
  display: flex;
  gap: 15px;
  justify-content: center; /* Ensure the social icons are centered */
  padding-top: 0%;
}

.social_box a {
  color: #fff;
  font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social_box a:hover {
  color: #ff6122;
  transform: scale(1.2);
}


.social_box {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: flex-end;
}

.social_box a {
  color: #fff;
  font-size: 16px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social_box a:hover {
  color: #ff6122;
  transform: scale(1.2);
}

/* ================= NAVBAR ================= */
/* ================= HEADER BOTTOM (Navbar with Logo) ================= */
.header_bottom {
  background: linear-gradient(45deg,#ffffff, #bfdc7a, #f05326); /* Ombre gradient */
  padding: 10px 0; /* Reduced padding for a smaller navbar */
  width: 100%; /* Ensure it stretches across the screen */
  position: fixed; /* Fixed at the top of the page */
  top: 0;
  left: 0;
  z-index: 1000; /* Ensures the navbar stays on top */
}

.navbar {
  width: 100%; /* Ensure the navbar spans the entire width of the page */
}

.navbar-nav {
  display: flex;
  justify-content: center; /* Center the navbar items */
  width: 100%;
  padding: 0; /* Remove padding */
}

.nav-item {
  margin: 0 5px; /* Reduced margin for items */
}

.nav-link {
  padding: 5px 15px; /* Reduced padding for links */
  color: #000;
  text-transform: uppercase;
  font-size: 14px; /* Reduced font size */
  transition: color 0.3s;
  font-weight: bold;
}

.nav-link:hover {
  color: #ff6122; /* Hover effect */
}

/* Dropdown Styling */
.nav-item.dropdown .dropdown-menu {
  background-color: rgba(0, 0, 0, 0.6); /* Dark transparent effect */
  border: none;
  backdrop-filter: blur(5px); /* Optional: adds a slight blur effect */
}

.nav-item.dropdown .dropdown-item {
  color: white;
  padding: 8px 12px; /* Reduced padding for dropdown items */
  background-color: transparent;
}

.nav-item.dropdown .dropdown-item:hover {
  background-color: rgba(0, 0, 0, 0.3); /* Lighter transparent black on hover */
}

.nav-item.dropdown .dropdown-menu {
  display: none; /* Hide by default */
  background-color: rgba(0, 0, 0, 0.6); /* Dark transparent effect */
  border: none;
  backdrop-filter: blur(5px); /* Optional: adds a slight blur effect */
}

.nav-item.dropdown:hover > .dropdown-menu {
  display: block; /* Show on hover */
}


/* Logo Styling */
.logo {
  font-size: 25px; /* Reduced logo font size */
  font-weight: bold;
  color: #fa610b;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  position: absolute;
  left: 20px; /* Position logo on the left */
  top: 50%; /* Center the logo vertically */
  transform: translateY(-50%);
}
.btn1, .btn2 {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Button 1: Market Place – Blue Theme */
.btn1 {
  background-color: #fa610b;
  color: black;
  border: 2px solid transparent;
}

.btn1:hover {
  background-color: #fa610b;
  border-color: black;
}

/* Button 2: Create Account – Green Theme */
.btn2 {
  background-color: #fa610b;
  color: black;
  border: 2px solid transparent;
}

.btn2:hover {
  background-color: #fa610b;
  border-color: #fa610b;
}

/* Tenders Button */
.btn-tenders {
  background-color: #7aa63a;
  color: white;
  font-weight: bold;
  padding: 5px 50px;
  border-radius: 5px;
}

.btn-tenders:hover {
  background-color: #7aa63a;
  color: #fa610b;
}

.btn-tenders2 {
  background-color: #fa610b;
  color: black;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 5px;
}
.btn-tenders2 {
  background-color: #fa610b;
  color: black;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 5px;
}
.btn-tenders1 {
  background-color: #28a745;  /* Green background */
  color: #000;               /* White text */
  border: none;               /* Optional: remove border */
  padding: 10px 20px;         /* Adjust size */
  border-radius: 5px;         /* Rounded corners */
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-tenders1:hover {
  background-color: #218838; /* Darker green on hover */
  color: white;              /* Keep text white on hover */
}

/* ================= MEDIA QUERIES ================= */

/* Adjustments for Mobile */
@media (max-width: 991px) {
  .header_top {
    flex-direction: column;
    text-align: center;
  }

  .contact_nav {
    text-align: center;
  }

  .social_box {
    justify-content: center;
  }

  .navbar-nav {
    flex-direction: column;
    align-items: center;
  }

  .nav-item {
    margin-bottom: 10px;
  }

  .navbar-toggler {
    background-color: white;
    border: none;
  }

  .navbar_brand_mobile {
    display: block;
  }

  .hero_content {
    text-align: center;
    padding: 25px;
    font-size: 1.5rem;
  }
}

/*end header section*/

/* Slider Section with a Modern Touch */

/* Slider Section with a Modern Touch */

.slider_section .dot_design {
  position: absolute;
  width: 450px;
  right: 0;
  bottom: 0;
  transform: translateY(50%);
  z-index: 1;
}

.slider_section .dot_design img {
  width: 100%;
  opacity: 0.8;
}

.slider_section .row {
  align-items: center;
  gap: 20px;
}

.slider_section #customCarousel1 {
  width: 100%;
  position: left;
  overflow: hidden;
}

.slider_section .detail-box {
  color: #fa610b;
  text-align: center;
}

.slider_section .detail-box h1 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 4rem;
  text-transform: uppercase;
}

.slider_section .detail-box p {
  color: #fa610b;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.slider_section .detail-box .btn-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.slider_section .detail-box .btn-box a {
  text-align: center;
  width: 180px;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
}

.slider_section {
  position: relative;
  z-index: 2; /* Ensure it appears above the video */
  width: 100%;
  min-height: 100vh; /* Ensures it takes full screen */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}


.slider_section .detail-box .btn-box .btn1 {
  background-color: #ffffff;
  color: #000000;
  border: 2px solid #ffffff;
  transition: all 0.3s ease-in-out;
}

.slider_section .detail-box .btn-box .btn1:hover {
  background-color: transparent;
  color: #ffffff;
}

.slider_section .detail-box .btn-box .btn2 {
  background-color: #fa610b;
  color: #ffffff;
  border: 2px solid #fa610b;
  transition: all 0.3s ease-in-out;
}

.slider_section .detail-box .btn-box .btn2:hover {
  background-color: transparent;
  color: #fa610b;
}

.slider_section .img-box img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.slider_section .carousel_btn-box {
  position: absolute;
  right: 25px;
  bottom: 30px;
  display: flex;
  justify-content: space-between;
  width: 105px;
  height: 50px;
  transform: translateY(50%);
}

.slider_section .carousel_btn-box a {
  width: 50px;
  height: 50px;
  background-color: #ffffff;
  opacity: 1;
  border-radius: 50%;
  color: #fa610b;
  font-size: 14px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.2s ease-in-out;
}

.slider_section .carousel_btn-box a.carousel-control-prev {
  position: left;
  left: 20px;
  transform: translateY(-50%);
}

.slider_section .carousel_btn-box a.carousel-control-next {
  position: right;
  right: 20px;
  transform: translateY(-50%);
}

.slider_section .carousel_btn-box a:hover {
  background-color: #fa610b;
  color: #ffffff;
}



/*about section*/

/* Ensure the phone image is larger */
.phone-img {
  width: 100%; /* This will make the image fill the container */
  max-width: 400px; /* Adjust the max-width based on your design preference */
  display: block;
  margin-bottom: 10px; /* Adds some space between the image and the button */
}

/* Bring the button closer to the image */
.btn-close-to-phone {
  position: relative;
  top: -10px; /* Move the button up closer to the image */
  text-align: center;
}
/* Ensure the phone image is larger */
.phone-img {
  width: 100%; /* This will make the image fill the container */
  max-width: 400px; /* Adjust the max-width based on your design preference */
  display: block;
  margin-bottom: 10px; /* Adds some space between the image and the button */
}

/* Style for primary button */
.btn-primary {
  display: inline-block;
  padding: 12px 30px;
  background-color: #000000; /* Blue color */
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  margin-top: 20px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #000000; /* Darker blue for hover effect */
}

/* Style for secondary button */
.btn-secondary {
  display: inline-block;
padding: 12px 30px;
background-color: #000000; /* Blue color */
color: white;
text-decoration: none;
font-size: 16px;
border-radius: 5px;
margin-top: 20px;
transition: background-color 0.3s ease;
}

.btn-secondary:hover {
  background-color: #000000; /* Darker blue for hover effect */
}

/* Position secondary button close to the image */
.btn-close-to-phone {
  position: right;
  top: -10px; /* Adjust this value to bring the button closer to the phone */
  display: inline-block;
  padding: 12px 30px;
  background-color: #28a745; /* Green color for the secondary button */
  color: white;
  text-decoration: none;
  font-size: 16px;
  border-radius: 5px;
  margin-top: -5px; /* Reduce the margin above the button */
}

.btn-close-to-phone:hover {
  background-color: #218838; /* Darker green for hover effect */
}



/* portifolio section2*/
:root {
  background: linear-gradient(45deg, #7aa63a, #ff7e5f, #7aa63a);
  --secondary-color: #7aa63a;
  --text-color: #ffffff;
  --background-color: #f4f7ff;
}

.visit-marketplace {
  position: relative;
  background: url('marketplace-bg.jpg') no-repeat center center/cover;
  padding: 80px 20px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.visit-marketplace::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for better readability */
  z-index: 1;
}

.visit-marketplace .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.visit-marketplace h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.visit-marketplace p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.visit-marketplace .btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff7e5f, #feb47b);
  padding: 15px 30px;
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-marketplace .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}


.services_section {
  background-color: var(--background-color);
  color: var(--text-color);
  padding: 100px 20px;
  font-family: 'Lato', sans-serif;
  position: relative;
  overflow: hidden;
}

.services_section .heading_container {
  text-align: center;
  margin-bottom: 60px;
}

.services_section .heading_container h2 {
  font-size: 48px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.services_section .heading_container h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background: var(--secondary-color);
  margin: 10px auto 0;
}

.services_section .heading_container p {
  font-size: 18px;
  color: var(--primary-color);
  margin-top: 10px;
}

.services_section .portfolio_carousel {
  margin-top: 40px;
}

.services_section .owl-carousel {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.services_section .box {
  background: var(--text-color);
  border-radius: 15px;
  overflow: hidden;
  width: 300px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services_section .box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.services_section .box .img-box {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.services_section .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.services_section .box .img-box:hover img {
  transform: scale(1.15);
}

.services_section .box .btn_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(38, 182, 218, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.services_section .box:hover .btn_overlay {
  opacity: 1;
}

.services_section .box .btn_overlay a {
  padding: 12px 25px;
  background: var(--primary-color);
  color: var(--text-color);
  border-radius: 30px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  transition: background 0.3s ease, color 0.3s ease;
  text-decoration: none;
}

.services_section .box .btn_overlay a:hover {
  background: var(--secondary-color);
  color: var(--primary-color);
}

.services_section .portfolio_carousel .owl-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}

.services_section .portfolio_carousel .owl-nav button {
  width: 45px;
  height: 45px;
  background: var(--text-color);
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 20px;
  transition: background 0.3s ease, transform 0.3s ease;
  font-weight: bold;
  outline: none;
}

.services_section .portfolio_carousel .owl-nav button:hover {
  background: var(--primary-color);
  color: var(--text-color);
  transform: scale(1.1);
}

.services_section .portfolio_carousel .owl-nav button.owl-prev {
  left: 20px;
}

.services_section .portfolio_carousel .owl-nav button.owl-next {
  right: 20px;
}



/*end of portifolio section2*/
.service_section {
  position: relative;
  padding: 50px 0; /* Added padding for better spacing */
  background-color: #f9f9f9; /* Light background for contrast */
}

.service_section .box {
  margin-top: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px; /* Softened edges */
  background-color: #ffffff;
}

.service_section .box .img-box {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #e3f5fc;
  border-radius: 50%; /* Circular icon box */
  padding: 10px;
  transition: background 0.3s ease-in-out;
}

.service_section .box .img-box img {
  max-height: 100%;
  max-width: 100%;
  transition: all 0.3s ease-in-out;
}

.service_section .box .detail-box {
  margin-top: 20px;
}

.service_section .box .detail-box h5 {
  font-weight: bold;
  font-size: 18px;
  color: #003471;
}

.service_section .box .detail-box p {
  margin: 0;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.service_section .box:hover {
  background-color: #26b6da;
  color: #ffffff;
  transform: translateY(-5px); /* Subtle lift on hover */
}

.service_section .box:hover .img-box {
  background: rgba(255, 255, 255, 0.3);
}

.service_section .box:hover .img-box img {
  filter: brightness(0) invert(1);
}

.service_section .btn-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}

.service_section .btn-box a {
  display: inline-block;
  padding: 12px 50px;
  background-color: #26b6da;
  color: #ffffff;
  border-radius: 6px;
  transition: all 0.3s ease-in-out;
  border: 2px solid #26b6da;
  font-weight: bold;
  font-size: 16px;
}

.service_section .btn-box a:hover {
  background-color: transparent;
  color: #26b6da;
  border-color: #26b6da;
}


/*service section 1*/
/*section 2*/
.service_section2 {
  position: relative;
  padding: 60px 0;
  background-color: #f8f9fa; /* Light background for contrast */
}

.service_section2 .heading_container h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 30px;
}

.service_section2 .box {
  margin-top: 30px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 20px;
  transition: all 0.3s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 10px; /* Smooth edges */
}

.service_section2 .box .img-box {
  width: 100%;
  height: 220px; /* Consistent height */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 8px; /* Rounded corners for images */
}

.service_section2 .box .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image fills the box */
  transition: transform 0.3s ease-in-out;
}

.service_section2 .box .detail-box {
  position: absolute;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 100%;
  padding: 15px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transform: translateY(20px);
}

.service_section2 .box:hover .detail-box {
  opacity: 1;
  transform: translateY(0); /* Smooth text reveal */
}

.service_section2 .box:hover .img-box img {
  transform: scale(1.1); /* Slight zoom effect on hover */
}

.service_section2 .btn-box {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 45px;
}

.service_section2 .btn-box a {
  display: inline-block;
  padding: 12px 30px;
  background-color: #26b6da;
  color: #ffffff;
  font-weight: bold;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
  border: 2px solid #26b6da;
  text-decoration: none;
}

.service_section2 .btn-box a:hover {
  background-color: transparent;
  color: #26b6da;
}

/* Responsive Design */
@media (max-width: 768px) {
  .service_section2 .box {
    padding: 15px;
  }

  .service_section2 .box .img-box {
    height: 180px;
  }

  .service_section2 .heading_container h2 {
    font-size: 1.75rem;
  }
}

/* Contact Section */
.contact_section {
  position: relative;
  padding: 80px 0;
  background: #f9f9f9;
}

.contact_section .heading_container {
  text-align: center;
  margin-bottom: 50px;
}

.contact_section .row {
  align-items: stretch;
}

/* Form Styling */
.contact_section .form_container {
  background: linear-gradient(to bottom, #7aa63a, #7aa63a, #f05326);
  padding: 50px;
  border-radius: 10px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.15);
}

.contact_section .form_container .form-control {
  width: 100%;
  border: none;
  height: 50px;
  margin-bottom: 20px;
  padding-left: 15px;
  font-size: 16px;
  outline: none;
  color: linear-gradient(to bottom, #7aa63a, #7aa63a, #f05326);
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.contact_section .form_container .form-control:focus {
  background: rgba(255, 255, 255, 0.2);
}

/* Styling for the select dropdown */
.contact_section .form_container select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #299cb8; /* Light blue background, matches the form gradient */
  color: #ffffff;  /* White text for readability */
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 35px;
  border-radius: 5px;
}

.contact_section .form_container select.form-control:focus {
  background: #26b6da;  /* Slightly darker blue on focus */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); /* Same box-shadow on focus */
}

/* Placeholder Styling */
.contact_section .form_container .form-control::placeholder {
  color: #dcdcdc;
}

/* Message Box */
.contact_section .form_container .message-box {
  height: 120px;
  resize: none;
}

/* Button Styling */
.contact_section .form_container .btn_box {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.contact_section .form_container .btn_box button {
  border: none;
  text-transform: uppercase;
  padding: 12px 55px;
  background-color: #26b6da;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  border: 2px solid #26b6da;
  cursor: pointer;
}

.contact_section .form_container .btn_box button:hover {
  background-color: transparent;
  color: #26b6da;
}

/* Map Section */
.contact_section .map_container {
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  padding: 0;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.contact_section .map_container .map {
  height: 100%;
  flex: 1;
}

.contact_section .map_container .map #googleMap {
  height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact_section {
    padding: 50px 20px;
  }

  .contact_section .form_container {
    padding: 30px;
  }

  .contact_section .map_container {
    min-height: 300px;
  }

  .contact_section .form_container .btn_box button {
    width: 100%;
  }
}


.client_section4 {
  background: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}

.client_section4 .carousel-inner {
  overflow: hidden;
}

.client_section4 .carousel-item {
  display: flex;
  justify-content: center;
}

.client_section4 .box {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(100%);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  max-width: 750px;
  border-left: 5px solid #26b6da;
}

.carousel-item.active .box {
  opacity: 1;
  transform: translateX(0);
}


.client_section4 .detail-box {
  flex: 1;
  background: #e3f2fd;
  padding: 20px;
  border-radius: 12px;
  box-shadow: inset 0px 4px 8px rgba(0, 0, 0, 0.05);
}

.client_section4 .detail-box p {
  margin: 0;
  font-size: 17px;
  color: #333;
  font-style: italic;
}

.client_section4 .detail-box h5 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #002471;
  font-weight: bold;
}

.client_section4 .carousel-control-prev,
.client_section4 .carousel-control-next {
  width: 5%;
}

.client_section4 .carousel-indicators li {
  background-color: #26b6da;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 5px;
  opacity: 0.5;
}

.client_section4 .carousel-indicators li.active {
  opacity: 1;
  background-color: #002471;
}



/* info section */
.info_section {
  position: relative;
  background-color: #003471;
  color: #ffffff;
  padding: 1% ; /* Reduce padding */
}

.info_section h5 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 16px; /* Reduce font size */
  margin-bottom: 10px; /* Reduce margin */
}

.info_section .info_logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px; /* Reduce space */
}

.info_section .info_logo .navbar-brand {
  font-size: 22px; /* Reduce logo text size */
}

/*social box*/

.info_section .social_box {
  display: flex;
  align-items: center;
}

.info_section .social_box a {
  width: 25px; /* Make icons smaller */
  height: 25px;
  font-size: 20px; /* Reduce icon size */
  margin-right: 3px;
}

.info_section p {
  font-size: 20px; /* Reduce text size */
  margin-bottom: 20px; /* Reduce space */
}

.info_section ul li {
  margin: 2px 0; /* Reduce list spacing */
}

.info_section .info_contact {
  margin: 20px 0; /* Reduce spacing */
}

.info_section .info_contact .link-box {
  margin: 10px 0; /* Reduce spacing */
}

.info_section .info_contact .link-box i {
  width: 35px; /* Reduce icon size */
  height: 35px;
  line-height: 35px;
  font-size: 16px;
}

.info_form form input {
  height: 35px; /* Reduce input field height */
  font-size: 14px;
}

.info_form form button {
  width: 35px;
  height: 35px;
  font-size: 10px;
}


/* end info section */
/* footer section*/
.footer_section {
  position: relative;
  background-color: #ffffff;
  text-align: center;
  padding: 10px 0; /* Reduce overall padding */
}

.footer_section p {
  color: #003471;
  padding: 10px 0; /* Reduce padding */
  margin: 0;
  font-size: 14px; /* Reduce font size */
}

.footer_section p a {
  color: inherit;
}

/*# sourceMappingURL=style.css.map */