/***

==================================================================================
  Fonts
==================================================================================

***/

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Chicle&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap");

/***

=================================================================================
    Colors
=================================================================================


***/

:root {
  --dkbrown: #331c01;
  --lgbrown: #4b3f31;
  --bgcolor: rgb(255, 205, 163);
  --text: #080808;
  --yellow: #ffd700;
  --white: #ffffff;
  --brown: #8f1a1a;
  --lg: #9afa6d;
  --act: #ff4901;
  --acb: #ff9f1c;
}
/***

=================================================================================
    Reset
=================================================================================

***/

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  user-select: none;
}

/***

=================================================================================
 Global Settings
=================================================================================

***/

body {
  font-family: "Roboto", serif;
  font-weight: 400px;
  width: 100%;
  height: auto;
  background-color: rgb(255, 205, 163);
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.02px;
}

li {
  list-style: none;
}

a {
  cursor: pointer;
  /* user-select: none;*/
}

/***

=================================================================================
 Top navbar
=================================================================================

***/

.top-navbar {
  background: var(--dkbrown);
  height: 100px;
  border-bottom: 2px solid #fcd3a1;
  display: flex;
  align-items: center;
}

.top-item {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: 0.3s ease;
  cursor: pointer;
}

/* Attractive icon styling */
.top-item i {
  font-size: 32px;
  color: rgb(255, 229, 180);
  transition: 0.3s ease;
}
.top-item .bi {
  font-size: 30px;
}

