@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Fenix&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Mirza:wght@400;500;600;700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nata+Sans:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  margin: 0px;
  padding: 0px;
  font-family: "Fenix", serif !important;
}

/* index page--------------------------------------------------------------------------------------- */
/* HERO */
/* NAVBAR LOGO STYLE */
.logo-brand {
  display: flex;
  align-items: center;
  padding: 0;
}

/* LOGO IMAGE */
.logo-brand img {
  max-height: 70px;
  width: auto;
  object-fit: contain;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* HOVER EFFECT (subtle) */
.logo-brand:hover img {
  transform: scale(1.04);
  opacity: 0.95;
}

/* MOBILE */
@media (max-width: 768px) {
  .logo-brand img {
    max-height: 36px;
  }
}

/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  background: url("assets/resources/index/index-herobg.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
  margin-top: 40px;
}

/* Optional overlay if needed later */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
}

/* HERO CONTENT */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 6rem;
  padding-bottom: 10rem;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
================================ */

/* Extra large screens (≥1400px) */
@media (min-width: 1400px) {
  .hero {
    min-height: 90vh;
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 14rem;
  }
}

/* Large desktops (≥1200px) */
@media (max-width: 1399px) {
  .hero-content {
    padding-top: 7rem;
    padding-bottom: 12rem;
  }
}

/* Tablets (≤991px) */
@media (max-width: 991px) {
  .hero {
    min-height: 70vh;
  }

  .hero-content {
    padding-top: 5rem;
    padding-bottom: 6rem;
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.25;
  }

  .hero p {
    font-size: 0.95rem;
  }
}

/* Mobile (≤767px) */
@media (max-width: 767px) {
  .hero {
    min-height: 60vh;
    text-align: center;
  }

  .hero-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero h1 {
    font-size: 1.75rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
  }

  /* Center buttons */
  .hero .d-flex {
    justify-content: center;
  }
}

/* Extra small phones (≤480px) */
@media (max-width: 480px) {
  .hero {
    min-height: 55vh;
  }

  .hero h1 {
    font-size: 1.55rem;
  }
}

/* BROWSE PRODUCT */
.btn-browse {
  background-color: #ff5a1f !important;
  color: #fff !important;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: all 0.3s ease;
}

