
:root {
  --white-color:                  #ffffff;
  --primary-color:                #BC6C25;
  --secondary-color:              #4D4D49;
  --section-bg-color:             #b78752;
  --custom-btn-bg-color:          #BC6C25;
  --custom-btn-bg-hover-color:    #DDA15E;
  --dark-color:                   #000000;
  --p-color:                      #717275;
  --border-color:                 #7fffd4;
  --link-hover-color:             #E76F51;

  --body-font-family:             'Darker Grotesque';

  --h1-font-size:                 68px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 18px;
  --h6-font-size:                 22px;
  --p-font-size:                  20px;
  --btn-font-size:                16px;
  --form-btn-font-size:           18px;
  --menu-font-size:               16px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-thin:             200;
  --font-weight-light:            300;
  --font-weight-normal:           400;
  --font-weight-bold:             700;
}


 body {
 background: linear-gradient(
    to bottom,
    #f7d81b 0%,
    #decf5d 35%,
    #b7b04b 40%,
    /* #f6f659 85% */
    #6b6b54 85%
    /* #777245 100% */

  );

   margin: 0;
  padding: 0;
  overflow-x: hidden; 
    
   font-family: 'Darker Grotesque';
}

/* body {
  margin: 0;
  min-height: 100vh;

  background-image: url("../images/bg.png"); 
  background-size: cover;       
  background-position: center;  
  background-repeat: no-repeat;  

  font-family: var(--body-font-family);
} */


/*---------------------------------------
  TYPOGRAPHY               
-----------------------------------------*/

h2,
h3,
h4,
h5,
h6 {
  color: var(--dark-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: var(--font-weight-bold);
}

h1 {
  font-size: var(--h1-font-size);
}

h2 {
  font-size: var(--h2-font-size);
}

h3 {
  font-size: var(--h3-font-size);
}

h4 {
  font-size: var(--h4-font-size);
}

h5 {
  font-size: var(--h5-font-size);
}

h6 {
  font-size: var(--h6-font-size);
}

p {
  color: #4D4E4A;
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

ul li {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-light);
}

a, 
button {
  touch-action: manipulation;
  transition: all 0.3s;
}

a {
  display: inline-block;
  color: var(--primary-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

b,
strong {
  font-weight: var(--font-weight-bold);
}


/*---------------------------------------
  SECTION               
-----------------------------------------*/
.section-padding {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-bg {
  background-color: var(--section-bg-color);
}

.section-overlay {
  background-color: var(--dark-color);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  opacity: 0.65;
}

.section-overlay + .container {
  position: relative;
  z-index: 22;
}

.back-top-icon {
  font-size: var(--h2-font-size);
}


/*---------------------------------------
  TIMELINE               
-----------------------------------------*/
.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 5px;
  background-color: var(--white-color);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-container {
  padding: 10px 40px;
  padding-top: 0;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -12px;
  background-color: var(--white-color);
  border: 5px solid #7c5c52;
  top: 15px;
  border-radius: 50%;
  z-index: 1;
}

.timeline-container-left {
  left: 0;
}

.timeline-container-right {
  left: 50%;
}

.timeline-container-left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
  right: 25px;
  border: medium solid white;
  border-width: 20px 0 20px 20px;
  border-color: transparent transparent transparent white;
}

.timeline-container-right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 9px;
  width: 0;
  z-index: 1;
  left: 25px;
  border: medium solid white;
  border-width: 20px 20px 20px 0;
  border-color: transparent white transparent transparent;
}

.timeline-container-right::after {
  left: -13px;
}

.timeline-content {
  padding: 5px;
  background-color: var(--white-color);
  position: relative;
  border-radius: var(--border-radius-medium);
}

@media screen and (max-width: 991px) {
  .timeline::after {
    left: 31px;
  }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-container::before {
    left: 58px;
    border: medium solid white;
    border-width: 20px 20px 20px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::after, .timeline-container-right::after {
    left: 6px;
  }

  .timeline-container-right {
    left: 0%;
  }
}


/*---------------------------------------
  CUSTOM BUTTON               
-----------------------------------------*/
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  line-height: normal;
  transition: all 0.3s;
  padding: 12px 28px;
}

.custom-btn:hover {
  background: var(--custom-btn-bg-hover-color);
  color: var(--white-color);
}

.custom-border-btn {
  background: #4D4D49;
  border: 2px solid #4D4D49;
  color: var(--white-color);
}

.custom-border-btn:hover {
  background: var(--white-color);
  color: var(--secondary-color);
}

.custom-btn-bg-white {
  border-color: var(--white-color);
  color: var(--white-color);
}

.custom-btn-italic {
  font-style: italic;
}


/*---------------------------------------
  NAVIGATION BAR & OFFCANVAS              
-----------------------------------------*/

.navbar {
  background: transparent;
  padding: 30px 0;
  z-index: 999999;
  transition: background 0.35s ease;
}

/*  */
.navbar.hide-bg {
  background: transparent !important;
}

/* ===== STICKY WRAPPER ===== */
.sticky-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
}

/* ===== GLASS CONTAINER ===== */
.navbar .container {
 
  border-radius: var(--border-radius-medium);
  padding: 0 25px;
  /* background: rgba(7, 7, 7, 20%); */

    /* background: rgba(255, 255, 255, 0.2); */

    box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border:1px solid rgb(255 255 255 / 76%);
    background: rgb(60 54 26 / 19%);
    transition: all 0.4s ease;
}



.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: block;
  color: var(--white-color);
}



.navbar-brand-image {
  width: 60px;
  height: auto;
  margin-right: 10px;
}

.navbar .custom-btn {
  padding: 10px 20px;
}

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}

.navbar-nav .nav-link {
  display: inline-block;
  color: var(--white-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-bold);
  padding-top: 15px;
  padding-bottom: 15px;
}

.navbar-nav .nav-link.active, 
.navbar-nav .nav-link:hover {
  color: var(--secondary-color);
}

.navbar .dropdown-menu {
  background: var(--white-color);
  box-shadow: 0 1rem 3rem rgba(0,0,0,.175);
  border: 0;
  display: inherit;
  opacity: 0;
  min-width: 9rem;
  margin-top: 20px;
  padding: 13px 0 10px 0;
  transition: all 0.3s;
  pointer-events: none;
}

.navbar .dropdown-menu::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 15px solid var(--white-color);
  position: absolute;
  top: -10px;
  left: 10px;
}

.navbar .dropdown-item {
  display: inline-block;
  color: var(--p-color);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  position: relative;
}

.navbar .dropdown-item.active, 
.navbar .dropdown-item:active,
.navbar .dropdown-item:focus, 
.navbar .dropdown-item:hover {
  background: transparent;
  color: var(--link-hover-color);
}

.navbar .dropdown-toggle::after {
  content: "\f282";
  display: inline-block;
  font-family: bootstrap-icons !important;
  font-size: var(--menu-font-size);
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  left: 2px;
  border: 0;
}


@media (max-width: 991px) {

  .navbar {
    padding: 12px 0;
  }

  /* Glass effect  */
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    margin-top: 12px;
    padding: 15px;
  }


  .navbar-nav {
    text-align: center;
  }

  .navbar-nav .nav-link {
    padding: 12px 0;
    margin: 5px 0;
    display: block;
  }

 
  .navbar .dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    margin-top: 0;
    box-shadow: none;
  }

 
  .navbar .ms-lg-3 {
    margin-top: 15px;
    text-align: center;
  }

  .navbar .custom-btn {
    width: 100%;
    padding: 12px;
  }


  .navbar-brand-image {
    width: 45px;
  }
}


.navbar-toggler {
  border: 0;
  padding: 0;
  cursor: pointer;
  margin: 0;
  width: 30px;
  height: 35px;
  outline: none;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, -webkit-transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  transition: top 300ms 50ms ease, transform 300ms 350ms ease, -webkit-transform 300ms 350ms ease;
  top: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(-45deg);
}

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block;
  width: 30px;
  height: 2px;
  position: relative;
}

.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, -webkit-transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  transition: top 300ms 350ms ease, transform 300ms 50ms ease, -webkit-transform 300ms 50ms ease;
  position: absolute;
  right: 0;
  left: 0;
  background: var(--white-color);
  width: 30px;
  height: 2px;
  content: '';
}

.navbar-toggler .navbar-toggler-icon::before {
  top: -8px;
}

.navbar-toggler .navbar-toggler-icon::after {
  top: 8px;
}


/*---------------------------------------
  HERO        
-----------------------------------------*/
.hero-ditto {
    min-height: 100vh;
    background: radial-gradient(circle at center, #1c1c1c 0%, #000 60%);
    background-size: cover;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-ditto::before {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -55%);
    filter: blur(80px);
}

.track-card {
    border: 1px solid rgba(255, 255, 255, 0);
    box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.174), inset -2px -2px 12px rgb(255 254 239 / 58%), 4px 2px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    background: rgba(60, 54, 26, 0);
    /* background: rgba(7, 7, 7, 20%); */
    backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 25px 20px;
    max-width: 350px;
    /* box-shadow: 0 0 40px rgba(0,0,0,0.7); */
    margin-top: 100px;
}

.track-title {
    color: #f3d32b;
    margin-bottom: 12px;
    font-weight: 600;
    font-size: 30px;
}

.track-input {
    background: transparent;
    border: 1px solid #4D4E4A;
    border-radius: 8px;
    color: #ccc;
    text-align: center;
}

.track-input::placeholder {
    color: #777;
}

.hero-desc {
    color: #4D4D49;
    font-size: 30px;
    line-height: 1.6;
    font-weight: bold;
}

.hero-desc .highlight {
    color: #4D4D49;
    font-weight: 600;
}

.quote-texts {
    margin-top: 28px;
    font-size: 27px;
    color: #fff;
    font-weight: bold;
}

.hero-btn {
    border: 1px solid rgb(255 255 255 / 76%);
    background: rgba(114, 112, 103, 0.384);
    
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    box-shadow: 0 0 15px rgba(0,0,0,0.8);
    font-size: 25px;
    font-weight: bold;
    transition: 0.3s;
        /* background: #4D4D49;
    color: #fff;
    border: none;
    padding: 27px 76px;
    border-radius: 85px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    transition: 0.3s; */
    
}

