/* **************************************** Navigation Dropdown Code */
/* 🟨 Navbar Basics */
.custom-navbar {
  padding: 0;
  background-color: rgb(255, 123, 0);
}

.navbar {
  min-height: 70px;
  border: 2px solid #00000014;
}

.navbar-nav {
  margin-left: auto;
}

.navbar-nav .nav-link {
  padding: 20px 16px;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  background-color: #ff9837;
  color: white !important;
  border-radius: 0;
}

/* ✅ Fix Hamburger Position */
.navbar-toggler {
  margin-left: auto;
  margin-right: 0;
  padding: 0.25rem 0.5rem;
  border: none;
  outline: none;
}

/* 🟨 Dropdown Menus */
.dropdown-menu {
  background-color: #ff9837;
  border: 1px solid white;
  display: none;
  animation: slideDown 0.3s ease forwards;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

.dropdown-menu .dropdown-item {
  padding: 15px 20px;
  color: black;
  border-bottom: 1px solid rgba(0, 0, 0, 0.644);
}

.dropdown-menu .dropdown-item:hover {
  background-color: rgb(0, 228, 0);
  color: white;
}

/* 🟨 Submenu Styling */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  border: 1px solid rgba(49, 49, 49, 0.61);
}

/* 👉 Arrow for Submenus */
.dropdown-submenu>.dropdown-item::after {
  /*content: ">";*/
  rotate: 270deg;
  float: right;
  font-size: 20px;
  align-items: center;
  margin-left: 10px;
}
.navbar-logo{
  width: 100px;
}

/* ➕ Show "+" on Mobile Only */
.mobile-arrow {
  font-weight: bold;
  margin-left: 5px;
}

.d-lg-none {
  display: none;
}