.btn-browse:hover {
  background-color: #cc3904 !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* REQUEST A QUOTE */
.btn-quote {
  background-color: #fff !important;
  color: #ff5a1f !important;
  padding: 12px 26px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.btn-quote:hover {
  background-color: #ff5a1f !important;
  color: #fff !important;
  transform: translateY(-2px);
}

/* FLOATING CARD */
.why-card {
  position: relative;
  margin-top: -160px;
  z-index: 5;
  background: #fff;
  border-radius: 6px;

}

/* ANGLED IMAGE */
.angled-img {
  height: 100%;
  max-height: 425px;
  /* 👈 reduce height here */
  clip-path: polygon(0 0, 92% 0, 100% 100%, 0 100%);
  overflow: hidden;
}

.angled-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ICON */
.why-icon {
  width: 42px;
  height: 42px;
  background: #ffeae6;
  color: #ff5722;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}

/* Responsive Large tablets & below */
@media (max-width: 991px) {
  .hero-content {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .why-card {
    margin-top: -80px;
  }

  .angled-img {
    max-height: 300px;
    clip-path: none;
    /* optional – keeps clean look */
  }
}

/* Mobile ONLY – hide angled image */
@media (max-width: 767px) {
  .angled-img {
    display: none;
  }

  .why-card {
    margin-top: -40px;
  }

  /* Make content full width */
  .why-card .col-lg-7 {
    width: 100%;
  }

  /* Reduce padding for compact look */
  .why-card .p-3,
  .why-card .p-4,
  .why-card .p-lg-4,
  .why-card .p-lg-5 {
    padding: 1rem !important;
  }

  /* Reduce spacing between items */
  .why-card h3 {
    margin-bottom: 1rem;
  }

  .why-card .mb-4 {
    margin-bottom: 1rem !important;
  }
}

/* --Service card--------------------- */
/* SERVICE CARD */
.service-card {
  background: #fff;
  border-radius: 4px;
  padding: 2rem 1.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

.text-services {
  color: #FA6444;
}

/* IMAGE */
.service-img-wrapper {
  position: relative;
  display: inline-block;
}

.service-img {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
}

/* ICON BADGE */
.service-icon {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  color: #FA6444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

/* RESPONSIVE FIXES */
@media (max-width: 767px) {
  .service-img {
    width: 180px;
    height: 180px;
  }

  .service-card {
    padding: 1.5rem 1rem;
  }
}

/* --About Us-------------------------- */
/* ABOUT SECTION */
.about-section {
  position: relative;
  background: url("assets/resources/index/testimonal-bg.webp") center/cover no-repeat;
  min-height: 85vh;
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
}

/* ABOUT MAIN */
.about-main {
  padding: 60px 0;
}

/* TITLES */
.about-subtitle {
  color: #FA6444;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 6px;
}

.about-title {
  font-size: 32px;
  margin-bottom: 24px;
  color: #FA6444;
}

/* PERSON BLOCK */
.about-person p {
  margin-bottom: 8px;
  line-height: 1.6;
}

/* NAME */
.about-name {
  font-size: 20px;
  margin: 8px 0 4px;
  color: #000;
}

.about-qual {
  font-size: 14px;
  color: #666;
  margin-bottom: 8px;
}

/* TAGS */
.about-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.tag-founder {
  background: #FFF0EC;
  color: #FA6444;
}

.tag-partner {
  background: #F1F1F1;
  color: #333;
}

/* BLOCK SECTIONS */
.about-block {
  margin-top: 20px;
}

.about-block-title {
  font-size: 18px;
  color: #FA6444;
  margin-bottom: 8px;
}

/* SKILL TAGS */
.skill-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.skill-tags span {
  background: #FA6444;
  color: #fff;
  padding: 6px 14px;
  border-radius: 16px;
  font-size: 13px;
}

/* IMAGE */
.about-img {
  width: 100%;
  border-radius: 16px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .about-title {
    font-size: 26px;
  }
}

.about-content {
  position: relative;
  z-index: 2;
  padding-top: 1rem;
  padding-bottom: 9rem;
}

/* FLOATING BOY IMAGE */
.about-boy {
  position: absolute;
  bottom: 0;
  left: 5%;
  z-index: 3;
}

.about-boy-img {
  max-height: 720px;
  width: auto;
  position: relative;
  bottom: 50px;
}

/* ======================
   RESPONSIVE
====================== */

/* Tablets */
@media (max-width: 991px) {
  .about-content {
    padding-bottom: 7rem;
  }

  .about-boy img {
    max-height: 320px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-boy {
    display: none;
  }

  .about-content {
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 5rem;
  }
}

/* FLOATING TESTIMONIAL */
.testimonial-wrapper {
  position: relative;
  margin-top: -200px;
  z-index: 5;
}

.testimonial-card {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* ANGLED GIRL IMAGE */
.testimonial-img-wrapper {
  height: 100%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* QUOTE ICON */
.quote-icon {
  position: absolute;
  left: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: #ff5a1f;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

/* UNDERLINE */
.underline {
  width: 60px;
  height: 2px;
  background: #ff5a1f;
}

/* ===============================
   RESPONSIVE FIXES
================================ */

/* Tablet */
@media (max-width: 991px) {
  .about-content {
    padding-bottom: 10rem;
  }

  .testimonial-wrapper {
    margin-top: -120px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .about-content {
    padding-top: 4rem;
    padding-bottom: 6rem;
    text-align: center;
  }

  .testimonial-wrapper {
    margin-top: -80px;
  }

  .testimonial-img-wrapper,
  .quote-icon {
    display: none;
  }
}

/*------------ FEATURED PRODUCTS  ----------*/
/* Card */
.product-card {
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.12);
}

/* Image (keeps consistent height) */
.product-img {
  height: 200px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Link */
.learn-more {
  font-size: 14px;
  font-weight: 500;
  color: #0d6efd;
  text-decoration: none;
}

.learn-more:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .product-img {
    height: 180px;
  }
}

/* --Service and contactus page--------------------------------------------------------- */
:root {
  --orange: #ff6b3d;
  --dark: #0b162c;
}

/* NAVBAR */
.bg-orange {
  background: var(--orange);
}

/* NAV PILL */
.nav-pill {
  background: #fff;
  color: #000 !important;
  width: 620px;
  max-width: 100%;
  padding: 4px 12px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* MENU ALIGN */
.nav-pill .navbar-nav {
  display: flex;
  justify-content: center;
  gap: 36px;
  margin: 0;
}

/* LINKS */
.nav-pill .nav-link {
  color: #000;
  font-weight: 400;
  font-size: 18px;
  padding: 4px 8px;
  border-radius: 30px;
  transition: 0.3s;
}

.nav-pill .nav-link:hover {
  color: #ff6b3d;
}

.nav-pill .nav-link.active {
  color: #ff6b3d !important;
}

/* CONTACT BUTTON */
.btn-contact {
  background: #fff !important;
  color: #FA6444 !important;
  border-radius: 10px;
  padding: 6px 20px;
  font-weight: 600;
  border: none;
  font-size: 16px;
}

.btn-contact:hover {
  background: #fff !important;
  color: #e85336 !important;
}

/* MOBILE */
@media (max-width: 991px) {
  .nav-pill {
    width: 100%;
    border-radius: 16px;
    padding: 14px;
    margin-top: 10px;
  }

  .nav-pill .navbar-nav {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* ================= CONTACT US PAGE STYLES ================= */
/* ================= CONTACT HERO ================= */
.contact-hero {
  background: url("assets/resources/contact-us/herobg.webp") center center / cover no-repeat;
  height: 466px;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 20px;
  margin-top: 20px;
}

/* Overlay */
.contact-hero .hero-overlay {
  position: absolute;
  inset: 0;
}

/* CONTENT ALIGN */
.contact-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

/* TYPOGRAPHY */
.contact-hero h5 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 10px;
}

.contact-hero h1 {
  font-size: 54px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 12px;
}

.contact-hero p {
  font-size: 32px;
  font-weight: 400;
}

.contact-hero p span {
  color: #FA6444;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .contact-hero {
    height: 320px;
    /* 👈 image height smaller */
  }

  .contact-hero h1 {
    font-size: 38px;
  }

  .contact-hero h5,
  .contact-hero p {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .contact-hero {
    height: 260px;
    /* 👈 smaller mobile */
  }

  .contact-hero h1 {
    font-size: 28px;
  }

  .contact-hero h5,
  .contact-hero p {
    font-size: 18px;
  }
}

/* ================= CONTACT INFO ================= */
/* MAP */
.map-frame {
  height: 100%;
  min-height: 420px;
  border: 0;
}

/* HEADING */
.keep-title {
  font-weight: 600;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* INPUTS */
.form-input {
  width: 100%;
  height: 48px;
  padding: 10px 14px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.form-input:focus {
  outline: none;
  border-color: #FA6444;
}

/* TEXTAREA */
textarea.form-input {
  height: auto;
  resize: none;
}

/* SERVICE SELECT */
.service-select {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
}

/* HEADER */
.service-header {
  padding: 12px 14px;
  cursor: pointer;
  font-size: 14px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* OPTIONS */
.service-options {
  display: none;
  padding: 12px 14px;
  background: #fafafa;
  flex-direction: column;
  gap: 8px;
}

.service-options label {
  font-size: 14px;
  display: flex;
  gap: 8px;
}

/* BUTTON */
.btn-orange {
  background: #FA6444;
  color: #fff;
  border-radius: 6px;
  padding: 10px;
  border: none;
}

.btn-orange:hover {
  background: #e05336;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .map-frame {
    min-height: 300px;
  }
}

/* Info boxes */
.info-box {
  background: #F1F1F1;
  padding: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  height: 100%;
}

.info-box i {
  font-size: 30px;
  color: var(--orange);
  margin-bottom: 10px;
}

/* Map */
.map-frame {
  height: 350px;
  border: 0;
}

/* Button */
.btn-orange {
  background: var(--orange);
  color: #fff;
  border: none;
}

.btn-orange:hover {
  background: #e65a2f;
}

/* SERVICE SELECT */
.service-select {
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

/* HEADER */
.service-header {
  padding: 12px 14px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}

/* OPTIONS */
.service-options {
  display: none;
  padding: 12px 14px;
  background: #fafafa;
}

.service-options label {
  display: flex;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 8px;
  cursor: pointer;
}

/* OFFER BOX */
.offer-box {
  display: none;
  background: #FFF5F7;
  color: #E81D23;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 500;
  border-top: 1px dashed #E81D23;
}

/* ================= FOOTER BASE ================= */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 0 25px;
  font-size: 15px;
}

/* HEADINGS */
.footer h5,
.footer h6 {
  margin-bottom: 16px;
  font-weight: 600;
}

/* PARAGRAPH */
.footer p {
  color: #cfd3da;
  margin-bottom: 10px;
}

/* LISTS */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 8px;
  color: #cfd3da;
}

/* ================= CONTACT ICON ALIGN ================= */
.footer-contact p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-contact i {
  color: #FA6444;
  font-size: 16px;
  margin-top: 3px;
  /* 👈 text baseline align fix */
}

/* ================= SOCIAL ICONS ================= */
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #FA6444;
  color: #fff;
}

/* ================= DIVIDER ================= */
.footer hr {
  border: none;
  border-top: 1px solid #ffffff;
  margin: 28px 0;
}

/* ================= BOTTOM ROW ================= */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.copyright {
  font-size: 16px;
  font-weight: 400;
}

.footer-links a {
  color: #ffffff;
  font-size: 16px;
  text-decoration: none;
  margin-left: 12px;
  font-weight: 400;
}


/* ================= COLUMN ALIGN FIX ================= */
.footer .row>div {
  display: flex;
  flex-direction: column;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .footer .row>div {
    align-items: flex-start;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-links a {
    margin-left: 6px;
    margin-right: 6px;
  }
}

/*----------------------------------Service section------------------------------------- */

.service-title {
  font-family: "Marcellus", serif;
  color: #FA6444;
  font-size: 24px;
  font-weight: 400;
}

.Request-title {
  font-family: "Marcellus", serif;
  color: #000;
  font-size: 40px;
  font-weight: 400;
}

.service-sub-title {
  font-size: 24px;
  font-weight: 400;
  color: #6c757d;
}


.service-card-img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.list-unstyled li {
  margin-bottom: 10px;
  padding-left: 30px;
  position: relative;
}

.list-unstyled li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 14px;
  height: 14px;
  background-image: url("assets/resources/service/tickicon.svg");
  background-size: contain;
  background-repeat: no-repeat;
}


:root {
  --brand-orange: #FA6444;
  --brand-dark: #001529;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(90deg, var(--brand-orange) 0%, var(--brand-dark) 40%);
  color: white;
  padding: 60px 0;
}

.stat-item {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item:last-child {
  border-right: none;
}

/* Why Choose Us Section */
/* WRAPPER – CENTER ALIGN */
.why-choose-us-wrapper {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

/* MAIN SECTION */
.why-choose-us {
  width: 1100px;
  background: #fff;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
  margin: 0;
  padding: 0;
}

/* IMAGE */
.warehouse-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CONTENT COLUMN */
.content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* FEATURE ICON */
.feature-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: #f6f6f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 32px;
  height: 32px;
}

/* FEATURE TITLE COLOR */
.feature-title {
  color: #FA6444;
  font-weight: 600;
  margin-bottom: 4px;
}

/* RESPONSIVE – MOBILE */
@media (max-width: 991px) {

  /* hide image on mobile */
  .image-col {
    display: none;
  }

  .why-choose-us {
    width: 100%;
    height: auto;
    box-shadow: none;
    padding: 20px 0;
  }

  .content-col {
    padding: 0 20px !important;
  }
}

/*----------------------------------Marquee section------------------------------------- */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  white-space: nowrap;
}

.marquee-content {
  display: inline-block;
  animation: scroll 20s linear infinite;
}

.marquee-content span {
  display: inline-block;
  font-family: sans-serif;
  font-weight: bold;
  color: white;
  font-size: 1.2rem;
  margin: 0 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* The Animation */
@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Optional: Pause on hover */
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

/* ================= QUOTE SECTION ================= */
.quote-section {
  background: url("assets/resources/service/bottomimg.webp") center / cover no-repeat;
  height: 480px;
  margin: 0 auto;
  /* center section */
  display: flex;
  align-items: center;
}

/* WRAPPER – ALIGN RIGHT */
.quote-wrapper {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 60px;
}

/* ================= FORM CONTAINER ================= */
.quote-form-container {
  width: 687px;
  height: 374px;
  background-color: #ffffff66;
  padding: 40px;
  border-radius: 14px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* INPUTS */
.quote-form-container .form-control {
  height: 48px;
  border-radius: 8px;
  border: none;
}


/* BUTTON */
.btn-submit {
  background: #FA6444 !important;
  color: #fff !important;
  padding: 10px 56px;
  border-radius: 10px;
  border: none;
}

.btn-submit:hover {
  background: #e55338 !important;
  color: #fff !important;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
  .quote-section {
    width: 100%;
    height: auto;
    padding: 60px 20px;
  }

  .quote-wrapper {
    justify-content: center;
    padding-right: 0;
  }

  .quote-form-container {
    width: 100%;
    height: auto;
    padding: 30px;
  }
}

/*========================== Banner Section ==========================*/
/* BANNER BASE */
.banner-blue {
  background-image: url("assets/resources/service/bottom2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 188px;
  display: flex;
  align-items: center;
}

/* INNER ALIGN */
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* TITLE */
.banner-inner h3 {
  margin: 0;
  font-weight: 400;
}

/* BUTTON */
.banner-btn {
  background-color: #fff;
  font-size: 18px;
  color: #FA6444;
  border-radius: 6px;
  padding: 12px 38px;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
  transition: 0.3s ease;
}

.banner-btn:hover {
  background-color: #FA6444;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .banner-blue {
    height: auto;
    padding: 40px 0;
    text-align: center;
  }

  .banner-inner {
    flex-direction: column;
    justify-content: center;
  }
}

/*-------------------------Service Section--------------------------------- */
.service-hero {
  background: url("assets/resources/service/serviceheroimg.webp") center center / cover no-repeat;
  height: 466px;
  position: relative;
  display: flex;
  align-items: center;
}

.head-service-title {
  font-family: "Marcellus", serif;
  color: #FA6444;
  font-weight: 400;
  font-size: 40px;

}

/* ----Aboutus page--------------------------------------------------------------------------------- */
/* VIDEO CARD */
.video-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}

/* VIDEO */
.video-card video {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

/* PLAY ICON */
.play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.15);
}

.play-icon i {
  color: #fff;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.55);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* HOVER EFFECT */
.video-card:hover .play-icon {
  background: rgba(0, 0, 0, 0.25);
}

/* RESPONSIVE HEIGHT */
@media (max-width: 767px) {
  .video-card video {
    min-height: 220px;
  }
}

.video-card video::-webkit-media-controls {
  display: none;
}

.about-hero {
  background: url("assets/resources/about/abouthero.webp") center center / cover no-repeat;
  height: 466px;
  position: relative;
  display: flex;
  align-items: center;
}

.about-main {
  padding: 35px 0;
}

.about-subtitle {
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  color: #FA6444;
}

.about-title {
  color: #000;
  font-size: 32px;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.about-img {
  width: 100%;
  border-radius: 16px;
}

/* SIGNATURE */
/* SIGNATURE – LEFT ALIGN */
.about-signature {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

/* IMAGE */
.about-signature img {
  width: 140px;
  height: auto;
}

/* TEXT */
.signature-text strong {
  display: block;
  font-size: 16px;
  color: #000;
}

.signature-text span {
  font-size: 14px;
  color: #666;
}

.about-section-title {
  font-family: "Marcellus", serif;
  color: #FA6444;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
}

/* ================= CARDS ================= */
.about-cards {
  padding: 40px 0;
}

.about-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* VISION / MISSION INLINE BOX */
.vision-box {
  gap: 16px;
}

/* ICON */
.vision-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  margin-top: 4px;
}

/* CONTENT */
.vision-content h4 {
  color: #FA6444;
  font-family: Marcellus;
  font-size: 22px;
  margin-bottom: 8px;
}

.vision-content p {
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
}

/* MOBILE */
@media (max-width: 576px) {
  .vision-box {
    align-items: flex-start;
  }
}

/* ================= WHY ================= */
.about-why {
  padding: 60px 0;
}

.about-list {
  list-style: none;
  padding: 0;
}

.about-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.about-list i {
  color: #FA6444;
  margin-right: 8px;
}

/* Core Values Cards */
/* CORE CARD */
.about-core-card {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* ICON + HEADING INLINE */
.core-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.core-head img {
  width: 26px;
  height: 26px;
}

/* HEADING STYLE */
.about-core-card h5 {
  color: #FA6444;
  font-size: 20px;
  font-family: Marcellus;
  margin: 0;
}

/* PARAGRAPH */
.about-core-card p {
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .about-core-card {
    text-align: left;
  }
}

/* IMG SCROLL SECTION */
.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  gap: 15px;
  width: max-content;
  animation: scroll 25s linear infinite;
}

.slider-wrapper:hover .slider-track {
  animation-play-state: paused;
}

.img-card {
  width: 300px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.img-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Warehouse Products Section */
.warehouse-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.warehouse-title {
  text-align: center;
  margin-bottom: 40px;
}

.warehouse-title h2 {
  font-weight: 700;
}

.warehouse-product-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  height: 100%;
}

.warehouse-product-card:hover {
  transform: translateY(-6px);
}

.warehouse-product-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.warehouse-product-card h5 {
  padding: 15px;
  margin: 0;
  text-align: center;
  font-weight: 600;
}

.warehouse-brochure-btn {
  text-align: center;
  margin-top: 40px;
}
.warehouse-brochure-btn .btn-primary-download{
  background-color: #FA6444;
  color: #fff;
  border: none;
}