.hero-btn:hover {
    background: #4D4E4A;
}
 
@media (max-width: 576px) {
    .track-card {
        padding: 18px 16px;
    }

    .hero-desc {
        font-size: 29px;
    }

    .hero-btn {
        padding: 9px 28px;
        font-size: 14px;
    }
}




/*---------------------------------------
  ABOUT              
-----------------------------------------*/
.about-section {
  background-color: var(--secondary-color);
  position: relative;
}

.about-section .ratio {
  border-radius: var(--border-radius-medium);
}

.custom-video {
  border-radius: var(--border-radius-medium);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image-wrap {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.about-video-info {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(188, 107, 37, 0.518));
  border-radius: var(--border-radius-medium);
  bottom: 0;
  height: auto;
  padding: 40px;
}

.about-video-info h4 {
  color: var(--white-color);
}

.about-section h6 {
  color: var(--secondary-color);
}

.team-block-wrap {
  background-color: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  max-height: 450px;
  cursor: pointer;
}

.team-block-wrap:hover .team-block-image {
  transform: scale(1.2);
}

.team-block-image-wrap {
  width: 100%;
}

.team-block-image {
  display: block;
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.3s;
}

.team-block-info {
  background-image:  linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgb(188 108 37 / 71%));
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.team-block-info .badge {
  margin: auto;
  top: 2px;
  bottom: 0;
}


/*---------------------------------------
  OUR MENU              
-----------------------------------------*/
.menu-section {
  background-image: url('../images/happy-waitress-giving-coffee-customers-while-serving-them-coffee-shop.jpg');
  background-repeat: no-repeat;
  background-size: cover;
}

.menu-block-wrap {
  background: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  padding: 45px;
}

.menu-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.menu-block h6 {
  color: var(--white-color);
}

.menu-block small {
  color: rgba(255, 255, 255, 0.35);
}

.menu-block strong {
  color: var(--secondary-color);
}

.menu-block-image {
  border-radius: 100%;
  width: 350px;
  height: 350px;
  object-fit: cover;
  display: block;
  margin: auto;
  cursor: pointer;
}

.badge {
  background-color: var(--primary-color);
  font-size: 12px;
  position: relative;
  bottom: 4px;
  padding-bottom: 6px;
}

.badge::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -5px;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid var(--primary-color);
}


/*---------------------------------------
  REVIEWS              
-----------------------------------------*/
.reviews-section {
  background-color: #7c5c52;
}

.reviews-block {
  background-color: var(--section-bg-color);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
}

.reviews-block .border-top {
  border-top-color: rgba(255, 255, 255, 0.35) !important;
}

.reviews-block-image-wrap {
  background-image: url('../images/mid-section-waitress-wiping-espresso-machine-with-napkin-cafa-c.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 30px;
}

.reviews-block-image {
  border-radius: var(--border-radius-large);
  width: 65px;
  height: 65px;
  object-fit: cover;
  margin-right: 10px;
}

.reviews-block-info {
  padding: 20px 30px;
}

.reviews-block-info p {
  font-size: var(--btn-font-size);
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
}

.reviews-group i {
  color: var(--white-color);
}


/*---------------------------------------
  BOOKING SECTION              
-----------------------------------------*/
.booking-section {
  background-image: url('../images/young-female-barista-wear-face-mask-serving-take-away-hot-coffee-paper-cup-consumer-cafe.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.booking-form-wrap {
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  margin-top: 100px;
}

.booking-form {
  padding: 55px 65px;
}

.booking-form-image-wrap {
  position: relative;
  height: 100%;
}

.booking-form-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-form-text span {
  color: var(--white-color);
  font-size: var(--btn-font-size);
}

.reservation-page .custom-border-btn {
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.reservation-page .custom-border-btn:hover {
  border-color: transparent;
}


/*---------------------------------------
  CONTACT               
-----------------------------------------*/
.contact-section {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(188, 107, 37, 0.667)), url('../images/PRE-FOOTER.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.google-map {
  border-radius: var(--border-radius-medium);
  /* filter: grayscale(100); */
}

.contact-block-wrap {
  background: var(--primary-color);
  border-radius: var(--border-radius-medium);
  padding: 0;
  min-height: 200px;
}

.contact-block {
  background: var(--secondary-color);
  border-radius: var(--border-radius-medium);
  transform: rotate(8deg);
  height: 100%;
  padding: 20px 40px;
}

.contact-block h6 {
  transform: rotate(-8deg);
}

.contact-block .custom-icon {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  position: relative;
}

.contact-block strong {
  display: block;
  color: var(--white-color);
  text-transform: uppercase;
  margin-top: 20px;
  margin-bottom: 10px;
}


/*---------------------------------------
  CUSTOM FORM               
-----------------------------------------*/
.custom-form .form-control {
  color: var(--p-color);
  border-radius: var(--border-radius-small);
  margin-bottom: 30px;
  padding-top: 13px;
  padding-bottom: 13px;
  box-shadow: none;
  outline: none;
  transition: all 0.3s;
}

.custom-form .form-control:hover,
.custom-form .form-control:focus {
  background: var(--primary-color);
  border-color: transparent;
}

.custom-form .form-label {
  color: var(--white-color);
  font-style: italic;
  margin-bottom: 15px;
}

.custom-form button[type="submit"] {
  background: var(--custom-btn-bg-color);
  border: none;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--form-btn-font-size);
  font-weight: var(--font-weight-bold);
  transition: all 0.3s;
  margin-bottom: 0;
}

.custom-form button[type="submit"]:hover,
.custom-form button[type="submit"]:focus {
  background: var(--white-color);
  border-color: transparent;
  color: var(--primary-color);
}

.contact-form .form-control,
.booking-form .form-control {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.25);
}

.booking-form .form-control {
  color: var(--white-color);
}

.custom-form input::-webkit-input-placeholder,
.custom-form textarea::-webkit-input-placeholder {
   color: #f4f4f465;
}

.booking-form input:-moz-placeholder,
.booking-form textarea:-moz-placeholder {
  color: var(--white-color);
}


/*
  SITE FOOTER              
*/
.footer-logo { 
  width: 265px; 
  margin-bottom: 20px; 
}
 .dt-footer {
  background: #4D4D49;
  padding: 60px 0 5px;
  color: #e5e5e5;
  font-size: 14px;
}




.footer-row p {
  line-height: 18px; 
  margin-bottom: 5px; 
  font-weight: bold;
  font-size: 14px;
  color: #ffffff;
}

.footer-middle h5,
.footer-right h5 { 
  margin-bottom: 20px; 
  letter-spacing: 1px; 
}

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

.footer-middle ul {

  list-style: none;
  width: 100%;   
            
}


.footer-middle li {
  color: #ffffff;
  line-height: 21px; 
  margin-bottom: 15px; 
  font-weight: bold;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  /* margin-left: 20px; */
  text-align: left;
}

.footer-middle li:hover {
  color: #f4cf2f;
}

.footer-right-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  line-height: 1.6;
  font-weight: bold;
}

.contact-item i {
  color: #f4cf2f;
  font-size: 18px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid #FCDF2B;  
  color: #FCDF2B;              
  font-size: 18px;
  background: #ffffff;     
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #FCDF2B;
  color: #000;                 
  transform: scale(1.1);
}


/* */
@media (max-width: 768px) {
  .footer-row { text-align: left; }
  .footer-middle { text-align: left !important; }
  .footer-right-top { flex-direction: column; gap: 25px; }
  .footer-social { flex-direction: row; justify-content: flex-start; }
}
/*  */




/*
  SOCIAL ICON               
*/
.social-icon {
  margin: 0;
  padding: 0;
}