@media (max-width: 991.98px) {
  .d-lg-none {
    display: inline;
    font-size: 20px;
    color: #ff9837;
    font-weight: bold;
    float: right;
  }
@media(max-width:500px){
  .dropdown-toggle::after {
    display: none;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
}

  /* Mobile Hamburger Position Fix */
  .navbar-toggler {
    margin-left: auto;
    margin-right: 30px;
    /* ⬅️ This keeps it inside nicely */
  }

  /* Disable hover dropdowns */
  .dropdown-menu {
    display: none !important;
  }

  /* Allow expanding dropdowns on click */
  .dropdown-menu.show {
    display: block !important;
  }

  .dropdown-submenu>.dropdown-menu {
    left: 0;
    top: auto;
    margin-left: 0;
    padding-left: 15px;
  }
}

/* ⬇️ Animation for Dropdown */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* End */

/***************************************************************** TopBar Section*/
/*
.inner-page-heading {
  background: #1a55a5;
  padding: 50px 0;
  overflow: hidden;
  text-align: center;
  background: url(../image/service/desktop.jpg) no-repeat fixed #fff 50% bottom;
  background-size: cover;
}

.inner-page-heading h2 {
  color: #ffffff;
  margin-top: 5%;
  font-size: 32px;
}

.path-link {
  margin-top: 1em;
}

.path-link li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px 0 0;
  font-size: 11px;
  letter-spacing: 1px;
  color: #ffe1d0;
}

.path-link a {
  color: #fff;
  font-size: 12px;
}

.text-center {
  text-align: center;
}
*/
/* End */

/* **************************************** Hero Section Code */
body,
html {
  height: 100%;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.hero {
  height: 100vh;
  background: url('https://www.mechamal.com/wp-content/uploads/2021/04/background2.jpg') no-repeat center center/cover;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  position: relative;
}

.hero-content {
  max-width: 600px;
  animation: fadeInUp 2s ease-in-out;
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 300;
}

.hero h1 strong {
  font-weight: 700;
}

.hero p {
  font-size: 1rem;
  line-height: 1.6;
  margin-top: 20px;
}

.btn-custom {
  background-color: #ff9c00;
  color: white;
  padding: 12px 35px;
  font-weight: 500;
  margin-top: 30px;
  transition: all 0.3s ease;
}

.btn-custom:hover {
  background-color: #00bf00;
  color: white;
  font-weight: bold;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.quote-icon {
  width: 40px;
  margin-bottom: 15px;
}

.divider {
  width: 100px;
  height: 4px;
  background: #f8be00;
  margin-top: 20px;
}

/* End */

/* **************************************** About Section Code */
.about-section {
  padding: 50px 0;
  background-color: #f4f4f4;
}

.about-heading {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
}

@media (max-width: 768px) {
  .about-section .row {
    flex-direction: column;
  }
}

/* End */

/* **************************************** Service Icons Code */
.logos-section {
  padding: 50px 0;
  background-color: #fff;
}

.logo-item {
  text-align: center;
}

.logo-item i {
  color: #4CAF50;
  margin-bottom: 10px;
}

.logo-item p {
  font-size: 14px;
  color: #333;
}

@media (max-width: 768px) {
  .logos-section .col-md-2 {
    margin-bottom: 30px;
  }
}

/* End */

/* **************************************** Service Slider Code */
/* Basic Styling for Service Slider */
.service-slider {
  background-color: #f4f4f4;
  background-image: url(../image/source/contact.jpg);
  background-position: center;
  background-size: cover;
}

.service-slider .container-fluid{
  background-color: #1a54a586;
}

.slider {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
}

.slider-item {
  text-align: center;
  margin: 10px;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.slider-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.slider-content {
  margin-top: 20px;
  padding: 10px;
}

.slider-heading {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.underline {
  width: 50%;
  height: 3px;
  background-color: #4CAF50;
  position: absolute;
  bottom: 0;
  left: 25%;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-in-out;
}

.slider-heading:hover .underline {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.read-more-btn {
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #4CAF50;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.read-more-btn:hover {
  background-color: #45a049;
}

/* Navigation Arrows */
.slick-prev,
.slick-next {
  font-size: 30px;
  color: #4CAF50;
  z-index: 10;
  display: none;
  background-color: transparent;
  border: none;
  padding: 10px;
}

.slick-prev:hover,
.slick-next:hover {
  color: #2E8B57;
  display: none;
  border: none;
}

.slick-prev:before,
.slick-next:before {
  content: '';
  display: none;;
}

@media (max-width: 768px) {
  .slider {
    display: block;
  }

  .slider-item {
    margin-bottom: 20px;
  }

  .slider-heading {
    font-size: 20px;
  }
}

/* End */

/* **************************************** Enquiry Section Code */
.contact-section {
  display: flex;
  justify-content: space-between;
  margin: 50px 0;
}

.contact-left {
  width: 45%;
}

.contact-left h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-left ul {
  list-style: none;
  padding: 0;
}

.contact-left ul li {
  margin-bottom: 15px;
  font-size: 16px;
}

.contact-left img {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

.contact-right {
  width: 45%;
}

.contact-right h3 {
  font-size: 24px;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: #45a049;
}

@media(max-width:400px){
  .contact-section{
    display: block;
  }
  .contact-left{
    width: 100%;
  }
  .contact-right{
    width: 100%;
  }
}
/* End */

/* **************************************** ScrollButton Code */
#scrollProgressWrapper {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
}

#scrollTopBtn {
  width: 45px;
  height: 45px;
  font-size: 24px;
  line-height: 1;
  display: none;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

#scrollProgressBar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(to right, #007bff, #00c6ff);
  width: 0%;
  z-index: 9998;
  transition: width 0.25s ease-out;
}

/* End */

/* **************************************** Vision And Mission Code */
.vision-mission {
  background: url('../image/source/contact.jpg') no-repeat center center / cover;
  position: relative;
  color: #fff;
}

.overlay {
  background-color: rgba(0, 123, 255, 0.5);
  /* Blue with transparency */
  width: 100%;
  height: 100%;
  min-height: 100vh;
  padding: 40px;
}
@media(max-width:400px){
  .overlay{
    padding: 0;
  }
}

.vm-box {
  background-color: rgba(255, 255, 255, 0.85);
  color: #000;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.text-justify {
  text-align: justify;
}

/* End */

/* **************************************** Navigation Dropdown Code */
/* End */

/* **************************************** Navigation Dropdown Code */
/* End */

/* **************************************** Navigation Dropdown Code */
/* End */

/* **************************************** Navigation Dropdown Code */
/* End */

/* **************************************** Navigation Dropdown Code */
/* End */

/* **************************************** Contact Page Code */
.contact-header {
  font-family: 'Abril Fatface', cursive;
  color: #027b7f;
  margin-bottom: 40px;
}

.contact-box {
  background: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h4 {
  color: #027b7f;
  margin-top: 20px;
}

.contact-info p,
.contact-info a {
  color: #333;
  margin-bottom: 5px;
  font-size: 15px;
}

.contact-info a:hover {
  color: #007bff;
  text-decoration: underline;
}

.form-control {
  margin-bottom: 15px;
  border-radius: 6px;
}

iframe {
  width: 100%;
  border: none;
  height: 300px;
  border-radius: 10px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .contact-box {
    padding: 20px;
  }
}

/* End */

/* **************************************** Footer Code */
.footer {
  background-color: #333;
  color: white;
  padding: 40px 0 0;
}

.footer .row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}

.footer .col {
  width: 23%;
}

.footer h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer .copyright {
  text-align: center;
  font-size: 14px;
  padding: 10px;
  background-color: #222;
}

/* End */