.top-item .label {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.top-item .value,
.top-item .value a {
  font-size: 15px;
  color: #ffffff;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Hover animation */
.top-item:hover i {
  transform: scale(1.15);
  color: yellow;
}

.top-item:hover .label,
.top-item:hover .value a {
  color: yellow;
}

@media (max-width: 991px) {
  .top-navbar {
    background: var(--dkbrown);
    height: 80px;
  }

  /* Hide Top Logo */
  .top-logo-box {
    display: none !important;
  }

  /* Remove Labels */
  .top-item .label {
    display: none !important;
  }

  /* Center Contact Info */
  .top-info-box {
    width: 100% !important;
    align-items: center !important;
    text-align: center;
  }
  .top-item i {
    font-size: 18px;
  }
  .top-item .bi {
    font-size: 18px;
  }
  top-item .value,
  .top-item .value a {
    font-size: 13px;
    color: #ffffff;
  }

  .top-item {
    gap: 8px;
  }
}
/***

=================================================================================
 Bottom navbar
=================================================================================

***/

.bottom-navbar {
  background-color: #ffffff; /* Light grey */
  /* box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);*/
  border-bottom: 1.5px solid #6e5a3f56;
}
.navlo {
  display: none;
}
.sticky-top:active {
  display: flex !important;
}
.navbar-logo {
  margin-left: 20px;
  border: 0.5px solid var(--lg);
  box-shadow: rgb(156, 155, 155) 0 0 10px;
  animation: logo-appear 2s ease-in-out, logo-pulse 25s infinite;
}

@keyframes logo-appear {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.navbar-nav .nav-link {
  color: #333;
  font-size: 15px;
  font-weight: 600;
  margin-right: 30px;
  transition: color 0.3s, background-color 0.3s;
}
.navbar-nav .nav-link:hover {
  color: #411805;
  border-bottom: 2px solid #fc9a74;
}
.navbar-nav .nav-link.active {
  color: #ad140f; /* Dark blue */
  border-bottom: 2px solid #d43302;
}

.dropdown-menu {
  background-color: #ff5404; /* Light blue */
}
.dropdown-menu .dropdown-item:hover {
  background-color: #ff6600; /* Darker blue */
  color: #e5f5e6;
}
.dropdown li a {
  font-size: 15px;
  font-weight: 600;
}
.navbar-toggler {
  border: none;
  background: transparent;
  outline: none;
}

.navbar-toggler span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 6px auto;
  background-color: #ad2503;

  transition: all 0.3s ease-in-out;
}

.navbar-toggler.collapsed span:nth-child(1) {
  transform: rotate(0deg) translateY(0);
}

.navbar-toggler.collapsed span:nth-child(2) {
  opacity: 1;
}

.navbar-toggler.collapsed span:nth-child(3) {
  transform: rotate(0deg) translateY(0);
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}
.navbar-toggler:not(.collapsed) span:nth-child(2) {
  opacity: 0;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0.5px;
  transition: all 3s ease-in-out;
}

/* Hide Bootstrap's default dropdown arrow */
@media (max-width: 991px) {
  .navbar-nav .nav-item .dropdown-toggle::after {
    display: none;
  }
  .navlo {
    display: flex;
  }
  .navbar-logo {
    margin-left: 12px;
    height: 30;
  }
  /* Custom button style */
  .dropdown-toggle-btn {
    border: none;
    background: none;
    padding: 0 10px;
    font-size: 16px;
    color: #33333300;
    cursor: pointer;
  }

  /* Hide dropdown by default on mobile */
  .dropdown:hover .dropdown-menu {
    display: none;
    position: static; /* Prevents overlay issues */
    box-shadow: none;
    background: #f8f9fa;
  }

  /* When dropdown is active, show it */
  .dropdown.show .dropdown-menu {
    display: block;
  }

  .nav-item {
    display: block;
    align-items: center;
    justify-content: space-between;
  }

  .nav-item a.nav-link {
    flex: 1;
  }

  /* Show button only on mobile */
  .dropdown-toggle-btn {
    display: block;
  }
  .drop {
    display: flex;
  }
}

@media (min-width: 992px) {
  .disview {
    display: none !important; /* Hide button on larger screens */
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.fa-chevron-down {
  color: #000;
}

.navbar-nav .nav-link {
  color: #000;
  font-size: 15px;
  font-weight: 600;
  margin-right: 30px;
  transition: color 0.3s, background-color 0.3s;
}
/***

=================================================================================
  Breadcrum 
=================================================================================

***/

.breadcrumb-wrapper {
  font-size: 15px;
}
.breadcrumb {
  height: 25px;
  background: transparent;
  margin-bottom: 0;
  border-bottom: 2px solid #ffcdb82d;
}

.breadcrumb-link {
  color: #ee7849;
  text-decoration: none;
  font-weight: 500;
  padding-left: 25px;
}

.breadcrumb-link:hover {
  text-decoration: underline;
  color: #fc5000;
}

@media (max-width: 992px) {
  .breadcrumb-wrapper {
    font-size: 12px;
  }
  .breadcrumb-link {
    padding-left: 15px;
  }
}
/***

=================================================================================
 Hero slider
=================================================================================

***/

.hero-sliders {
  font-family: "Inter", sans-serif;
  z-index: 555;
}
.hero-slider-container {
  position: relative;
  width: 100%;
  max-width: 1550px;
  height: 70vh;
  min-height: 500px;
  max-height: 800px;
  overflow: hidden;

  border-radius: 10px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
}
.hero-slider-container::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/Bg image.jpg") center/cover no-repeat fixed;
  z-index: -1;
  opacity: 0.3;
}
/* Slider Wrapper */
.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Slides */
.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
  display: flex;
  align-items: center;
  padding: 0px 2%;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

/* Slide Content Layout */
.slide-content {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

/* Image Container with Professional Animation */
.image-container {
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 20px;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 750px;
  height: auto;
  max-height: 80%;
  overflow: hidden;
  border-radius: 5px;
}

.slide-image {
  width: 100%;
  height: 98%;
  object-fit: contain;
  border: 2px solid white;
  border-radius: 5px;
  transform: scale(1.1) translateX(-50px);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1),
    opacity 1.2s ease;
}

.slide.active .slide-image {
  transform: scale(1) translateX(0);
  opacity: 1;
}

/* Content Container */
.content-container {
  flex: 1;
  padding-left: 60px;
}

/* Title with Professional Animation */
.slide-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 20px;
  line-height: 1.2;
  background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(50px);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.3s,
    opacity 1s ease 0.3s;
}

.slide.active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slide-tagline {
  font-size: 1rem;
  color: var(--text);
  line-height: 2.2;
  margin-bottom: 35px;
  font-weight: 400;
  max-width: 90%;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s,
    opacity 1s ease 0.5s;
}

.slide.active .slide-tagline {
  opacity: 1;
  transform: translateY(0);
}

/* Buttons */
.slide-buttons {
  display: flex;
  gap: 25px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(30px);
  transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.7s,
    opacity 1s ease 0.7s;
}

.slide.active .slide-buttons {
  opacity: 1;
  transform: translateY(0);
}

.btn-system {
  background: linear-gradient(135deg, #ffffff 0%, #fa8900 100%);
  color: rgb(255, 255, 255);
  border: none;
  padding: 16px 38px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(207, 76, 0, 0.2);
}

.btn-system:hover {
  background: linear-gradient(135deg, #fbfbfb 0%, #ffc401 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212, 153, 128, 0.3);
  color: yellow;
}

.btn-video {
  background: linear-gradient(135deg, #f8f5f5 0%, #ffc401 100%);
  color: rgb(255, 255, 255);
  border: none;
  padding: 16px 38px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(232, 131, 63, 0.2);
}

.btn-video:hover {
  background: linear-gradient(135deg, #ffffff 0%, #fa8900 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(229, 62, 62, 0.3);
  color: yellow;
}

.btn-video i {
  margin-right: 10px;
}

/* Navigation Arrows - Transparent with hover color */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
}

.nav-arrow {
  background: transparent rgba(255, 255, 255, 0.527);
  border: 2px solid rgba(45, 55, 72, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #2d3748;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.3;
}

.nav-arrow:hover {
  background: rgba(253, 150, 68, 0.1);
  border-color: #fd9644;
  color: #fd9644;
  opacity: 0.4;
  transform: scale(1.05);
}

/* Radio Buttons for Slide Selection */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 16px;
  z-index: 10;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(45, 55, 72, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot:hover {
  background-color: rgba(253, 150, 68, 0.5);
  transform: scale(1.2);
}

.slider-dot.active {
  background-color: #fd9644;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(253, 150, 68, 0.4);
}

/* Responsive Styles */
/* For TV and Large Screens */
@media (min-width: 1600px) {
  .slide-title {
    font-size: 3.5rem;
  }

  .slide-tagline {
    font-size: 1.8rem;
  }

  .btn-system,
  .btn-video {
    padding: 20px 45px;
    font-size: 1.3rem;
  }

  .nav-arrow {
    width: 80px;
    height: 80px;
    font-size: 2rem;
  }

  .image-wrapper {
    max-width: 700px;
  }
}

/* For Laptops and Desktops */
@media (max-width: 1199px) {
  .slide-title {
    font-size: 2.6rem;
  }

  .slide-tagline {
    font-size: 1.3rem;
  }

  .image-container {
    padding-right: 40px;
  }

  .content-container {
    padding-left: 40px;
  }

  .image-wrapper {
    max-width: 500px;
  }
}

/* For Tablets */
@media (max-width: 991px) {
  .hero-slider-container {
    height: 110vh;
  }

  .slide-content {
    flex-direction: column;
    justify-content: center;
  }

  .image-container {
    padding-right: 0;
    padding-bottom: 0px;
    height: 70%;
    width: 100%;
  }

  .content-container {
    padding-left: 0;
    text-align: center;
    height: 30%;
    width: 100%;
  }

  .slide-title {
    font-size: 1.6rem;
  }

  .slide-tagline {
    font-size: 1.2rem;
    max-width: 100%;
    text-align: justify;
    margin: 0 auto;
  }

  .slide-buttons {
    justify-content: center;
  }

  .slider-nav {
    padding: 0 25px;
  }

  .nav-arrow {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .slider-dots {
    bottom: 30px;
  }

  .image-wrapper {
    max-width: 450px;
  }
}

/* For Mobile Phones */
@media (max-width: 767px) {
  .hero-slider-container {
    height: 90vh;
    min-height: 520px;
    max-height: 550px;
  }

  .image-container {
    height: auto;
  }
  .slide {
    padding: 25px 10px;
  }

  .slide-title {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }

  .slide-tagline {
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .slide-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 5px;
    justify-content: center;
  }

  .btn-system,
  .btn-video {
    padding: 6px 10px;
    font-size: 0.9rem;
    border-radius: 10px;
    min-width: 140px;
  }

  .slider-nav {
    padding: 0 15px;
    top: 150px;
  }

  .nav-arrow {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    opacity: 0.7;
    border: 1px solid rgba(72, 58, 45, 0.342);
  }

  .slider-dots {
    bottom: 25px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .slider-dot.active {
    transform: scale(1.2);
  }

  .image-wrapper {
    max-width: 400px;
  }
}

/* For Small Mobile Devices */
@media (max-width: 480px) {
  .hero-slider-container {
    height: 70vh;
    min-height: 380px;
    border-radius: 15px;
  }

  .slide-title {
    font-size: 1.1rem;
  }

  .slide-tagline {
    font-size: 0.75rem;
    margin-bottom: 10px;
    text-align: justify;
    margin: 0px 15px 10px 15px;
  }
  .nav-arrow {
    width: 30px;
    height: 30px;
  }
  .slide-buttons {
    gap: 10px;
  }

  .btn-system,
  .btn-video {
    padding: 2px 6px;
    font-size: 0.5rem;
    min-width: 100px;
    border-radius: 8px;
  }

  .nav-arrow {
    width: 30px;
    height: 30px;
    font-size: 1rem;
  }

  .slider-dots {
    bottom: 10px;
    gap: 10px;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
  }
  .image-container {
    padding-left: 0;
  }
  .image-wrapper {
    max-width: 380px;
  }
}

/* For Very Small Devices */
@media (max-width: 380px) {
  .slide-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-system,
  .btn-video {
    width: 100%;
    max-width: 250px;
  }

  .nav-arrow {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .image-wrapper {
    max-width: 280px;
  }
}

/***

=================================================================================
Service section content
=================================================================================

***/
.serv-sec {
  margin-top: -50px;
  overflow-x: hidden;
}
/*.services-section {
  padding: 10px 0;
  
}*/
.section-title .section-heading {
  font-size: 32px;
  color: #510f04;
  font-weight: bold;
  margin-bottom: 30px;
}
.service-row {
  margin-bottom: 20px;
}
.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  box-shadow: 0 4px 6px rgb(103, 27, 27);
  overflow: hidden;
  border-radius: 10px;
}
.service-card:hover {
  /* transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);*/
  border-color: #792907;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(82, 2, 2, 0.797);
  transition: all 0.3s ease-in-out;
}
.service-card .card-img-top {
  padding: 5px;
  height: 300px;
}
.service-card .card-title {
  font-size: 18px;
  color: #752b14;
  font-weight: bold;
  margin: 15px 20px;
}
.service-card .card-body {
  padding: 20px;
}
.service-card .btn {
  background-color: #f97316;
  color: #fff;
  transition: background-color 0.3s ease;
}
.service-card .btn:hover {
  background-color: #994102;
}

@media (max-width: 767px) {
  .section-title .section-heading {
    font-size: 22px;
  }
  .sct {
    margin-bottom: 20px;
  }
  .service-card .card-body {
    padding: 20px;
  }
}

/***

=================================================================================
 About Section
=================================================================================

***/

.about-parking {
  padding: 10px 0px;
  background: linear-gradient(135deg, #fffdfa, #ffffff);
}

.about-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-parking h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 15px;
}

.about-parking h2 span {
  color: #f97316;
}

.about-text {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.55;
  margin-bottom: 12px;
  text-align: justify;
}

.about-points {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.about-points li {
  font-size: 16px;
  color: #130f0e;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
}

.about-points li::before {
  content: "✔";
  color: #f97316;
  font-weight: bold;
  margin-right: 10px;
}

/* IMAGE */
.about-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image:hover img {
  transform: scale(1.06);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-parking {
    padding: 20px 20px;
  }

  .about-parking h2 {
    font-size: 30px;
  }
}
@media (max-width: 385px) {
  .about-parking h2 {
    font-size: 21px;
  }
  .about-text {
    font-size: 14px;
    text-align: justify;
    margin-bottom: 12px;
  }
  .about-points li {
    font-size: 12px;
  }
}

/***

=================================================================================
 Why Choose Section
=================================================================================

***/

.why-choose {
  padding: 15px 0;
  background: #fdfdfd;
  margin-bottom: 5px;
}

.why-box {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-tag {
  font-size: 14px;
  font-weight: 600;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  display: inline-block;
}

.why-choose h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-choose h2 span {
  color: #f97316;
}

.why-desc {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.4;
  max-width: 750px;
  margin: 0 auto 30px;
  text-align: justify;
}

/* FEATURES */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-item {
  background: #ffffff;
  padding: 25px 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.171);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.why-item h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.why-item p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
  text-align: justify;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-choose {
    margin-top: -105px;
  }
}

@media (max-width: 480px) {
  .why-choose {
    margin-top: -125px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-choose h2 {
    font-size: 24px;
  }
}

/***

=================================================================================
Contat form section content
=================================================================================

***/
.getin {
  color: rgb(250, 176, 66);
  font-weight: 600;
  font-size: 25px;
  margin-bottom: 30px;
}
.getin span {
  color: rgb(100, 44, 6);
  font-weight: 700;
  font-size: 50px;
  -webkit-text-stroke: 1.6px #ffffff;
}
.contact-section {
  background-color: #351f06;
  padding: 5px 0px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  margin: 0px 0px;
  letter-spacing: 0.4px;
  border-top: 0.3px solid rgb(221, 221, 221);
}
.contact-box1 {
  background: transparent;
  padding: 30px;
  /*   border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);*/
}

/* Contact Details */
.contact-box1 h3 {
  color: #ff854c;
  margin: 15px 0px;
  font-size: 25px;
  font-weight: 700;
}
.contact-box1 h6 {
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 400;
}
.contact-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contact-box1 .contact-info i {
  font-size: 22px;
  color: #fac498;
  margin-right: 15px;
}
.contact-info p {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: white;
}

/* Form Styling */
.form-container {
  margin: 30px 0px;
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.form-control {
  border-radius: 5px;
  font-size: 16px;
}
.form-container .btn-dark-orange {
  background-color: #6e1c0d;
  color: #fff;
  font-size: 18px;
  padding: 7px;
  border-radius: 5px;
  transition: 0.3s ease-in-out;
  width: 30%;
  height: 50px;
  border: 2px solid rgb(117, 40, 9);
}
.form-container .btn-dark-orange:hover {
  background-color: rgb(117, 43, 9);
  border: 2px solid rgb(5, 29, 22);
  color: #fff;
}

/* Dropdown Styling */
.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  cursor: pointer;
}
.form-container .dropdown-wrapper {
  position: relative;
}
.form-container .dropdown-icon {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #086656;
  transition: color 0.3s;
  pointer-events: none;
}
.form-container .dropdown:hover {
  background-color: #0b7741;
}
.form-container .dropdown-wrapper:hover .form-container.dropdown-icon,
.form-container.dropdown-wrapper:focus-within .form-container .dropdown-icon {
  color: #0b7741;
}
/* Input Field Active State */
/*.form-control:focus {
  border-color: #00ff6a !important;
  box-shadow: 0 0 8px rgba(255, 115, 0, 0.5) !important;
  outline: none !important;
  transition: 0.3s ease-in-out;
  }*/

/* Responsive Design */
@media (max-width: 991px) {
  .contact-box1 {
    text-align: center;
  }
  .contact-info {
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .contact-section {
    padding: 30px 15px;
  }
  .contact-box1 {
    padding: 20px;
  }
  .contact-details h3 {
    font-size: 22px;
  }
  .contact-info p {
    font-size: 16px;
  }
  .form-container {
    padding: 20px;
  }
  .btn-dark-orange {
    font-size: 16px;
    padding: 10px;
  }
  .getin {
    font-size: 23px;
    margin-bottom: 30px;
  }
  .getin span {
    font-size: 35px;
    -webkit-text-stroke: 1.1px #ffffff;
  }
  .form-container .btn-dark-orange {
    width: 50%;
    height: 40px;
    padding: 2px;
  }
}
@media (min-width: 1600px) {
  .contact-section {
    padding: 80px 0;
  }
  .contact-box1 {
    padding: 40px;
  }
  .form-container {
    padding: 40px;
  }
  .form-container .btn-dark-orange {
    font-size: 20px;
    padding: 15px;
  }
}
/***

=================================================================================
 client image logo slider
=================================================================================

***/

/* Background color for entire section */
.client-logo-slider-section {
  width: 100%;
  padding: 30px 2px;
  background:#d3d3d3;
  border-top: 1px solid lightsalmon;
  border-bottom: 0.5px solid lightsalmon;
}

.client-logo-slider-title {
  font-size: 38px;

  margin-bottom: 15px;

  gap: 3px;

  color: rgb(255, 255, 255);
  font-weight: 700;

  -webkit-text-stroke: 1.6px #442300;
}

.client-description {
  font-size: 15px;
  font-weight: semi-bold;
  margin-bottom: 15px;
  color: #535353; /* White text for contrast */
}

.client-logo-slider-container {
  width: 100%;
  overflow: hidden;
  padding: 5px 0px;
  position: relative;
}

.client-logo-slider {
  display: flex;
  width: calc(250px * 10 * 2); /* Adjust based on total slides */
  animation: slideAnimation 40s linear infinite;
}

.client-logo-slide {
  width: 200px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(250, 225, 171, 0.877);
  overflow: hidden;
  border: 2px solid rgb(255, 255, 255);
}

.client-logo-slide img {
  max-width: 100%;
  max-height: 100%;
}

@keyframes slideAnimation {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pause animation on hover */
.client-logo-slider:hover {
  animation-play-state: paused;
}

/***

=================================================================================
 floading button
=================================================================================

***/

/* Floating Contact Box */
.contact-container {
  position: fixed;
  left: 0;
  bottom: 25px;
  background-color: rgba(201, 201, 201, 0.308);
  color: rgb(250, 104, 6);
  padding: 15px 5px 15px 15px; /* Right side padding 5px */
  border-radius: 0 10px 10px 0;
  z-index: 1000;
  width: 275px;
  display: none; /* Hidden initially */
  transition: all 0.3s ease-in-out;
}

/* Title */
.contact-container h5 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 3px;
  letter-spacing: 0.2px;
}

/* Contact Info */
.contact-info {
  font-size: 14px;
  margin: 1px 0px;
  font-weight: bold;
  display: flex;
  align-items: center;
  letter-spacing: 0.2px;
}
.conph {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: bold;
}
.contact-info i {
  margin-right: 10px;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.remove-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  background: rgb(53, 53, 53);
  color: white;
  border: none;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  font-size: 14px;
  line-height: 1;
  display: none;
  cursor: pointer;
}
/* Show Remove Button on Hover */

.contact-container:hover .remove-btn {
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    width: 235px;
    padding: 10px 5px 10px 10px;
  }
  .contact-container h5 {
    font-size: 14px;
  }
  .contact-info {
    font-size: 12px;
  }
  .contact-info i {
    font-size: 14px;
  }
  .remove-btn {
    display: block;
  }
}

/* Floating button container */

.floating-buttons {
  position: fixed;
  right: 0;
  bottom: 135px;
  display: none;
  flex-direction: column;
  align-items: flex-end;
  z-index: 9999;
  gap: 1px;
}

/* ===== Button Base ===== */
.floating-buttons a {
  width: 40px;
  height: 40px;
  background: #461202fb;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border: 1px solid rgb(255, 213, 0);
  border-right: 0px;
  overflow: hidden;
  transition: width 0.35s ease, background 0.35s ease;
  position: relative;
  border-radius: 7px 0 0 7px;
}

/* ===== Icons ===== */
.floating-buttons a i {
  font-size: 20px;
  min-width: 20px;
}

/* ===== Text ===== */
.float-text {
  margin-left: 14px;
  font-size: 15px;
  font-weight: 500;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  white-space: nowrap;
}

/* ===== Hover Animation ===== */
.floating-buttons a:hover {
  width: 120px;
  background: #470702;
}

.floating-buttons a:hover .float-text {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Individual Colors ===== */
.call {
  background: #333;
}
.whatsapp {
  background: #25d366;
}
.email {
  background: #444;
}

/* ===== Mobile ===== */

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-buttons {
    width: 36px;
  }
  .floating-buttons a {
    width: 30px;
    height: 30px;
    font-size: 15px;
    padding-left: 8px;
    margin-bottom: 0.5px;
    border-radius: 4px 0 0 4px; /* Smooth left corners */
  }
  .floating-buttons a:hover {
    width: 90px;
  }
  .floating-buttons a:not(:hover) {
    width: 35px;
  }
  .floating-buttons a i {
    font-size: 16px;
  }
}

/***

=================================================================================
 Scroll to top button
=================================================================================

***/

#scrollToTop {
  position: fixed;
  bottom: 25px;
  right: 7px;
  width: 35px;
  height: 35px;
  background-color: #fc5c00a0;
  color: white;
  border: 0.5px solid rgb(255, 115, 0);
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  z-index: 1003;
  animation: shake 4.5s ease-in-out infinite;
}
@keyframes shake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-2px);
  }
  50% {
    transform: translateX(2px);
  }
  75% {
    transform: translateX(-2px);
  }
  100% {
    transform: translateX(0);
  }
}

#scrollToTop:hover {
  background-color: #ac1d04;
  transform: scale(1.05);
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 768px) {
  #scrollToTop {
    width: 30px;
    height: 30px;
  }
}

/***
=================================================================
   mail success popup 
=================================================================
 
****/
/* Button Loader */
.loader {
    width: 18px;
    height: 18px;
    border: 3px solid #fff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    display: inline-block;
    animation: spin 0.8s linear infinite;
    margin-left: 8px;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Success Popup */
#successPopup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 99999;
}

.popup-card {
    background: #fff;
    padding: 40px 50px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.checkmark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 4px solid #28a745;
    margin: 0 auto 15px;
    position: relative;
}

.checkmark::after {
    content: '';
    position: absolute;
    left: 16px;
    top: 28px;
    width: 18px;
    height: 8px;
    border-left: 4px solid #28a745;
    border-bottom: 4px solid #28a745;
    transform: rotate(-45deg);
}

      
/***

=================================================================================
 video
=================================================================================

***/
 .video-section{
background:#ffffff;
padding:40px 0;
}

.video-player{
width:60%;
max-width:900px;
margin:auto;
border:4px solid #fff;
border-radius:12px;
box-shadow:0 20px 50px rgba(0,0,0,0.4);
overflow:hidden;
}

.video-player video{
width:100%;
display:block;
}

/* Mobile */
@media (max-width:768px){
.video-player{
width:95%;
}
}
/***

=================================================================================
 footer
=================================================================================

***/

.footer-area {
  background: #331c01;
  color: #cfd8dc;
  letter-spacing: 0.4px;
}

.footer-title {
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 18px;
  position: relative;
}

.footer-title::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #ff9f1c;
  position: absolute;
  left: 0;
  bottom: -6px;
}

.footer-text {
  font-size: 14px;
  line-height: 1.4;
  text-align: justify;
}

.footer-links,
.footer-menu,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-menu li {
  margin-bottom: 8px;
}

/* SAME HOVER FOR PRODUCTS + MENU */
.footer-links a,
.footer-menu a {
  color: #cfd8dc;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.footer-links a:hover,
.footer-menu a:hover {
  color: #ff9f1c;
  letter-spacing: 0.8px;
}

.footer-contact li {
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-contact i {
  color: #ff9f1c;
  margin-right: 8px;
}
.footer-social {
  padding-left: 24px;
}
.footer-social a {
  display: inline-block;
  margin-right: 12px;
  color: #ffffff;
  font-size: 18px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
  color: #ff9f1c;
  transform: translateY(-3px);
}

.footer-contact span {
  padding-left: 27px;
}
/* COMMON WORKING HOURS */
.footer-working-hours {
  font-size: 14px;
  color: #b0bec5;
}

.footer-bottom {
  background: #1b0f04;
  padding: 15px 0;
  font-size: 14px;
  color: #b0bec5;
}

#mobq {
  padding-left: 60px;
}
#mobu {
  padding-left: 20px;
}
.footer-bottom p img {
  width: 20px;
  animation: logo-appear 2s ease-in-out, logo-pulse 9s infinite;

  background-color: rgb(255, 234, 190);

  border: #ffd000 1px solid;
  box-shadow: rgba(248, 229, 175, 0.384) 0 0 10px;
}

@keyframes logo-appear {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes logo-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

@media (max-width: 768px) {
  .footer-text {
    font-size: 14px;
    line-height: 1.4;
  }

  #mobi {
    padding: 0px 35px;
  }
  #mobq {
    padding: 0px 80px;
  }
  #mobu {
    padding: 0px 80px;
  }
  #mobc {
    padding: 0px 50px;
  }
  .footer-bottom span {
    display: block;
  }
  .footer-working-hours span {
    display: block;
  }
  .footer-contact li {
    margin-bottom: 10px;
    line-height: 1.5;
  }

  .footer-links li,
  .footer-menu li {
    margin-bottom: 3px;
  }
}

/***

=================================================================================
About-Us 
=================================================================================

***/

/* HERO */
.hero-about {
  position: relative;
  height: 60vh;
  background: url("../assets/images/abou.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
}
.hero-about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 15, 30, 0.7);
}
.hero-content {
  text-align: justify;
  position: relative;
  color: #ffae00;
  max-width: 850px;
  padding-top: 230px;
}
.hero-content h1 {
  font-size: 50px;
  font-weight: 800;
}
.hero-content p {
  font-size: 18px;
  line-height: 1.4;
}