.social-icon-item {
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

.social-icon-link {
  background: var(--primary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--menu-font-size);
  display: block;
  margin: 0 5px;
  text-align: center;
  width: 35px;
  height: 35px;
  line-height: 35px;
  transition: background 0.2s, color 0.2s;
}

.social-icon-link:hover {
  background: var(--white-color);
  color: var(--primary-color);
}

.social-icon-link span {
  display: block;
}
.footer-bottom { 
  border-top: 1px solid #8a8a8a;
  margin-top: 40px; 
  padding-top: 15px;
  text-align: center; 
  font-size: 13px; 
  color: #ddd;
   }
 /* <div class="footer-social"> <a href="" class="facebook"><i class="bi bi-facebook"></i></a> <a class="instagram"><i class="bi bi-instagram"></i></a> <a class="linkedin"><i class="bi bi-linkedin"></i></a> <a class="youtube"><i class="bi bi-youtube"></i></a> </div> */

/*---------------------------------------
   STYLES               
-----------------------------------------*/
@media screen and (max-width: 1200px) {
  h1 {
    font-size: 62px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 28px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }

  .section-padding {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .hero-section {
    padding-top: 148px;
    padding-bottom: 100px;
  }

  .navbar-brand,
  .navbar-brand:hover {
    font-size: var(--h5-font-size);
  }

  .navbar-expand-lg .navbar-nav {
    padding-bottom: 20px;
  }

  .navbar-expand-lg .navbar-nav .nav-link {
    padding: 0;
    margin-bottom: 0;
  }

  .navbar .custom-btn {
    margin-bottom: 10px;
  }

  .booking-form {
    padding: 45px;
  }

  .contact-section .container {
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
    padding: 35px;
  }

  .site-footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .custom-btn {
    font-size: 14px;
    padding: 12px 20px;
  }

  .menu-block-wrap,
  .reviews-block-image-wrap,
  .reviews-block-info {
    padding: 20px;
  }
}


@media screen and (max-width: 578px) {
  .navbar .container,
  .sticky-wrapper.is-sticky .container {
    margin-right: 10px;
    margin-left: 10px;
  }
}


@media screen and (max-width: 480px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  .hero-section::after {
    width: 200px;
    height: 200px;
  }

  .booking-form {
    padding: 35px;
  }

  .opening-hours-list li {
    font-size: 12px;
  }

  .reviews-block-image-wrap {
    flex-direction: column;
  }

  .reviews-block-image {
    margin-bottom: 15px;
  }

  .timeline-container {
    padding-left: 55px;
  }

  .timeline-container::before {
    left: 44px;
    border: medium solid white;
    border-width: 15px 15px 15px 0;
    border-color: transparent white transparent transparent;
  }

  .timeline-container-left::before,
  .timeline-container-right::before {
    top: 13px;
  }
}
/*  */
#about-banner {
  position: relative;
  width: 100%;
  height: 64vh; 
  background: url("../images/banner-com.png") no-repeat center center;
  background-size: cover; 
}

.heros-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4); 
}
/*  */
.cus {
  font-size: 15px;
  text-align: justify;
}

    .team-block-image-wrap img {
        width: 100%;
        object-fit: contain;
        aspect-ratio: 1/1;
        border-radius: 8px;
        background: #222;
    }
    @media (max-width: 767.98px) {
        .team-block-image-wrap img {
            height: 180px;
        }
    }

    /*  */
    .product-box {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  overflow:none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-box:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

.product-box img {
  width: 100%;
  height: 170px;
  object-fit: contain;
}
 .machinery-section {
      padding: 50px 0;
    }

    .machinery-title {
      text-align: center;
      margin-bottom: 30px;
      font-weight: bold;
      
    }

    table {
      background-color: #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      border-radius: 10px;
      overflow: hidden;
    }

    thead {
      background-color: #b22222;
      color: #fff;
    }

    th, td {
      text-align: center;
      vertical-align: middle;
      padding: 12px;
    }

    tr:nth-child(even) {
      background-color: #f2f2f2;
    }

    @media (max-width: 576px) {
      th, td {
        font-size: 13px;
        padding: 8px;
      }
    }
    /*  */
     .service-hero {
      background: linear-gradient(to right, #0d6efd, #020b20);
      padding: 100px 20px;
    }
    .service-hero h1 {
      font-weight: 700;
    }
    .service-hero p {
      max-width: 750px;
      margin: 0 auto;
      font-size: 1.1rem;
    }

    /* --- Service Block --- */
    .service-block {
      background-color: #eae4e4;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }
    .service-block:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .service-block img {
      border-radius: 8px;
    }
    .service-block h3 {
      color: #BC6C25;
      font-weight: 600;
    }
    .service-block ul {
      list-style-type: none;
      padding-left: 0;
      
    }
    .service-block ul li::before {
      content: "✔";
      color: #0d6efd;
      margin-right: 8px;
      
    }
    .service-block p  {

    font-weight: 400;
    }
     .service-block li  {

    font-weight: 400;
    }

    

/*  */

    @media (max-width: 767px) {
      .service-hero {
        padding: 60px 15px;
      }
      .service-hero h1 {
        font-size: 1.8rem;
      }
      .service-block img {
        margin-bottom: 15px;
      }
      .service-block {
        padding: 15px;
      }
    }

    /*  */



  .text-gradient {
    background: linear-gradient(90deg, #0dcaf0, #6610f2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .service-card {
    background: rgb(255 255 255 / 16%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 0 0 transparent;
  }

  .service-card:hover {
    transform: translateY(-10px);
    border-color: #0dcaf0;
    box-shadow: 0 8px 20px rgba(13, 202, 240, 0.25);
  }

  .icon-box i {
    color: #0dcaf0;
    transition: color 0.3s ease;
  }

  .service-card:hover .icon-box i {
    color: #6610f2;
  }

  @media (max-width: 767px) {
    .text-gradient {
      font-size: 1.75rem;
    }}
    .cus-bg{
      background:  linear-gradient(to bottom, rgba(0, 0, 0, 0.249), rgba(188, 107, 37, 0.667)), url('../images/PRE-FOOTER.jpg');
        }
    .cus-bg1{
     background: linear-gradient(200deg,rgba(183, 135, 82, 1) 24%, rgba(28, 34, 56, 1) 69%);
    }

    /*  */

.fab-whatsapp {
  position: fixed;
  bottom: 80px;
  right: 30px;
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 9999;
  animation: bounce 2s infinite;
}

.fab-whatsapp:hover {
  transform: scale(1.2);
  box-shadow: 0 0 20px #25d366;
}

/* */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}


/*  */
.fab-call {
  position: fixed;
  bottom: 150px;
  right: 30px;
  background-color: #007bff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  animation-delay: 0.5s;
  transition: all 0.3s ease;
}

.fab-call i {
  color: white;
  font-size: 28px;
}

.fab-call:hover {
  background-color: #0062cc;
  transform: scale(1.25);
  box-shadow: 0 0 20px #007bff;
}

/*  */
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
/*  */

.navbar-brand-images{
  width: 69px;
    height: auto;
    margin-right: 10px;

}

@media (max-width: 767px) {
    .navbar-brand-images {
      width: 25px;
    height: auto;
    margin-right: 10px;
    }}
   

    /*  */

.stats-title {
   font-family: 'Darker Grotesque';
    width: 1050px;
    position: absolute;
    /* top: 600px; */
    bottom: -158px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-weight: 800;
    font-size: 39px;
    max-width: 1400px;

}

.bridge-title {
    font-family: 'Darker Grotesque';
    width: 100%;
    max-width: 1050px;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-weight: 900;
    font-size: 39px;
    padding: 0 20px; 
}

@media (max-width:768px){

.bridge-title{
    position: relative;   
    top: unset;
    left: unset;
    transform: none;

    font-size: 26px;
    line-height: 1.2;
    padding: 0 16px;
}

}


.stats-card {
    border-radius: 22px;
    padding: 20px 15px;
    width: 224px;
    height:300px;  
    margin: auto;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;   

    text-align: center;

    background: linear-gradient(145deg, #0a090640, #7c702f52);
    border: 2px solid rgb(255 248 129 / 81%);
    box-shadow: inset 0 0 20px rgb(255 249 214 / 40%), 
                0 8px 25px rgb(0 0 0 / 15%);

}

/* IMAGE */
.stats-card img {
    width: 214px;
    height: 140px;
    object-fit: contain;
}

/* NUMBER */
.stats-card h4 {
    font-size: 64px;
    font-weight: bold;
      
    color: #4D4E4A;
    font-family: 'Darker Grotesque', sans-serif;
}

/* SUBTITLE */
.stats-card p {
    font-weight: bold;
    font-size: 28px;
    line-height: 1.2;
    color: #4D4E4A;
    font-family: 'Darker Grotesque', sans-serif;
}
.stats-card .happy{
  font-weight: bold;
    font-size: 28px;
    color: #4D4E4A;
    font-family: 'Darker Grotesque', sans-serif;
    margin: -12px;              
    line-height: 1.1;     
}

.stats-text { max-width: 1300px; margin: auto; color: #4D4E4A; font-size: 14px; line-height: 1.7; text-align: start; } .stats-text p { max-width: 1350px; margin: auto; color: #4D4E4A; font-size: 25px; line-height: 1.7; text-align: start; }
@media (max-width: 768px) {
    .stats-card {
        width: 100%;
        max-width: 210px;
    }

    .stats-card img {
        width: 170px;
    }
   

  .bridge-title{

     top: 837px;
      width: 100%;
      padding: 0 16px;  
      text-align: center;
      font-weight: 800;
      font-size: 28px;
      box-sizing: border-box;
  }
}



@media (max-width: 768px) {

  .stats-card {
      width: 100%;
      max-width: 210px;
  }

  .stats-card img {
      width: 170px;
  }

  .stats-title {
      top: 30px;
      width: 100%;
      padding: 0 16px;  
      text-align: center;
      font-weight: 800;
      font-size: 28px;
      box-sizing: border-box;
  }

}  



@media (max-width: 1020px) {

  /* .bridge-title {
      position: relative;
      top: 0;   
      width: 100%;
      padding: 0 16px;  
      text-align: center;
      font-weight: 800;
      font-size: 28px;
      box-sizing: border-box;
  } */
   

}


/* 360px */
@media (max-width: 360px) {

  .stats-title {
      font-size: 20px;  /* ❌ 8px is too small */
  }

}



/*new-section  */


.section-title {
  font-weight: bold;
  font-size: 30px;
  font-size: 3rem;
  color: #565656;
}

.offer-card {

  height: 100%;
  padding: 30px 25px 40px;
  border-radius: 24px;
  border: 2px solid rgb(255 248 129 / 81%);
  
background: rgb(171 138 42 / 20%);
    box-shadow: inset -2.45px -2.36px 6px rgba(249, 221, 79, 0.466), inset -3px -1px 12px rgb(255 254 239 / 58%), 4px 2px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);

}


.truck-img {
  max-width: 100%;
  height: 160px;
  object-fit: contain;
  /* margin-bottom: 20px; */
}

.offer-card h1 {
     font-weight: 900;
    color: #4D4D49;
    line-height: 1.4;
    font-size: 32px;
    margin: 0px;
    
}

.offer-card h5 {
  font-weight: bold;
  color: #4D4D49;
  margin-bottom: 15px;
}

.offer-card p {
  font-size: 23px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
  text-align: justify;
  margin-top: 20px;
}
  .truck-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 22px;
}

.truck-grid img {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: auto;
  object-fit: contain;
}

/*  */



/* Titles */
.why-title {
  font-size: 4rem;
  font-weight: 900;
  color: #4D4D49;
  letter-spacing: 2px;
}

.why-sub {
  font-weight: 700;
  color: #4D4D49;
}

.why-bridge {
  font-weight: 800;
  color: #FCDF2B;
}

/* Main Cardmaijn */
.why-card {
  max-width: 1120px;
  margin: 40px auto 0;
  padding: 30px 40px;
  border-radius: 28px;
  position: relative;
 

}



/* Layout */
.why-card .row {
  min-height: 260px;
}

.why-card .col-md-4 {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-card .col-md-4.text-start { padding-right: 10px; }
.why-card .col-md-4.text-end { padding-left: 10px; }

/* Center Image */
.center-col {
  display: flex;
  justify-content: center;
  align-items: center;
}

.why-img {
  width: 460px;
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.25));
}

/* Headings */
.why-head {

  font-size: 1.75rem;
  letter-spacing: 4px;
  color: #FCDF2B;
  margin-bottom: 100px;
  font-weight: bold;
}

/* List */
.why-list {
  list-style: none;
  padding: 0;
  color: #fff;
  font-weight: 600;
}

.why-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 14px 0;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #ffffff;
  font-weight: bold;
}

.why-list li img {
  width: 26px;
}

.why-list.right li {
  justify-content: flex-end;
}

/* */
@media (max-width: 768px) {
  .why-list.right li,
  .why-list li {
    justify-content: center;
  }

  .col-md-4.text-start,
  .col-md-4.text-end {
    text-align: center !important;
  }

  .why-img {
    width: 280px;
    margin: 25px 0;
  }
}


/* How-Home */

.how-droptruck {
  background: radial-gradient(circle at top right, #4a4a4a, #2f2f2f);
  padding: 80px 0;
}

/* TITLE */
.section-title {
  font-size: 56px;
  font-weight: 800;
  color: #ffdf3a;
  margin-bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.section-title::before,
.section-title::after {
  content: "";
  width: 368px;
  height: 1px;
  background: #4d4d49a3;
}
.section-title span {
  border-bottom: 4px solid #ffdf3a;
  padding-bottom: 6px;
}

/* CARD */
.work-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/*  */
.work-img {
  height: 160px;
  object-fit: contain;
  margin-bottom: 20px;
}


.work-content {
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
  /* border:1px solid rgb(255 255 255 / 76%); */
  border-radius: 24px;
  padding: 10px 42px 17px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 26%);
}

/* TEXT */
.work-content h4 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
}

.work-content p {
  margin-top: 12px;
  font-size: 16px;
  color: #d1d1d1;
  line-height: 1.6;
}

/* */
@media (max-width: 768px) {
  .work-img {
    height: 140px;
  }
}


/*  */


/*  TESTIMONIAL SLIDER  */

.testimonial-section {
  width: 100%;
  height: 408px;
  /* background-color: #8b8b5a;
  background-image: radial-gradient(#7a7a4d 1px, transparent 1px); */
  background-size: 20px 20px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  margin: auto;
}

/* DECOR */
/* .bg-pattern {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(rgba(255,255,255,0.4) 2px, transparent 2px);
  background-size: 15px 15px;
} */

/* HEADER */
.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-top: 70px;
}

.line {
  width: 420px;
  height: 1px;
  background: #F9DD36;
}

.title {
  color: #F9DD36;
  font-size: 36px;
  font-weight: 800;
}

/* TESTIMONIALS */
.testimonials-container {
  height: calc(408px - 80px);
  display: flex;
  align-items: center;
  justify-content: center;   
  overflow-x: auto;
  scrollbar-width: none;
}

.testimonials-container::-webkit-scrollbar {
  display: none;
}

.testimonials-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 40px;
  margin: 0 auto;            
}


