:root {
  --blue: #1d4ed8;
  --red: #dc2626;
  --black: #000000;
  --white: #ffffff;
  --accent: #0ea5e9;
  --ticker-height: 48px;
  --gap: 28px;
  --bg: #0f1115;
  --fg: #eaeaea;
}

* {
  margin: 0;
  padding: 0;
}

::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}



body {
  font-family: "Segoe UI", Arial, sans-serif;
  background-color: var(--black);
  color: var(--white);
}




/* navbar */

/* Navbar Custom */
.navbar {
  background-color: #000;

  /* Black background */
  padding: 0.8rem 1.5rem;
}

/* Navbar Links */
.navbar .nav-link {
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

/* NAVBAR - DROPDOWN */

/* Mobile Navbar Adjustments */
@media (min-width: 1px) and (max-width: 768px) {

  /* .container{
    width: 100%;
    height: 250px;
  } */

  #nav {
    width: 100%;
    height: auto;
  }

  /* Collapse menu background */
  .navbar-collapse {
    background-color: #000;
    /* Black background for mobile menu */
    /* padding: 1rem; */
    border-radius: 8px;
  }

  /* Nav links in mobile */
  .navbar .nav-link {
    width: 100%;
    height: 80px;
    display: block;
    margin-bottom: -50px;
    text-align: center;
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
  }

  .navbar .nav-link:last-child {

    border-bottom: none;
  }

  #dd-others {
    margin-bottom: -80px;
  }


  /* .navbar{
    width: 100%;
    height: 80px;
  } */

  .navbar-brand img {
    width: 200px;
    height: auto;
    margin-left: -22px;
  }

  .navbar-toggler {
    margin-left: -60px;
    margin-right: -30px;
    color: rgb(138, 138, 138);
    border: none;
  }


  /* Dropdown fix in mobile */
  .dropdown-menu {
    position: static;
    display: none;
    /* background-color: transparent; */
    box-shadow: none;
    /* color: #fff; */
  }

  .dropdown-menu.show {
    /* color: #fff; */
    display: block;
    text-align: center;
  }

  /* Make button full width in mobile */
  .btn {
    width: 100%;
    margin-top: 10px;
  }

  .about-part {
    margin-top: 50px;
  }

}





@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Dropdown Box */
.dropdown-menu {
  height: 230px;
  background-color: #000;
  border: none;
  min-width: 160px;
  padding: 0;
  border-radius: 6px;
}

/* Dropdown Items */
.dropdown-item {
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 500;
  height: 38px;
  line-height: 38px;
  transition: 0.3s ease;
}

.dropdown-item:hover {
  color: #ff3b3b;
  /* background: transparent; */
}

/* Toggler button (mobile) */
.navbar-toggler {
  border: none;
  /* filter: invert(1); */
}











/* START WHY CHOOSE US SECTION */

.choose-section {
  width: 100%;
  height: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;

}


@media (min-width: 1px) and (max-width: 425px) {
  .choose-section {
    margin-top: 350px;
    margin-bottom: 300px;
  }

  .about-text {
    text-align: center;
  }
}

@media (min-width: 426px) and (max-width: 768px) {
  .choose-section {
    margin-top: 100px;
    /* margin-bottom: 300px; */
  }
}

.choose-card {
  background-color: #111;
  color: var(--white);
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: rgba(255, 255, 255, 0.3) 0px 0px 16px;

  /* transition: transform 0.3s, box-shadow 0.3s; */
  /* .choose-card:hover { */
  /* transform: translateY(-10px); */
  /* box-shadow: 10px 10px rgba(149, 149, 149, 0.5); */
}

.choose-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.choose-card h5 {
  font-weight: bold;
  margin-bottom: 10px;
}

.choose-card p {
  color: #9ca3af;
}





@media (min-width: 769px) and (max-width: 991px) {
  .choose-section {
    width: 100%;
    height: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -350px;
    margin-bottom: -300px;
  }
}






/* END WHY CHOOSE US SECTION */







/* ABOUT US SECTION TOP */
.about-main-top {
  height: 400px;

  border-radius: 5px 60px 5px 60px;
  overflow: hidden;
  background: #000;
  color: #fff;
  box-shadow: 0px 0px 16px rgba(255, 255, 255, 0.3);
}