/* COMMON */
.section-padding {
  padding: 20px 0;
}
.section-title {
  font-size: 38px;
  font-weight: 800;
  color: #2a2a0f;
  margin-left: 10px;
}
.section-title span {
  color: #ff9800;
}

/* CARD DESIGN (USED FOR ABOUT / SUPPORT / VISION / MISSION) */
.support-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.171);
  transition: all 0.4s ease;
}
.support-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.15);
}
.support-box p {
  font-size: 16px;
  line-height: 1.95;
  color: #444;
  text-align: justify;
}

/* CONTACT STRIP */
.support-contact {
  background: #f1f5f9;
  padding: 10px;
  border-radius: 12px;
  margin-top: 25px;
}
.support-contact strong {
  color: #0f172a;
}

/* HERO TEXT ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  animation: fadeUp 1s ease forwards;
}

.hero-content p {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
  animation-delay: 0.4s;
}
@media (max-width: 768px) {
  .support-box p {
    font-size: 14px;
    line-height: 1.6;
  }
  .section-title {
    font-size: 25px;
    font-weight: 800;
  }
  .section-padding {
    padding: 10px 0;
  }
  .hero-about {
    height: 50vh;
  }
  .hero-content h1 {
    padding-top: 110px;
  }
}
/***

=================================================================================
Blog
=================================================================================

***/