/* CARD BASE */
.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 30px;
  padding: 20px;
  text-align: center;
  position: relative;
  flex-shrink: 0;
  color: #fff;
}

/* ICON */
.icon-badge {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: #f0e68c;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4D4D49;
}
.icon-badge .img {
  width: 30px;
}

/* TEXT */
.quote-text {
  font-size: 11px;
    line-height: -0.6;
    margin-top: 18px;
    color: #ffffff;
}
.stars {
  margin-top: 10px;
  color: #444;
}

/* SIZES */
.card-side {
  width:180px;
  height: 130px;
  opacity: 0.6;
  /* background: rgb(76 65 65 / 29%); */
    box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border:1px solid rgb(255 255 255 / 76%);
background: rgb(60 54 26 / 19%);
}

.card-mid {
  width: 210px;
  height: 160px;
  opacity: 0.85;
  /* background: rgb(76 65 65 / 29%); */
    box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border:1px solid rgb(255 255 255 / 76%);
background: rgb(60 54 26 / 19%);
}

.card-lg {
     width: 300px;
    height: 220px;
 /* background: rgb(76 65 65 / 29%); */
    box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
   border:1px solid rgb(255 255 255 / 76%);
background: rgb(60 54 26 / 19%);
  z-index: 2;
}
.card-lg .quote-text {
    margin-top: 20PX;
    font-size: 9px;
    color:#ffffff;
}
.card-lg .stars {
  font-size: 20px;
}
@media (max-width: 768px) {

  .testimonials-container {
    scroll-snap-type: x  mandatory;
    scroll-snap-type: y  mandatory;
  }

  .testimonial-card {
    scroll-snap-align: center;
  }
}
@media (max-width: 768px) {

  .testimonial-section {
    /* height: auto; */
    padding-bottom: 30px;
  }

  .testimonials-container {
    justify-content: center;
  }

  .testimonials-wrapper {
    justify-content: center;
    padding: 0 20px;
  }


  .card-lg {
    margin: 0 auto;
  }

 
}

/*  */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Darker Grotesque',sans-serif;
}

/*  REACH SECTION  */

.reach {
  min-height: 100vh;
  background: linear-gradient(135deg, #f3de6a, #f2c84f);
  display: flex;
  align-items: center;
}

.reach-wrap {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 420px 1fr;
  align-items: center;
  padding: 40px;
  gap: 40px;
}

/* Glass Form */
.form-box {
  background: rgba(255,255,255,0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.15);
}

.form-box h3 {
  margin-bottom: 15px;
}

.form-box input,
.form-box select {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: none;
  outline: none;
  font-size: 14px;
}

.input-wrap {
  position: relative;
}

.error {
  position: absolute;
  right: 10px;
  top: 11px;
  background: red;
  color: white;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
}

.form-box button {
  width: 100%;
  padding: 12px;
  background: #4D4D49;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}


.map-box img {
  width: 100%;
  max-width: 520px;
  /* height: auto; */
}

/* .op-container */

.op-container {
  position: relative;
  min-height: 90vh;
  font-family: 'Inter', sans-serif;
  /* background: #7b7863; */
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
}

/* Section Header */
.op-section-header {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 60px;
}

.op-header-title {
  font-size: 36px;
  font-weight: 800;
  margin: 0 20px;
  color: #FCDF2B;
  white-space: nowrap;
}

.op-line {
  flex: 1;
  height: 1px;
  background: #F9DD36;
}

/* Main Content */
.op-main-content {
  display: flex;
  width: 100%;
  max-width: 1200px;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* Left Form */
.op-form-side {
  flex: 1;
  max-width: 450px;
}

.op-reach-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 30px;
  color: #FCDF2B;
}

.op-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.op-glass-input {
  width: 100%;
  padding: 15px 25px;
  border-radius: 50px;
  font-size: 18px;
  outline: none;
  color: #f0e68c;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  box-shadow:
    inset -2px -2px 6px rgba(255,255,255,0.3),
    5px 5px 20px rgba(0,0,0,0.1);
}

.op-glass-input::placeholder {
  color: rgba(240, 230, 140, 0.5);
}

.op-glass-card {
  border-radius: 30px;
  padding: 20px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  box-shadow:
    inset -2px -2px 6px rgba(255,255,255,0.3),
    5px 5px 20px rgba(0,0,0,0.1);
}

.op-glass-textarea {
  flex: 1;
  border: none;
  background: transparent;
  resize: none;
  font-size: 18px;
  color: #f0e68c;
  outline: none;
}

.op-glass-textarea::placeholder {
  color: rgba(240, 230, 140, 0.5);
}

.op-submit-btn {
  align-self: center;
  margin-top: 15px;
  padding: 10px 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #444;
  color: #fff;
  transition: 0.3s;
}

.op-submit-btn:hover {
  background: #555;
}

/* Map */
.op-map-side {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.op-map-wrapper {
  position: relative;
  max-width: 500px;
  width: 100%;
}

.op-india-map {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(0,0,0,0.2));
}

.map-dot-pattern {
  position: absolute;
  right: -80px;
  bottom: -40px;
  width: 120px;
  opacity: 0.6;
}

/* Vision Text */
.op-vision-text {
  width: 100%;
  max-width: 1200px;
  margin-top: 80px;
  text-align: left;
}

.op-vision-text p {
   font-family: 'Darker Grotesque',sans-serif;
  font-size: 62px;
  font-weight: 800;
  color: #FCDF2B;
  margin: 0;
}

.op-highlight {
  position: relative;
  margin-top: 10px;
  left: 85px;
}
@media (max-width: 768px) {

  .op-vision-text {
    text-align: center;   /* center text in mobile */
    margin-top: 50px;
    padding: 0 20px;
  }

  .op-vision-text p {
    font-size: 32px;      /* reduce font size for mobile */
  }

  .op-highlight {
    left: 0;              /* remove desktop offset */
    margin-top: 5px;
  }

}

/* Responsive */
@media (max-width: 992px) {
  .op-main-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .op-vision-text {
    text-align: center;
    margin-top: 60px;
  }

  .map-dot-pattern {
    display: none;
  }
  .op-highlight {
    left: 0;              /* remove desktop offset */
    margin-top: 5px;
  }
}
/*  */
.bridge-section {
  /* background: #f3dc4f; */
  position: relative;
}

.bridge-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 18px 18px;
  opacity: .4;
}


.bridge-title span {
  font-weight: 900;
}

/* Glass card */
.bridge-card {
  max-width: 870px;
 
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 31px 58px;
  position: relative;
 

    background: linear-gradient(145deg, #0a090640, #7c702f52);
 
    border: 2px solid rgb(255 248 129 / 81%);
    box-shadow: inset 0 0 20px rgb(255 249 214 / 40%), 0 8px 25px rgb(0 0 0 / 15%);
}

.bridge-card h4 {
    font-weight: 800;
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 1px solid #ffffff;  
    padding-bottom: 8px; 
}
.bridge-card h4{
    position: relative;
    border-bottom: none;
}

.bridge-card h4::after{
    content: "";
    position: absolute;
    left: -48px;
    bottom: 0;
    width: 427px;   
    height: 1px;    
    background: #ffffffd6;
}
@media (max-width: 768px){

    .bridge-card h4::after{
        display: none;  
    }
    
}
/* dot-none */
@media (max-width:768px){

    .border-end{
        border-right: none !important;
    }
    .footer-dot-pattern {
      display: none;  
    }
    .about-dot-pattern{
       display: none; 
    }
    .dot-bg{
 display: none; 
    }
    .offer-dot-one{
    display: none; 
    }
    .offer-dot-two{
    display: none; 
    }
    .footer-dot-pattern{

      display: none;
    }.footer-dot-pattern-left {
     display: none;

    }
    .how-dot-one {
      display: none;
    } 
    .tes-dot-pattern{
      display: none;
    }
    .map-dot-pattern{
      display: none;
    }
    .how-dot-one{
      display: none;
    }
    .how-dot-one,
.how-dot-two{
  display:none;
}
.section-titles {
       color: #FCDF2B;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 60px;
    text-align: center;
    white-space: nowrap;
}
.footer-rights{
  display:none;
}
}

/*  */
.left-list i,
.right-list i {
  color: #efcf00;
  font-size: 20px;
}

/* Left List */
.left-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 19px;
  color: #fff;
}

/* Right List */
.right-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 19px;
}