/* Image */
.about-img-top {
  object-fit: cover;
  border-radius: 5px 0px 0px 60px;
}

/* Text */
.about-main-top h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

/* ✅ Mobile (stacked, auto height, margin) */
@media (min-width: 1px) and (max-width: 768px) {
  .about-main-top {
    height: auto;
    /* allow full text */
    margin-top: 30px;
    flex-direction: column;
    /* force image top, text bottom */
    border-radius: 0px 60px 0px 60px;
  }

  .about-img-top {
    border-radius: 0px 0px 0px 40px;
    height: 250px;
    /* reasonable height for mobile */
  }

}

/* ✅ Tablet (side by side but text visible) */
@media (min-width: 768px) and (max-width: 800px) {
  .about-main-top {
    height: auto;
    margin-top: 40px;
    border-radius: 10px 60px 10px 60px;
  }

  .about-img-top {
    border-radius: 10px 0 0 60px;
    height: 300px;
  }
}



/* ABOUT US SECTION TOP */






/* ABOUT US SECTION BOTTOM */



.about-main-bottom {
  height: 400px;
  /* fixed only for desktop */
  border-radius: 5px 60px 5px 60px;
  overflow: hidden;
  background: #000;
  color: #fff;
  box-shadow: 0px 0px 16px rgba(255, 255, 255, 0.3);
}

/* Image */
.about-img-bottom {
  object-fit: cover;
  border-radius: 0px 60px 0px 60px;
}

/* Text */
.about-main-bottom h2 {
  font-weight: 700;
  margin-bottom: 15px;
}

/* ✅ Mobile (stacked, auto height, margin) */
@media (min-width: 1px) and (max-width: 768px) {
  .about-main-bottom {
    height: auto;
    /* allow full text */
    margin-bottom: 30px;
    flex-direction: column;
    /* force image bottom, text bottom */
    border-radius: 60px 0px 60px 0px;
  }

  .about-img-bottom {
    border-radius: 60px 5px 60px 5px;
    height: 250px;
    /* reasonable height for mobile */
  }
}

/* ✅ Tablet (side by side but text visible) */
@media (min-width: 768px) and (max-width: 991px) {
  .about-main-bottom {
    height: auto;
    margin-bottom: 40px;
    border-radius: 10px 60px 10px 60px;
  }

  .about-img-bottom {
    border-radius: 5px 60px 0 60px;
    height: 300px;
  }
}


/* ABOUT US SECTION BOTTOM */






/* Our Products section */

.section {
  padding: 50px 85px;
}

.card.product {
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: rgba(255, 255, 255, 0.3) 0px 0px 16px;
  transition: transform .25s ease, box-shadow .25s ease;
  background-color: #000000;
  font-size: 18px;
  /* font-weight: 700; */
}

.card.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(255, 255, 255, 0.15);
}

.card.product img {
  aspect-ratio: 4/3;
  object-fit: contain;
}

.card-img-top {
  width: 295px;
  height: 224px;
}

.card-body h5 {
  color: var(--white);
  font-weight: 700;
  margin-top: -20px;
}

.price {
  color: var(--red);
  font-weight: 700;
}

.card-body a {
  color: var(--blue);
  font-size: 14px;
}

.card-h5 {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.card-a-link {
  color: #0f172a;
}

@media (min-width: 1px) and (max-width: 768px) {
  .section {
    padding: 20px 10px;
  }

  .card-img-top {
    width: 100%;
    height: auto;
  }
}



/* START Ready to Upgrade Your Workshop? */

.cta-section {
  width: 100%;
  height: 284px;
  background-color: #2563eb;
  /* Blue background same as screenshot */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.cta-section h2 {
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 18px;
  margin-bottom: 25px;
}

.cta-btn {
  padding: 12px 40px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}

.btn-quote {
  background: white;
  color: #2563eb;
  border: none;
  margin-right: 15px;
}

.btn-quote:hover {
  background: #f1f1f1;
}

.btn-shop {
  background: #ef4444;
  color: white;
  border: none;
}

.btn-shop:hover {
  background: #dc2626;
}


/* END Ready to Upgrade Your Workshop? */











/* Utilities */
.bg-grid {
  background-image: radial-gradient(rgba(255, 255, 255, .2) 1px, transparent 1px);
  background-size: 16px 16px;
}

.shadow-soft {
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}















/* Update hero slider */

/* Hero Section */
.carousel-item {
  width: 100%;
  height: 100vh;
  min-height: 400px;
  display: flex;
  align-items: center;
}

.caption-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 20px 25px;
  border-radius: 8px;
  display: inline-block;
}

.caption-box h2 {
  font-size: 2rem;
  font-weight: 700;
  max-width: 600px;
  color: #fff;
  margin: 0;
}

/* Controls (white only, no blue/red highlight, no box-shadow) */
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  /* 🔹 box-shadow remove */
}