/* HERO SECTION */
.hero {
  height: 60vh;
  background: url("../assets/images/blo.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  padding-top: 230px;
  position: relative;
  color: #fff;
  max-width: 900px;
  animation: fadeUp 1.2s ease forwards;
}

.hero-content h1 {
  font-size: 46px;
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}

.hero-content p {
  font-size: 20px;
  line-height: 1.3;
  opacity: 0.95;
  text-align: justify;
  padding: 0px 20px;
}

/* MAIN SECTION */
.section-pad {
  padding: 30px 0;
}

/* BLOG CARD */
.blog-card {
  background: #ffffff;
  padding: 25px 30px;
  border-radius: 22px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.blog-card:nth-child(even) {
  animation-delay: 0.2s;
}

.blog-card h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 25px;
}

.blog-card h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #f59e0b;
  display: block;
  margin-top: 14px;
}

.blog-card p {
  font-size: 17px;
  line-height: 1.7;
  color: #475569;
  text-align: justify;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 28px;
  }
  .hero-content {
    padding-top: 85px;
  }
  .blog-card {
    padding: 15px 25px;
  }
  .blog-card p {
    font-size: 16px;
    line-height: 1.3;
  }
  .blog-card h2 {
    font-size: 20px;
  }
  .hero-content p {
    font-size: 14px;
  }
  .hero {
    height: 30vh;
  }
  .section-pad {
    padding: 20px 0;
  }
}