.right-list li span {
  flex: 1;
  color: #ffffff;
}

/* ICON COLOR */
.bridge-section i {
  color: #efcf00;
  font-size: 18px;
}

/* Mobile */
@media (max-width: 768px) {
  .bridge-card {
    padding: 24px 20px;
  }

  .bridge-title {
    font-size: 24px;
  }

  .right-list li {
    justify-content: flex-start;
  }
}

/*  */
.drive-section{
  /* background: linear-gradient(#f5dd4a, #e7cd33); */
  padding: 0px 20px 60px;
  text-align: center;
}

.drive-section h1{
  font-family: 'Darker Grotesque';
  font-size: 56px;
  font-weight: 900;
  color: #4D4E4A;
  margin-bottom: 60px;
}

.drive-boxes{
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.drive-card{
  /* font-family: 'Darker Grotesque'; */
  margin-top: 50px;

  border-radius: 20px;
  padding: 28px 20px;
  font-size: 29px;
  font-weight: 700;
  color: white;
  backdrop-filter: blur(8px);
  box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
/*  */
border: 2px solid rgb(255 248 129 / 81%);
background:linear-gradient(135deg, rgb(255 255 255 / 7%), rgb(205 203 195 / 7%));
}
    
    




.drive-card.highlight{
  position: relative;
  padding-top: 55px;

}

.drive-card.highlight img{
position: absolute;
    top: -94px;
    left: 50%;
    transform: translateX(-50%) rotate(359deg);
    width: 150px;
    height: 145px;
}


@media(max-width:900px){
  .drive-boxes{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:480px){
  .drive-boxes{
    grid-template-columns: 1fr;
  }
}


/*  */

.impact-heading{
    font-size: 26px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 32px;
   
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.impact-heading::before,
.impact-heading::after{
    content: "";
    flex: 1;          
    height: 1px;
    background: #E7DDA8;
}



.impact-box p {
  font-size: 18px;
  line-height: 1.5;
  color: #ffffff;
}
.impact-box {
  
  background: #4d4e4a9c;;
  /* background: #4D4E4A; */
    border-radius: 56px;
    color: #fff;
    height: 180px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .25);
    position: relative;
    padding-top: 25px;
}


.impact-box img {
  position: absolute;
  top: -100px;                   
  left: 50%;
  transform: translateX(-50%);
  width: 110px;               
  z-index: 10;
}


.impact-box h1 {
  font-family: 'Darker Grotesque';
  font-size: 50px;
  font-weight:900;
  margin-top: 10px;
  margin-bottom: 12px;
}

.impact-box p {
  font-size: 17px;
  line-height: 1.4;
  color: #ffffff;
}

@media (max-width: 768px) {
.impact-box {
        margin-top: 0px;
        background: #4d4e4a9c;
        border-radius: 26px;
        color: rgb(255, 255, 255);
        height: 196px;
        box-shadow: rgba(0, 0, 0, 0.25) 0px 12px 28px;
}
}

/*  */
.team-card {
  position: relative;
  color: #fff;
  text-align: left;
}

.team-section {
  padding: 45px 0 60px;
}

.team-title {
  font-size: 26px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;

  display: flex;              
  align-items: center;
  justify-content: center;
  gap: 20px;                
}

.team-title::before,
.team-title::after{
    content: "";
    flex: 1;          
    height: 1px;
    background: #E7DDA8;
}


.team-img {
  width: 260px;
  margin-bottom: 20px;
  display: block;
}

.team-card h3 {
  font-size: 28px;
  font-weight: 900;
  margin-top: 15px;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.team-card p {
  font-size: 35px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 1;
}


.dot-bg {
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 68%;
  transform: translateX(-50%);
  width: 160px;
  height: 160px;
  z-index: 0;
}

.team-img,
.team-card h3,
.team-card p {
  position: relative;
  z-index: 1;
}


@media (max-width: 992px) {
  .team-img {
    width: 220px;
  }
  
  .team-card h3 {
    font-size: 24px;
  }
}


@media (max-width: 768px) {
  .team-section {
    padding: 50px 0 40px;
  }

  .team-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .row {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .col-md-4 {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 0 15px;
  }

  .team-card {
    text-align: center; 
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .team-img {
    width: 220px;
    margin: 0 auto 15px; 
  }

  .dot-bg {
    width: 140px;
    height: 140px;
    top: 5px;
    left: 65%;
  }

  .team-card h3 {
    font-size: 24px;
    margin-top: 10px;
    width: 100%;
    text-align: center;
  }

  .team-card p {
    font-size: 16px;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
}

/* Small Mobile View */
@media (max-width: 480px) {
  .team-title {
    font-size: 24px;
  }

  .col-md-4 {
    max-width: 280px;
  }

  .team-img {
    width: 180px;
  }

  .dot-bg {
    width: 120px;
    height: 120px;
    top: 5px;
  }

  .team-card h3 {
    font-size: 22px;
  }

  .team-card p {
    font-size: 15px;
  }
}



/* about-map */
.about-vision-section {
  padding: 60px 40px;
  font-family: 'Darker Grotesque';
  color: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  align-items: center;
}

.about-vision-container {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 10;
}

.about-main-heading {
  text-align: center;
  font-size: 62px;
  font-weight: 900;
  color: #4D4D49;
  margin-bottom: 60px;
}

.about-content-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}

.about-image-column {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-map-image {
  max-width: 95%;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
}

.about-text-column {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-intro-block {
  text-align: center;
  font-size: 26px;
  line-height: 1.3;
  font-weight: 300;
  margin-bottom: 50px;
  color: #f8f8f8;
}

.about-intro-block p {
  color: #f8f8f8;
  margin: 0;
  font-size: 28px;
}

.about-highlight-text {
  font-size: 28px;
}

.about-highlight-text strong {
  font-weight: 700;
  color: #ffffff;
}

.about-benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-benefits-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
  font-size: 28px;
}

.about-benefits-list p {
  margin: 0;
  font-weight: 600;
  font-size: 24px;
  line-height: 1.4;
  color: #efefef;
}

.about-icon-wrapper {
  background-color: #e2c541;
  color: #4a4a30;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-icon-wrapper svg {
  width: 16px;
  height: 16px;
}

.about-dot-pattern {
  position: absolute;
  width: 180px;
  height: 180px;
  z-index: 1;
}

.about-top-right {
  top: 20px;
  right: 20px;
}

.about-bottom-left {
  bottom: -46px;
  left: 20px;
}
/*  */
.about-top-rights {
  top: 1110px;
  right: 25px;
}

.about-bottom-lefts {
  top: 1400px;
  left: 0px;
}
.about-top-rightss{
  top: 1550px;
  right: 0px;
  z-index: -1;
}

/* Tablet View */
@media (max-width: 992px) {
  .about-content-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .about-benefits-list li {
    justify-content: center;
    text-align: left;
  }

  .about-main-heading {
    font-size: 48px;
  }
}


@media (max-width: 768px) {
  .about-vision-section {
    padding: 40px 20px;
    min-height: auto;
  }
  
  .about-main-heading {
    font-size: 36px;
    margin-bottom: 30px;
  }
  
  .about-benefits-list li {
    margin-bottom: 20px;
    align-items: flex-start;
  }
  
  .about-benefits-list p {
    font-size: 20px;
    line-height: 1.3;
    position: static;
    bottom: auto;
    left: auto;
  }
  
  .about-icon-wrapper {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    margin-top: 3px;
    position: static;
    bottom: auto;
    left: auto;
  }
  
  .about-icon-wrapper svg {
    width: 14px;
    height: 14px;
  }
  
  .about-map-image {
    max-width: 100%;
    margin-bottom: 20px;
  }
}

/* Small Mobile View */
@media (max-width: 480px) {
  .about-main-heading {
    font-size: 28px;
  }
  
  .about-benefits-list p {
    font-size: 18px;
  }
  
  .about-icon-wrapper {
    width: 22px;
    height: 22px;
    margin-right: 10px;
  }
  
  .about-icon-wrapper svg {
    width: 12px;
    height: 12px;
  }
}
/*  */

.services-section h2{
  font-size: 44px;
  font-weight: 800;
}

.services-section h2 span{
  color: #FFD700;
}

.service-tags{
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 70px;
}

.tag{
  background: rgba(255,255,255,0.08);
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
}

/* CARDS */

.drive-boxess{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.drive-cards{
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  padding: 60px 20px 30px;
  font-size: 26px;
  font-weight: 800;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.drive-cards small{
  display: block;
  margin-top: 10px;
  font-size: 16px;
  font-weight: 500;
  opacity: .85;
}

.drive-cards.highlight img{
  position: absolute;
  top: -65px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
}



/*  */

@media(max-width: 900px){
  .drive-boxess{
    grid-template-columns: 1fr;
  }
}




/*  */
.process-section{
  position: relative;
  /* top: 515px; */
  top: 440px;
}

.process-title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.process-title {
  color: #565656;
    font-weight:800;
    margin: 0;
    font-size: 50px;
}

.process-title-wrap .line {
width: 368px;
    height: 1px;
  background: #E7DDA8;
}


.process-pill {
  /* border:1px solid rgb(255 255 255 / 76%); */
background: rgb(60 54 26 / 19%);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 500;
   border: 1px solid rgb(255 248 129 / 81%);
    box-shadow: inset 0 0 20px rgb(255 249 214 / 40%), 0 8px 25px rgb(0 0 0 / 15%);
  backdrop-filter: blur(3px);
} 

/*  */


/* Dt-Container */

.dt-container {
 
  min-height: 82vh;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

/* Header */
.dt-header {
  text-align: center;
  margin-bottom: 40px;
}

.dt-title-main {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 126px;
  font-weight: 900;
  margin-bottom: 20px;
  /* line-height: 0.8; */
  color: #4D4D49;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.dt-title-sub {
  display: flex;             
  align-items: center;        
  justify-content: center;
  gap: 15px;                 

  font-size: 32px;
  font-weight: 900;
  margin: -10px 0 20px 0;
  color: #4D4D49;
  letter-spacing: 1px;
}

.dt-title-sub::before,
.dt-title-sub::after {
  position: relative;
  content: "";
  width: 368px;
  height: 1px;
  background: #4D4D49;
  flex-shrink: 0;
  top:-20px;
}


.dt-bridge-text {
  font-family: 'Darker Grotesque', sans-serif;
  font-size: 65px;
  font-weight: 900;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
/* Center Text Bar */
.dt-center-text {
  position: absolute;
  left: 50%;
  bottom: 80px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #ffd700;
  padding: 14px 40px;
  border-radius: 14px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
  z-index: 3;
  white-space: nowrap;
}
.dt-side-column {
  position: relative;
  z-index: 3;
}

.dt-bridge-container {
  z-index: 1;
}

/* Main Card */
.dt-card {
 border: 2px solid rgb(255 248 129 / 81%);
  background: rgb(171 138 42 / 20%);
  box-shadow: inset -2.45px -2.36px 6px rgba(249, 221, 79, 0.466), inset -4px 0px 12px rgb(255 254 239 / 58%), 4px 2px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    
  border-radius: 30px;
  width: 100%;
  height: 450px;
  max-width: 1100px;
  padding: 0px 40px;
  position: relative;
}

/* Content Wrapper */
.dt-content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}
.dt-side-column {
  flex: 1;
  max-width: 335px;
  position: relative;
  top: 60px; 
}



.dt-side-heading {
  font-size: 34px;
  font-weight: 900;
  color: #444;
  margin-bottom: 110px;
}

.dt-text-right {
  text-align: right;
}

/* Glass Card */
.dt-glass-card {
  
    box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 249, 129, 0.605);
background: rgb(60 54 26 / 19%);
  border-radius: 20px;
  padding: 20px;
}

/* Feature Item */
.dt-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 21px;
  font-weight: 700;
}

.dt-feature-item:last-child {
  margin-bottom: 0;
}

.dt-feature-item.reverse {
  justify-content: flex-end;
}

.icons {
  width: 30px;
  height: 30px;
  color: #ffd700;
}

/* Bridge Image */
.dt-bridge-container {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  pointer-events: none;
}

.dt-bridge-image {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.3));
  mask-image: radial-gradient(circle, black 60%, transparent 100%);
}

/*  */
@media (max-width: 992px) {
  .dt-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }
  .dt-bridge-container {
    position: relative;
    left: 0;
    top: 0;
    transform: none;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
  }
  .dt-side-column {
    max-width: 100%;
    width: 100%;
  }
  .dt-text-right {
    text-align: left;
  }
  .dt-feature-item.reverse {
    justify-content: flex-start;
    flex-direction: row-reverse;
  }
}
@media (max-width: 768px) {

  .dt-center-text {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: 10px auto 0;
    text-align: center;
    font-size: 16px;
    padding: 12px 24px;
    white-space: normal;
  }

  .dt-side-column {
    top: 0;
  }

  .dt-card {
    height: auto;
    padding: 40px 20px;
  }
}

@media (max-width: 768px) {

 
  .dt-side-heading {
    margin-bottom: 25px;
    font-size: 26px;
  }


  .dt-content-wrapper {
    gap: 20px;
  }

 
  .dt-glass-card {
    padding: 14px;
  }

 
  .dt-feature-item {
    margin-bottom: 12px;
    font-size: 16px;
  }

  .dt-center-text {
    margin: 8px auto 0;
  }
}
@media (max-width: 768px) {


  .dt-text-right {
   
  }


  .dt-text-right .dt-feature-item {
    justify-content: flex-end;
  }

  .dt-text-right .dt-feature-item.reverse {
    flex-direction: row;
  }
  .banner-text h1 {
    position: relative;
    font-size: 31px;
    font-weight: 800;
    margin: 0;
    top: -82px;
  }
}



/* Hero Banner */
.hero-banner {
  position: relative;
  text-align: center;
  padding-top: 0;
  background: radial-gradient(circle at top, #1a1a1a 0%, #000 70%);
}



.yellow-text { color: var(--yellow); }

.feature-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 40px;
}

.f-badge {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.banner-container {
  position: absolute;
  width: 100%;
  height: 520px;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
}


.hero-ditto {
  width: 100%;
}
/* Text positioning */
.banner-text {
  position: absolute;
  top: 38%;
  left: 1%;

  transform: translateY(-50%);
  color: #ffffff;
}

.banner-text h1 {
 
  position: relative;
    font-size: 59px;
    font-weight: 800;
    margin: 0;
    top: -206px;
}
.banner-imgs {
  width: 100%;
  height: -webkit-fill-available;
  display: block;
}
.banner-img {
  margin-top: 0;
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .banner-img {
    margin-top: 0;
  width: 100%;
  height: auto;
  display: block;
}
  
}


.overlay-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--dark) 10%, transparent 100%);
}

/* Floating Pin */
.floating-pin {
  position: absolute;
  top: 30%;
  left: 20%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pin-dot {
  width: 12px;
  height: 12px;
  background: #ff4d00;
  border-radius: 50%;
  box-shadow: 0 0 15px #ff4d00;
}

.pulse-ring {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #ff4d00;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.pin-label {
  background: rgba(0,0,0,0.6);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  backdrop-filter: blur(4px);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(4); opacity: 0; }
}


.floating-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  max-width: 1200px;
  margin: -130px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 50;
  

}


.s-box {
  /* border:1px solid rgb(255 255 255 / 76%); */
  border: 2px solid rgb(255 248 129 / 81%);
background: rgb(60 54 26 / 19%);
    box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 25px;
  text-align: left;
  transition: all 0.3s ease;
  position: relative;
top: 620px;
width: 290px;
    height: 100px;
}

.s-box:hover {
  transform: translateY(-10px);
  background: rgba(252, 211, 3, 0.2);
}

.s-img-wrap {
  height: 100px;
  margin-bottom: 15px;

}

.s-img-wrap img {
    width: 176%;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.4));
    position: relative;
    top: -84px;
}