.carousel-arrow {
  font-size: 2.5rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 10px 15px;
  border-radius: 50%;
  transition: 0.3s;
  box-shadow: none !important;
  /* 🔹 box-shadow remove */
}

.carousel-arrow:hover {
  background: #000;
  color: #fff;
  transform: scale(1.1);
  box-shadow: none !important;
  /* 🔹 box-shadow remove */
}

/* Remove Bootstrap default focus/active effects */
.carousel-control-prev:focus,
.carousel-control-next:focus,
.carousel-control-prev:active,
.carousel-control-next:active {
  outline: none !important;
  box-shadow: none !important;
  /* 🔹 box-shadow remove */
  background: none !important;
}


/* Indicators */
.carousel-indicators button {
  background-color: #fff;
}

.carousel-indicators .active {
  background-color: #000;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .caption-box h2 {
    font-size: 1.2rem;
  }

  .carousel-item {
    height: auto;
    padding: 50px 0;
  }
}














/* update slider size */

/* #main-container{
  width: 100%;
  height: 70vh;
  background-color: #0dcaf0;
} */









/* ====== Ticker ====== */
.ticker {
  height: var(--ticker-height);
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--bg);
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ticker::before,
.ticker::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 64px;
  pointer-events: none;
  z-index: 2;
}

.ticker::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg), transparent);
}

.ticker::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg), transparent);
}

.track {
  display: flex;
  align-items: center;
  gap: var(--gap);
  white-space: nowrap;
  will-change: transform;
}

.item {
  display: flex;
  align-items: center;
  height: 100%;
}

.logo {
  height: 36px;
  width: auto;
  display: block;
}

.logo-wrap {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker:hover .track {
  animation-play-state: paused !important;
}

@media (max-width: 480px) {
  .logo {
    height: 28px;
  }

  .logo-wrap {
    width: 36px;
    height: 36px;
  }
}






/* CONTACT US PAGE CSS */

/* =============================
   Global Dark Theme Styles
   ============================= */
/* ====== General Styles ====== */


/* Contact Section Wrapper */
/* ================= CONTACT SECTION ================= */
.contact-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  background: #111;
  color: #fff;
}

.contact-container {
  display: flex;
  gap: 40px;
  width: 100%;
  max-width: 1300px;
  flex-wrap: wrap;
}

/* ====== Contact Info ====== */
.contact-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.contact-info i {
  font-size: 1.5rem;
  color: #0dcaf0;
  transition: transform 0.3s, color 0.3s;
}

.contact-info i:hover {
  transform: scale(1.2);
  color: red;
}

.contact-info p {
  margin: 0;
  font-size: 1rem;
  color: whitesmoke;
}