/***

=================================================================================
Contact-us 
=================================================================================

***/
/* HERO SECTION */
.contact-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../assets/images/cont.jpg") center/cover no-repeat;
  height: 50vh;
  display: flex;
  align-items: center;
  color: #ffda96;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  padding-top: 130px;
  animation: fadeUp 1.2s ease forwards;
}

.contact-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  animation: fadeUp 1.2s ease forwards;
}

/* Get in Touch Section */
.get-in-touch h2 {
  color: #bd4601;
  font-weight: bold;
  padding-top: 40px;
}

.contact-box .fas {
  color: #f08127;
}

.contact-box {
  height: 220px;
  margin-top: 15px;
  margin-bottom: 30px;
  background: rgb(245, 244, 244);
  border: 2px solid #cecece;
  border-radius: 10px;
  transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}

.contact-box:hover {
  border: 2px solid #f79d69;
  transform: translateY(-15px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.733);
  transition: all 0.3s ease-in-out;
  background-color: #e9e9e9;
}
.contact-box h3 {
  color: #303030;
}
.contact-box p {
  font-weight: 500;
  color: #2c2c2c;
}

/* Contact Form Section */

/* Animation Classes */
@keyframes fadeInUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animate__fadeInDown {
  animation-name: fadeInUp;
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

/**Map**/
/* Container Background */
.loccontainer {
  /*max-width: 100%;*/
  background-color: rgb(212, 212, 212);
  padding: 30px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

/* Section Titles */
.loccontainer .section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #2b190a;
  text-align: center;
  position: relative;
  margin-bottom: 5px;
}
.loccontainer .section-title::after {
  content: "";
  width: 150px;
  height: 2px;
  background: #9c9c9c;
  display: block;
  margin: 2px auto;
  border-radius: 2px;
}

/* Map Styling */
.map-container {
  border-radius: 0px;
  height: 350px;
  overflow: hidden;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Paragraph Layout */
@media (max-width: 576px) {
  .container {
    padding: 10px;
  }
}

/***

=================================================================================
Products page 
=================================================================================

***/

/* HERO SECTION */
.hero-product {
  height: 50vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../assets/images/multistory-parking.jpg") center/cover no-repeat;
  padding-top: 180px;
  color: #ffc653;
}

/*** service-card Section ***/
.service-card {
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.service-card h4 {
  text-align: start;
  color: #6d1d0b;
  font-weight: 600;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.service-card img {
  max-height: 400px;
  object-fit: cover;
  padding: 15px;
}
@media (max-width: 768px) {
  .service-card {
    flex-direction: column !important;
  }
  .service-card .image,
  .service-card .content {
    text-align: justify;
  }
  .service-card img {
    width: 100%;
    max-height: 400px;
  }
  .service-card h4 {
    font-size: 19px;
  }
}

.ind-top-section {
  margin-top: -50px;
  text-align: justify;
}

/* Heading styles */
.ind-top {
  font-size: 2rem;
  color: #8a2608;
  font-weight: bold;
  line-height: 1.3;
}

.ind-top-section .row h2 {
  font-size: 1.5rem;
  color: #80210c;
  font-weight: bold;
  margin-top: 30px;
}

/* Paragraph styles */
p.lead {
  font-size: 1rem;
  color: #424242;
  font-weight: normal; /* Ensures text is not bold */
  line-height: 1.6;
  text-align: justify;
}

/* Container margin adjustments */
.container {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Custom spacing for sections */
.mt-5 {
  margin-top: 50px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

/* Image Animation */
.animate__fadeInright {
  animation: fadeInright 1.2s ease-in-out;
}

/* Custom Animation Keyframes */
@keyframes fadeInright {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Add responsiveness for small screens */
@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  p.lead {
    font-size: 0.95rem;
    line-height: 0.8px;
  }
  .ind-top {
    font-size: 1.5rem;
    color: #8a3308;
    font-weight: bold;
    line-height: 1;
  }

  .ind-top-section .row h2 {
    font-size: 1.1rem;
    color: #80370c;
    font-weight: bold;
    margin-top: 30px;
  }

  /* Paragraph styles */
  p.lead {
    font-size: 0.8rem;
    color: #424242;
    font-weight: normal; /* Ensures text is not bold */
    line-height: 0.5;
  }
}

/*-- getcta--*/
.get-cta {
  background: rgb(255, 255, 255);
  padding: 0px 20px;
  text-align: left;
}

.get-cta h2 {
  font-size: 23px;
  font-weight: 700;
  padding: 0px 5px;
  color: rgb(124, 0, 0);
}

.get-cta p {
  font-size: 16px;
  line-height: 1.6;
  max-width: 1300px;
  margin: auto;
  color: black;
  text-align: justify;
}

.get-cta strong,
.get-cta b {
  color: #010383;
}
.getcta {
  background: rgb(255, 255, 206);
  padding: 10px;
}
.getcta:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.733);
  transition: all 0.3s ease-in-out;
}
/* Responsive */
@media (max-width: 768px) {
  .get-cta h2 {
    font-size: 18px;
  }

  .get-cta p {
    font-size: 14px;

    line-height: 1.4;
  }
}

/***

=================================================================================
 two post page
=================================================================================

***/

/* HERO */
.two-hero {
  position: relative;
  height: 65vh;
  background: url("../assets/images/twoposthero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  -webkit-text-stroke: 0.5px #ffffff;
}
.canti-hero {
  position: relative;
  height: 65vh;
  background: url("../assets/images/cantileverhero.png") center / cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  -webkit-text-stroke: 0.5px #ffffff;
}

.four-hero {
  position: relative;
  height: 65vh;
  background: url("../assets/images/fourposthero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  -webkit-text-stroke: 0.5px #ffffff;
}

.pitfour-hero {
  position: relative;
  height: 65vh;
  background: url("../assets/images/pitfourhero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  -webkit-text-stroke: 0.5px #ffffff;
}

.threelevel-hero {
  position: relative;
  height: 65vh;
  background: url("../assets/images/threelevelhero.png") center / cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  -webkit-text-stroke: 0.5px #ffffff;
}

.puzzle-hero {
  position: relative;
  height: 65vh;
  background: url("../assets/images/puzzlehero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  -webkit-text-stroke: 0.5px #ffffff;
}

.pit-puzzle-hero {
  position: relative;
  height: 65vh;
  background: url("../assets/images/pitpuzzlehero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  -webkit-text-stroke: 0.5px #ffffff;
}

.towermultilevel-hero {
  position: relative;
  height: 65vh;
  background: url("../assets/images/towerhero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  -webkit-text-stroke: 0.5px #ffffff;
}

.bike-hero {
  position: relative;
  height: 65vh;
  background: url("../assets/images/bikehero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  -webkit-text-stroke: 0.5px #ffffff;
}
.carparkingservice-hero {
  position: relative;
  height: 65vh;
  background: url("../assets/images/carhero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  -webkit-text-stroke: 0.5px #ffffff;
}

.fabrication-hero {
  position: relative;
  height: 65vh;
  background: url("../assets/images/fabricationhero.png") center / cover
    no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  -webkit-text-stroke: 0.5px #ffffff;
}

.goodslift-hero {
  position: relative;
  height: 65vh;
  background: url("../assets/images/goodshero.png") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  -webkit-text-stroke: 0.5px #ffffff;
}

.pro-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.541);
}

.pro-content {
  position: relative;
  max-width: 850px;
  color: #ff410c;
  animation: fadeUp 1.2s ease forwards;
  padding-top: 250px;
}

.pro-content h1 {
  font-size: 42px;
  padding-top: 80px;
  font-weight: 700;
}
.com-title {
  margin-top: 30px;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 5px;
  color: #02046d;
}

.section-title1 {
  font-size: 28px;
  margin-bottom: 5px;
  color: #691a00;
}

.section1 {
  padding: 20px 8%;
  background: #fff;
}

.section1:nth-child(even) {
  background: #f9fbfd;
}

/* HIGHLIGHTS */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 25px;
}

.feature-box {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-8px);
}

.feature-box h4 {
  font-size: 22px;
  color: #ff7a18;
  margin-bottom: 10px;
}
.feature-box p {
  text-align: justify;
}
.para {
  text-align: justify;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .para {
    line-height: 1.3;
  }

  .section-title1 {
    font-size: 23px;
    margin-bottom: 5px;
  }
  .pro-content h1 {
    font-size: 30px;
    padding-top: 90px;
    font-weight: 700;
  }
  .feature-box h4 {
    font-size: 18px;
  }

  .section1 {
    padding: 10px 4%;
  }
}
/***

=================================================================================
Specification-image-table
=================================================================================

***/

.Spec-table {
  background-color: rgb(255, 255, 255);
  height: auto;
  border: 2px solid rgb(224, 222, 222);
  margin: 10px;
}
/* Custom Styles */
.Spec-table h3 {
  color: #970303; /* Dark Blue Heading */
  padding-bottom: 5px;
  font-weight: bold;
  border-bottom: 3px solid #a8a8a8;
  width: fit-content;
  text-align: center;
}

.Spec-table .table {
  width: 100%;
  max-width: 700px;
  margin: auto;
  border: 2px solid #3f4c5a; /* Table border color */
}

.Spec-table .table th {
  background-color: #3f4c5a; /* Header background color */
  color: white;
  text-align: center;
  justify-content: center;
  height: 30px;
}

.table td,
.table th {
  border: 1px solid #3f4c5a; /* Table cell border color */
  padding: -10px;
  margin-bottom: 10px;
}
.Spec-table .img {
  margin-bottom: 25px;
}

.Spec-table .image-hover {
  transition: transform 0.3s ease-in-out;
}

.Spec-table .image-hover:hover {
  transform: scale(1.08);
}

.Spec-table .table td {
  padding-left: 20px;
}

@media (max-width: 768px) {
  .Spec-table .table td {
    padding-left: 15px;
  }
}

/* Heading styles */
.pro-top {
  font-size: 1.5rem;
  color: #962402;
  font-weight: bold;
  line-height: 1.3;
}

.ind-top-section .row h2 {
  font-size: 1.5rem;
  color: #80210c;
  font-weight: bold;
  margin-top: 30px;
}

/* Paragraph styles */
p.lead {
  font-size: 1rem;
  color: #424242;
  font-weight: normal; /* Ensures text is not bold */
  line-height: 1.6;
  text-align: justify;
}

/* Container margin adjustments */
.container {
  margin-top: 30px;
  margin-bottom: 30px;
}

/* Custom spacing for sections */
.mt-5 {
  margin-top: 50px !important;
}

.mt-3 {
  margin-top: 30px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

/* Image Animation */
.animate__fadeInright {
  animation: fadeInright 1.2s ease-in-out;
}

/* Custom Animation Keyframes */
@keyframes fadeInright {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Add responsiveness for small screens */
@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 1.75rem;
  }
  p.lead {
    font-size: 0.95rem;
    line-height: 0.6px;
  }
  .pro-top {
    font-size: 1.2rem;
    color: #8a3308;
    font-weight: bold;
    line-height: 1.2;
  }

  .ind-top-section .row h2 {
    font-size: 1.1rem;
    color: #80370c;
    font-weight: bold;
    margin-top: 30px;
  }
}