.grid-mini {
  display: grid;
  grid-template-columns: 1fr 1fr;

}

.grid-mini img {
   height: 60px;
   
    border: 2px #ffffff;
    box-shadow: #ffffff;
   }

.s-info h3 {
  font-size: 24px;
  margin: 0 0 5px 0;
  color: #ffffff;
  top: -126px;
  position: relative;
}

.s-info p {
  font-size: 13px;
  color: #ffffff;
  margin: 0;
    top: -120px;
  position: relative;
}


.stats-row {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
}

.stat {
  font-size: 18px;
  color: #888;
  font-weight: 600;
}

.val {
  color: white;
  font-size: 28px;
  margin-right: 8px;
}

@media (max-width: 900px) {
  .floating-boxes { grid-template-columns: 1fr; margin-top: -50px; }
  .nav-links { display: none; }
  .banner-container { height: 350px; }
  .stats-row { flex-direction: column; align-items: center; gap: 20px; }
}



.stats-banner {
  top: 550px;
  position: relative;
  padding: 70px 40px;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}

.content-wrapper {
    max-width: 857px;
    margin: auto;
    position: relative;
    z-index: 2;
    display: block;
}


.main-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 45px;
}

.main-title .highlight {
  color: #FCDF2B;
  font-family: 'Darker Grotesque';
}


.stats-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.stat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
}

.stat-number {
  font-size: 34px;
  color: #ffffff;
}

.stat-text {
  font-size: 18px;
  color: #3a3a3a;
}


@media (max-width: 768px) {
  .stats-row {
    flex-direction: column;
    gap: 25px;
  }

  .main-title {
    font-size: 34px;
  }
  .s-box{
    top: 440px;
  }
  .stats-banner {
  top: 460px;
  text-align: center;
  position: relative;
  padding: 70px 40px;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
}
}


.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.stat-number {
  color: #ffffff;
  font-size: 32px;
  font-weight: 800;
}

.stat-text {
  color: #4a4a4a;
  font-size: 37px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

@media (max-width: 768px) {
  .stats-grid {
    gap: 30px;
    flex-direction: column;
  }
  .main-title {
    font-size: 34px;
  }
  .stat-number {
    font-size: 26px;
  }
  .stat-text {
    font-size: 18px;
  }
}

/*  */
.truck-fleet-section {
  /* top: 530px; */
  top: 440px;
  position: relative;
  /* background-color: #d9cc52; */
  padding: 60px 40px;
  font-family: 'Inter', sans-serif;
  overflow: hidden;
  min-height: 450px;
}

.fleet-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 60px;
}

.title-divider {
  height: 1px;
  background-color: rgba(0, 0, 0, 0.1);
  flex-grow: 1;
  max-width: 300px;
}

.section-titles {
  color: #FCDF2B;
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 60px;
  text-align: center;
  white-space: nowrap;
}
@media (max-width:768px){
    .section-titles{
        font-size: 24px;
        white-space: normal; 
    }
}


.section-titles .dt-underline {
  color: #FCDF2B;
  position: relative;
  display: inline-block;
}

/* DITTO underline */
.section-titles .dt-underline::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 110%;
  height: 5px;
  background-color: #FCDF2B;
  border-radius: 2px;
}

/* GRID */
.fleet-grid {
  display: flex;
  justify-content: space-around;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* CARD */
.fleet-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.fleet-image-box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-image-box {
  transform: translateY(-10px);
}

.fleet-image-box img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}


.fleet-card:nth-child(1) img { width: 200px; }
.fleet-card:nth-child(2) img { width: 260px; }
.fleet-card:nth-child(3) img { width: 380px; }

.fleet-label {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,0.1);
}


.dot-decoration {
  position: absolute;
 
  pointer-events: none;
}