/* ====== Form Styling ====== */
.contact-form {
  flex: 1;
  background: rgba(30, 144, 255, 0.2);
  /* light blue transparent */
  backdrop-filter: blur(8px);
  padding: 30px;
  border-radius: 14px;
  border: 1px solid rgba(30, 144, 255, 0.6);
  box-shadow: 0 0 15px rgba(30, 144, 255, 0.3);
  animation: fadeIn 1s ease-in-out;
  min-height: 420px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-form h1 {
  font-size: 1.8rem;
  margin-bottom: 25px;
  text-align: center;
  color: #fff;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 40px 12px 40px;
  border-radius: 8px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group textarea {
  min-height: 120px;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border: 1px solid #00bfff;
  box-shadow: 0 0 10px #00bfff;
  transform: scale(1.02);
}

/* ====== Icons in Inputs ====== */
.form-group i {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 18px;
  color: whitesmoke;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
}

.form-group input:focus~i,
.form-group textarea:focus~i {
  color: #00bfff;
  text-shadow: 0 0 8px #1E90FF;
  transform: translateY(-50%) scale(1.2);
}

/* ====== Button ====== */
.contact-form button {
  width: 100%;
  padding: 14px;
  background: linear-gradient(45deg, #1e90ff, #00bfff);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: linear-gradient(45deg, #00bfff, #1e90ff);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 0 20px #00bfff;
}

.contact-form button:active {
  transform: scale(0.96);
}

/* ====== Map Section ====== */
.contact-map {
  flex: 1;
  width: 100%;
  height: auto;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid #1e90ff;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s, border-color 0.3s;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-map:hover {
  transform: scale(1.02);
  border-color: #00bfff;
  box-shadow: 0 0 25px #00bfff;
}

/* ================= Responsive ================= */

/* Footer */

.footer {
  background: #0d0d0d;
  /* Dark Black */
}


.footer-links a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-links a:hover {
  color: #0dcaf0;
  /* Bootstrap blue */
  padding-left: 5px;
}

.social-icons a {
  font-size: 20px;
  color: white;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: red;
}

footer p,
footer small {
  margin: 0;
}

/* footer {
  background: #1f0e0e;
  color: #ffffff;
}

footer a {
  color: #ffffff;
}

.icon-bullet {
  width: 44px;
  height: 44px;
  background: linear-gradient(45deg, var(--red), var(--black));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
  box-shadow: 0 8px 30px rgba(220, 38, 38, .35);
} */

@media (max-width: 2400px) {
  #footer-part {
    margin-top: -48px;
  }
}

@media (max-width: 991px) {
  #footer-part {
    margin-top: -48px;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-form {
    min-height: 100%;
  }

  .contact-map {
    flex: 1;
    width: 100%;
    height: 400px;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid #1e90ff;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.6);
    transition: transform 0.3s, border-color 0.3s;
  }

  .contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }

  .contact-map:hover {
    transform: scale(1.02);
    border-color: #00bfff;
    box-shadow: 0 0 25px #00bfff;
  }
}

@media (max-width: 576px) {
  #footer-part {
    /* margin-top: -48px; */
    text-align: center;
    /* Center text */
  }

  #footer-part .col-md-3 {
    text-align: center;
    /* Column ni content center */
  }

  #footer-part img {
    margin: 0 auto 15px;
    /* Logo center ma ave */
    display: block;
  }

  .social-icons {
    justify-content: center;
    /* Social icons center */
  }
}












/* ABOUT PAGE CSS */

.about-section {
  background: #000;
  /* Dark theme */
  min-height: 100vh;
  /* Big height on PC */
  display: flex;
  align-items: center;
}

/* Image Styling */
.about-img {
  max-width: 90%;
  height: auto;
  box-shadow: rgba(255, 255, 255, 0.3) 0px 0px 16px;
  transition: transform 0.4s ease;
}

.about-img:hover {
  transform: scale(1.05);
}

/* Header Style */
.section-title {
  font-size: 2.3rem;
  color: #fff;
  /* White only */
}

/* Text Small */
.about-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--white);
}



/* Responsive adjustments */
@media (max-width: 991px) {
  .about-section {
    min-height: auto;
    padding: 60px 20px;
  }

  .about-img {
    max-width: 100%;
    margin-bottom: 25px;
  }

  .section-title {
    font-size: 1.8rem;
  }
}




.about-img {
  height: 350px;
  width: 450px;
  object-fit: cover;
  /* keeps image cropped nicely */
  max-width: 100%;
  /* responsive for smaller screens */
}










/* WHATSAPP BUTTON CSS START */

/* Floating buttons */
.whatsapp-fab {
  position: fixed;
  z-index: 1050;
  right: 18px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .25);
  border: 0;
  transition: transform .2s ease;
}

.whatsapp-fab {
  bottom: 50px;
  background: #25D366;
  color: #fff;
  font-size: 1.5rem;
}


.whatsapp-fab:hover {
  transform: translateY(-2px);
}


/* WHATSAPP BUTTON CSS END */