/*  */
@media (max-width: 992px) {
  .fleet-grid {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .section-title {
    font-size: 32px;
  }

  .title-divider {
    display: none;
  }
}


/*  */
.why-droptruck-section {
  top: 420px;
  /* background-color: #b5a654; */
  padding: 60px 40px;
  font-family: 'Inter', sans-serif;
  text-align: center;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}


.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 20px;
}

.header-line {
  height: 1px;
  /* background-color: rgba(255, 255, 255, 0.3); */
  flex-grow: 1;
  max-width: 300px;
}

.section-title {
  color: #565656;
  font-size: 47px;
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
  font-family: 'Darker Grotesque',sans-serif;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 95px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

/* FEATURE CARD */
.feature-box {
  background-color: #7a7452;
  border-radius: 40px;
  padding: 28px 32px;
    flex: 1;
    min-width: 308px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-heading {
  color: #ffffff;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 15px 0;
}

.feature-text {
  color: #f0f0f0;
  font-size: 18px;
  margin: 0;
  font-weight: 400;
  opacity: 0.9;
}

/*  */
@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .header-line {
    display: none;
  }

  .feature-box {
    border-radius: 30px;
  }
}


/*  */
.service-industries-section {
  top: 320px;
  /* background-color: #8b8b4d63; */
  /* background-image: radial-gradient(circle at center, #a3a35c 0%, #8b8b4d 100%); */
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}


.industries-title {
  font-family: 'Darker Grotesque',sans-serif;
    color: #565656;
    font-size: 39px;
    font-weight: 900;
    margin-bottom: 60px;
    text-align: center;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


.industries-title::before, 
.industries-title::after {
    content: "";
    width: 368px;
    height: 1px;
    background: #E7DDA8;
}



.industries-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  width: 100%;
  z-index: 2;
}

.industry-box {
  background: rgb(119 103 25 / 59%);
   border: 1px solid rgb(255 248 129 / 81%);
    box-shadow: inset 0 0 20px rgb(255 249 214 / 40%), 0 8px 25px rgb(0 0 0 / 15%);
    /* box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1); */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  border:1px solid rgb(255 255 255 / 76%);

  border-radius: 24px;
  padding: 40px 20px;
  text-align: center;
  transition: 0.3s;
  aspect-ratio: 1.2 / 1;
  
}

.industry-box:hover {
  transform: translateY(-10px);
  /* background: rgba(255, 255, 255, 0.15); */
}

.industry-image {
  width: 220px;
    height: 150px;
  object-fit: contain;
  margin-bottom: 20px;
}

.industry-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
}

/* CTA */
.cta-group {
  margin-top: 60px;
  display: flex;
  gap: 20px;
  z-index: 2;
}

.cta-btn {
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
 /* background: rgb(76 65 65 / 29%); */
    box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgb(255 248 129 / 81%);
background: rgb(119 103 25 / 59%);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: rgba(255, 255, 255, 0.735);
  transform: scale(1.05);
}

/*  */
@media (max-width: 992px) {
  .industries-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .industries-cards {
    grid-template-columns: 1fr;
  }
  .industries-title {
    font-size: 32px;
  }
  .cta-group {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }
  .cta-btn {
    width: 80%;
    text-align: center;
  }
}
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 768px) {
  .bg-dot,
  .dot-pattern,
  .dot-decoration {
    display: none;
  }
}
* {
  box-sizing: border-box;
}
.bottom-decor-section img {
  top: 270px;
  position: relative;
  max-width: 100%;
}


/* careers */

.ww-section {
  background: linear-gradient(135deg, #b5ad4e 0%, #8e8a3a 100%);
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
  color: #ffffff;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.ww-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

.ww-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ww-header {
  margin-bottom: 60px;
}

.ww-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #4a4a4a;
}

.ww-subtitle {
  font-size: 18px;
  color: #5a5a5a;
}

.ww-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.ww-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ww-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.ww-icon {
  margin-bottom: 25px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

.ww-card-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.ww-card-text {
  font-size: 15px;
  line-height: 1.6;
  max-width: 240px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .ww-title {
    font-size: 32px;
  }
  .ww-subtitle {
    font-size: 16px;
  }
}

/*  */
.work-with-us-container {
  background: linear-gradient(135deg, #b5a642 0%, #8e8233 100%);
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #3d3d3d;
}

.background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  pointer-events: none;
}

.content-wrapper {
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.main-titles {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #4a4a4a;
}

.sub-title {
  font-size: 18px;
  margin-bottom: 60px;
  color: #5a5a5a;
  font-weight: 400;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  width: 250px;
  height: 600px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.2;
}

.card-description {
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.9;
  max-width: 240px;
}

@media (max-width: 768px) {
  .main-titles {
    font-size: 32px;
    text-align: center;
  }

  .sub-title {
    text-align: center;
  }

  .cards-grid {
    grid-template-columns: 1fr;
    justify-items: center; 
  }
}


.careers-section {
 
    padding: 0px 20px;

  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  justify-content: center;
}



.careers-wrapper {
  max-width: 1055px;
  width: 100%;
  position: relative;
  z-index: 2;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 50px;
}

.header-line {
  height: 1px;
  background: #E7DDA8;
  flex-grow: 1;
  width: 300px;
}

.header-titles {
 font-family: 'Darker Grotesque',sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #565656;
  margin: 0;
  white-space: nowrap;
}

.jobs-wrapper {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.job-item {
      background: rgb(119 103 25 / 59%);
    border: 1px solid rgb(255 248 129 / 81%);
    box-shadow: inset 0 0 20px rgb(255 249 214 / 40%), 0 8px 25px rgb(0 0 0 / 15%);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
 
 border-radius: 17px;
    padding: 12px 21px 12px 45px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}

.job-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.01);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.job-text {
  color: #ffffff;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.3px;
}

.apply-button {
  border:1px solid rgb(255, 255, 255);
background: #000000;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    border-radius: 38px;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.apply-buttons {
  border: 1px solid rgb(255 248 129 / 81%);
    box-shadow: inset 0 0 20px rgb(255 249 214 / 40%), 0 8px 25px rgb(0 0 0 / 15%);
  background: rgb(119 103 25 / 59%);
  color: #ffffff;
  border: none;
  padding: 14px 35px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.apply-button:hover {
  background: #222222;
}


@media (max-width: 768px) {
  .job-item {
    flex-direction: column;
    border-radius: 20px;
    padding: 25px;
    gap: 20px;
    text-align: center;
  }

  .job-text {
    font-size: 16px;
  }

  .header-title {
    font-size: 28px;
  }

  .header-line {
    display: none;
  }
}

/*  */
.why-work-section {
  /* background: linear-gradient(135deg, #b5a642 0%, #8e8233 100%); */
  padding: 80px 20px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  min-height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pattern-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.2) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
}

.whywork-wrapper {
  max-width: 1100px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.whywork-title {
  font-size: 52px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #565656;
}

.whywork-subtitle {
  font-size: 27px;
  margin-bottom: 50px;
  color: #565656;
}

.whywork-grid {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.whywork-card {
  height: 332px;
  width: 250px;
 background: rgb(119 103 25 / 59%);
   border: 1px solid rgb(255 248 129 / 81%);
    box-shadow: inset 0 0 20px rgb(255 249 214 / 40%), 0 8px 25px rgb(0 0 0 / 15%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
/* background: rgb(60 54 26 / 19%); */
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.whywork-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.whywork-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whywork-icon img {
  width: 206px;
    height: 167px;
  object-fit: contain;
}

.whywork-card-title {
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.whywork-card-desc {
   font-family: 'Darker Grotesque';
  font-size: 15px;
  line-height: 1.6;
  color: #ffffff;
  max-width: 240px;
}


@media (max-width: 768px) {
  .whywork-title {
    font-size: 32px;
    text-align: center;
  }

  .whywork-subtitle {
    text-align: center;
  }

  .whywork-grid {
    grid-template-columns: 1fr;
    justify-items: center; 
  }

  .whywork-card {
    width: 100%;
    max-width: 320px;
  }
}

/*  */
.cta-section {
  
  padding: 24px 1px;
  text-align: center;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}



.cta-content {
  position: relative;
  z-index: 2;
}

.cta-heading {
  font-size: 48px;
  font-weight: 700;
  color: #565656;
  margin: 0 0 15px 0;
  letter-spacing: -0.5px;
}

.cta-subtext {
  font-size: 26px;
  color: #565656;
  margin: 0 0 40px 0;
  font-weight: 400;
}



.apply-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .cta-heading {
    font-size: 32px;
  }
  .cta-subtext {
    font-size: 18px;
  }
  .apply-button {
    padding: 14px 45px;
    width: 80%;
    box-sizing: border-box;
  }
}


/*  */
.contact-info-section {
  position: relative;
  /* background: linear-gradient(135deg, #c9b93a, #a9a13a); */
  padding: 80px 20px;
  overflow: hidden;
}


.contact-info-section {
  position: relative;
  overflow: hidden;
  padding: 60px 20px;
}

.contact-wrapper {
  max-width: 1100px;
  margin: auto;
  text-align: left; 
  position: relative;
  z-index: 2;
}

/* TITLE */
.contact-title {
  font-size: 52px;
  font-weight: 800;
  color: #565656;
  text-align: left;
  margin-bottom: 0;
}

/* SUBTITLE */
.contact-subtitle {
  margin-top: 10px;
  color: #565656;
  font-size: 28px;
  text-align: left;
}

.footer-rights {
  position: absolute;
  top: 0;
  right: 0;
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

.footer-rights:nth-of-type(2) {
  top: 40px;
  right: 40px;
  opacity: 0.2;
}

/* GRID */
.contact-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch; 
}

/* CARD */
.contact-card {
  border: 1px solid rgb(255 255 255 / 76%);
  background: rgb(60 54 26 / 19%);
  box-shadow:
    inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3),
    inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2),
    2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1),
    14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 14px;
  padding: 40px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;    
  text-align: center;
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
}

/* ICON */
.contact-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

/* TEXT */
.contact-card h3 {
  font-size: 34px;
  font-weight: 700;
  color: #000000; 
  margin-bottom: 10px;
}

.contact-card p {
  font-size: 18px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-subtitle {
    font-size: 18px;
  }
}

/*  */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}


/*  */
.contact-touch-wrapper {
  font-family: 'Inter', sans-serif;
  min-height: 600px;
  padding: 0px 40px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}


.pattern-shape {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.4) 2px, transparent 2px);
  background-size: 18px 18px;
  opacity: 0.5;
}




.contact-box {
  max-width: 1100px;
  width: 100%;
  z-index: 2;
}

/* Title */
.contact-heading {
  font-size: 48px;
  font-weight: 800;
  color: #3d3d3d;
  text-align: center;
  margin-bottom: 50px;
  letter-spacing: -1px;

  display: flex;              
  align-items: center;        
  justify-content: center;    
  gap: 20px;                 
}

.contact-heading::before,
.contact-heading::after {
  content: "";
  width: 368px;
  height: 1px;
  background: #e1e16da3;
  display: block;             
}


/* Grid */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  align-items: start;
}

/* Form */
.contact-form-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-glass {
  width: 100%;
  box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border:1px solid rgb(255 255 255 / 76%);
  background: rgb(60 54 26 / 19%);
  border-radius: 25px;
  padding: 15px 25px;
  color: #3d3d3d;
  font-size: 18px;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.input-glass::placeholder {
  color: rgba(61, 61, 61, 0.6);
}

.input-glass:focus {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.6);
}

.input-message {
  height: 220px;
  border-radius: 30px;
  resize: none;
}


.btn-submit {
  width: 160px;
  background: rgb(76 65 65 / 29%);
    box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  border: none;
  padding: 12px;
  border-radius: 4px;
  color: #3d3d3d;
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-top: 10px;
}

.btn-submit:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Map */
.map-box {
  background: rgb(76 65 65 / 29%);
    box-shadow: inset -2.45px -2.36px 6px rgba(255, 255, 255, 0.3), inset -3.67px -3.54px 12px rgba(255, 255, 255, 0.2), 2.45px 2.36px 12px -8px rgba(0, 0, 0, 0.1), 14.7px 14.14px 48px -12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 40px;
  padding: 30px;
    height: 398px;
}

.map-inner {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.map-view {
  width: 100%;
  height: 100%;
  background: #e5e7eb;
  position: relative;
}

.map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.4) hue-rotate(-10deg) saturate(1.2);
}

/* Marker */
.location-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pin-icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.pin-label {
  background: rgba(0, 0, 0, 0.75);
  color: #fcd34d;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  margin-top: 5px;
  border: 1px solid rgba(252, 211, 77, 0.3);
}

/*  */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-heading {
    font-size: 36px;
  }

  .map-box {
    height: 207px;
  }
}

/*  */

.support-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
  padding: 60px 20px;
  margin: 0 auto;
}


.page-dot {
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
}

.page-dot.active {
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 8px rgba(255,255,255,0.5);
}

/* CARD GRID */
.support-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  width: 100%;
}

/* CARD */
.support-glass-card {
   background: rgb(119 103 25 / 59%);
    border: 1px solid rgb(255 248 129 / 81%);
    box-shadow: inset 0 0 20px rgb(255 249 214 / 40%), 0 8px 25px rgb(0 0 0 / 15%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  border-radius: 32px;
  padding: 45px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  cursor: pointer;
  height: 100%;
}

.support-glass-card:hover {
  transform: translateY(-10px) scale(1.03);
}

.support-icon-box {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2));
}

.support-icon-box img {
  max-width: 100%;
  max-height: 100%;
}


.support-label {
  font-size: 20px;
  font-weight: 700;
  color:#565656;
  margin: 0px;
}


/* MOBILE */
@media (max-width: 768px) {
  .support-card-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: auto;
  }

  .support-pagination {
    right: 50%;
    transform: translateX(50%);
    top: -30px;
  }
  .dt-bridge-text {
    font-size: 21px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  }
}

.extrabold{
  font-weight: 900;
}

.footer-dot-pattern{
  position: relative;
 
     width: 178px;
    height: 178px;
  bottom: 40px;
  z-index: 1;
}
.footer-dot-pattern-left{
  position: relative;
  left: 930px;
  bottom: 40px;
  width: 178px;
  height: 178px;
  z-index: 1;
}
.map-dot-pattern{
    position: absolute;
    top: px;
    right: 14px;
    bottom: 33px;
    width: 178px;
    height: 178px;
   
}
.tes-dot-pattern{
  position: relative;
    right: 37px;
    top: -495px;
    width: 202px;
    height: 202px;
  }
  .offerings-section{
  position: relative;
  overflow: hidden; 
}

.offer-dot-one{
  position: absolute;
  top: 30px;
  left: 0;
  width: 178px;
  height: 178px;
  z-index: -1;
}
.offer-dot-one,
.offer-dot-two{
  display:block;
}

  .offer-dot-two{
    position: absolute;
    top: 515px;
    left: 730px;
    width: 178px;
    height: 178px;
  }
  /*  */
  
.how-dot-one{
 position: absolute;
  top: -49px;
  right: 0;
  width: 178px;
  height: 178px;
}
.how-dot-two{
  position: absolute;
  top: 390px;
  left: 0px;
  width: 178px;
  height: 178px;
}
.how-droptruck {
  position: relative;
  overflow: hidden; 
}

.op-container{
   position: relative;
  overflow: hidden; 
}
.services-dot-pattern{
 position: absolute;
 top: 124px;
  left: -29px;
  width: 178px;
  height: 178px;

}
.Fleet-left{

    position: absolute;
    top: 312px;
    left: 250px;
    width: 197px;
    height: 197px;
}
.Fleet-right{
  position: absolute;
   top: 329px;
    right: 114px;
  width: 178px;
  height: 178px;
}

.Process-left{

  position: absolute;
  top: 270px;
  left: 20px;
  width: 178px;
  height: 178px;
}
.Industries-left{
    position: absolute;
    top: 50px;
    left: 357px;
    width: 178px;
    height: 178px;
}
.Industries-right{
  position: absolute;
  top: 404px;
  right: 0px;
  width: 178px;
  height: 178px;
}
.whyservices-dot-pattern{

    position: absolute;
  top: 112px;
    left: 43px;
  width: 178px;
  height: 178px;
}
.whyservices-dot-patterns{
  position: absolute;
  top: 412px;
  left: 372px;
  width: 178px;
  height: 178px;
}
.job-left{
  position: absolute;
  top: 112px;
  left: 43px;
  width: 178px;
  height: 178px;
}
.job-right{
  position: absolute;
  top:312px;
  right: 43px;
  width: 178px;
  height: 178px;

}
.footer-rights{
 position: absolute;
  top: 290px;
  left: 0px;
  width: 178px;
  height: 178px;


}
.with-left
{
  position: absolute;
  top: 14px;
  left: -67px;
  width: 178px;
  height: 178px;


}
.with-rights{
  position: absolute;
  top: -113px;
  right: -98px;
  width: 178px;
  height: 178px;
}
.with-bottom{
  position: absolute;
  top: 371px;
  right: 630px;
  width: 178px;
  height: 178px;
}
.map-bottom{

  position: absolute;
  top: 520px;
  right: 171px;
  width: 178px;
  height: 178px;
}
@media (max-width: 768px){

.footer-rights,
.footer-dot-pattern,
.footer-dot-pattern-left,
.map-dot-pattern,
.tes-dot-pattern,
.offer-dot-one,
.offer-dot-two,
.how-dot-one,
.how-dot-two,
.services-dot-pattern,
.Fleet-left,
.Fleet-right,
.Process-left,
.Industries-left,
.Industries-right,
.whyservices-dot-pattern,
.whyservices-dot-patterns,
.job-left,
.job-right,
.map-bottom,
.with-bottom,
.with-rights,
.with-left{
    display: none !important;
}
.op-highlight {
  position: relative;
  margin-top: 10px;
  left: 60px;
}

}


@media (min-width: 1440px) {
    .stats-title{
font-family: 'Darker Grotesque';
    width: 1050px;
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-weight: 800;
    font-size: 39px;
    max-width: 1400px;
  }
 .op-highlight {
  position: relative;
  margin-top: 10px;
  left: 60px;
}
}




@media (max-width: 1024px) {
   
   .stats-title {
        font-family: 'Darker Grotesque';
       
        position: absolute;
        top: 744px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        font-weight: 800;
        font-size: 16px;
        
    }
    .bridge-title{

font-family: 'Darker Grotesque';
        position: absolute;
        top: 18px;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        font-weight: 800;
        font-size: 25px;

    } 
   .banner-text h1 {
        position: relative;
        font-size: 18px;
        font-weight: 800;
        margin: 0;
        top: -174px;
    
}

.op-highlight {
  position: relative;
  margin-top: 10px;
  left: -6px;
}

}


/* Navbar hard-fix: keep all tabs same size and keep button inside glass */
.navbar .navbar-nav .nav-link {
  font-size: var(--menu-font-size) !important;
  font-weight: var(--font-weight-bold) !important;
  line-height: 1.2 !important;
  border: 1px solid transparent;
  border-radius: var(--border-radius-large);
}

.navbar .navbar-nav .nav-link.active {
  color: #fcdf2b !important;
  font-size: var(--menu-font-size) !important;
  font-weight: var(--font-weight-bold) !important;
  line-height: 1.2 !important;
  background: linear-gradient(180deg, rgba(252, 223, 43, 0.16), rgba(252, 223, 43, 0.06));
  border: 1px solid rgba(252, 223, 43, 0.4);
  box-shadow: 0 3px 10px rgba(252, 223, 43, 0.2), inset 0 0 8px rgba(252, 223, 43, 0.12);
  text-shadow: none;
}

.navbar .navbar-nav .nav-link:hover {
  color: #ffe88a !important;
}

@media (min-width: 992px) {
  .navbar .container {
    position: relative;
    display: flex;
    align-items: center;
  }

  .navbar .navbar-brand {
    position: relative;
    z-index: 3;
  }

  .navbar-collapse {
    position: static;
    flex: 1 1 auto;
    display: block !important;
    min-width: 0;
  }

  .navbar .navbar-collapse .navbar-nav {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    padding: 0;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    z-index: 2;
  }

  .navbar .navbar-collapse .ms-lg-3 {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 !important;
    z-index: 3;
  }
}
