/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Roboto:wght@400;500;700&display=swap");

:root {
  --font-heading: "Montserrat", sans-serif;
  --font-body: "Roboto", sans-serif;

  /* Font Sizes (Mobile First) */
  --fs-base: 1rem;
  --fs-sm: 0.875rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.25rem;
  --fs-xl: 1.5rem;
  --fs-xxl: 2rem;
  --fs-display: 2.5rem;

  /* Line Heights */
  --lh-base: 1.6;
  --lh-heading: 1.2;

  /* Colors */
  --color-body: #333333;
  --color-heading: #0f0f0f;
  /* --color-link: #d4a762; */
  --color-link: #f68a0a;
  --color-link-hover: #aa864e;
  --color-bg: #ffffff;
  --color-dark: #0e121d;
}

body {
  margin: 0;
  font-family: var(--font-body) !important;
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-body);
  background-color: var(--color-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em 0;
  font-family: var(--font-heading) !important;
  font-weight: 600;
  line-height: var(--lh-heading);
  color: var(--color-heading);
}

h1 {
  font-size: var(--fs-display);
}
h2 {
  font-size: var(--fs-xxl);
}
h3 {
  font-size: var(--fs-xl);
}
h4 {
  font-size: var(--fs-lg);
}
h5 {
  font-size: var(--fs-md);
}
h6 {
  font-size: var(--fs-sm);
}

p {
  margin: 0 0 1rem 0;
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  color: var(--color-body);
}

a {
  color: var(--color-link);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

a:hover {
  color: var(--color-dark);
}

strong,
b {
  font-weight: 600;
}

small {
  font-size: 0.8rem;
}

hr {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 2rem 0;
  opacity: 0.6;
}

/* Responsive Headings */
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 2.25rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1.5rem;
  }
}

/* Lists */
ul,
ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* Blockquote */
blockquote {
  margin: 1.5rem 0;
  padding-left: 1rem;
  border-left: 4px solid var(--color-link);
  font-style: italic;
  color: #555;
}

/* Hero section */
.hero-video-section {
  position: relative;
  min-height: 100vh;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 6px 42px 0 rgba(20, 20, 25, 0.16);
}

.hero-bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translateX(-50%) translateY(-50%);
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    135deg,
    rgba(34, 36, 38, 0.56) 0%,
    rgba(0, 0, 0, 0.69) 100%
  );
  backdrop-filter: blur(1.6px);
}

/* Center content */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 2rem 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.1rem);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.5), 0 6px 32px rgba(0, 0, 0, 0.3);
  line-height: var(--lh-heading, 1.2);
  margin-bottom: 1rem;
  letter-spacing: -1.5px;
  animation: fadeInDown 1.1s cubic-bezier(0.37, 1.03, 0.84, 0.98);
}

.hero-title .text-primary {
  color: var(--color-link, #f68a0a);
  text-shadow: 0 2px 12px rgba(255, 106, 40, 0.6);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 1.5px;
  background: rgba(20, 20, 22, 0.6);
  display: inline-block;
  border-radius: 22px;
  padding: 0.42em 1.5em;
  margin-bottom: 2.2rem;
  font-weight: 500;
  animation: fadeInUp 1s cubic-bezier(0.52, 0.19, 0.72, 1.44);
  backdrop-filter: blur(10px);
}

/* Fade In Animations */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-32px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  
  .hero-content {
    min-height: 80vh;
  }
  
  .hero-video-section {
    min-height: 80vh;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(1.5rem, 7vw, 2.2rem);
    letter-spacing: -1px;
  }
  
  .hero-tagline {
    font-size: 1rem;
    padding: 0.35em 1.2em;
  }
  
  .hero-content {
    min-height: 70vh;
    padding: 1rem 0;
  }
  
  .hero-video-section {
    min-height: 70vh;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: clamp(1.3rem, 8vw, 1.8rem);
  }
  
  .hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .hero-content {
    min-height: 60vh;
  }
  
  .hero-video-section {
    min-height: 60vh;
  }
}

/* Fallback for very old browsers or slow connections */
@media (max-width: 480px) {
  .hero-video-section {
    background: linear-gradient(
      135deg,
      rgba(34, 36, 38, 0.8) 0%,
      rgba(0, 0, 0, 0.9) 100%
    ), url("img/about.jpg") center/cover no-repeat;
  }
  
  .hero-bg-video {
    /* display: none; */
  }
}

/* Adjust padding depending on your navbar height if needed */

/* clients section */

.clients-slider-section {
  background: #fff;
}

.clients-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: var(--fs-xl, 1.5rem);
  color: var(--color-heading, #111);
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.clients-strip-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 18px 0;
  background: linear-gradient(90deg, #fff, #f5f5f7 50%, #fff 100%);
  /* border: 1px solid black; */
  border-radius: 20px;
  box-shadow: 0 0 18px 3px rgba(0, 0, 0, 0.03);
}

.clients-strip {
  display: flex;
  align-items: center;
  gap: 56px;
  animation: clients-infinite-scroll 34s linear infinite;
  /* Adjust speed by changing 34s */
}

.clients-strip img {
  height: 100px;
  width: auto;
  object-fit: contain;
  /* opacity: 0.86; */
  transition: transform 0.21s;
  /* filter: grayscale(50%) brightness(96%); */
}
.clients-strip img:hover {
  transform: scale(1.07) translateY(-4px) rotate(-1.5deg);
  opacity: 1;
  filter: none;
  box-shadow: 0 3px 18px rgba(246, 138, 10, 0.08);
  background: #fff5ed;
  border-radius: 14px;
}

@keyframes clients-infinite-scroll {
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive tweaks */
@media (max-width: 991px) {
  .clients-strip img {
    height: 44px;
    gap: 32px;
  }
  .clients-strip {
    gap: 36px;
  }
}
@media (max-width: 600px) {
  .clients-title {
    font-size: 1.12rem;
  }
  .clients-strip img {
    height: 32px;
  }
  .clients-strip {
    gap: 22px;
  }
  .clients-strip-wrapper {
    border-radius: 14px;
    padding: 10px 0;
  }
}

/* about */

.about-image {
  overflow: hidden;
  border-radius: 18px;
  /* box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08); */
  transition: transform 0.4s ease;
}

.about-image:hover img {
  transform: scale(1.06);
  border-radius: 18px;
  filter: brightness(1.1);
}

/* Section Base */
.alice-advantages-section {
  background: var(--color-bg);
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Title styling */
.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  color: var(--color-heading);
  position: relative;
  letter-spacing: 1.2px;
  margin-bottom: 3.5rem;
  user-select: none;
  text-align: center;
  animation: fadeInUp 1s ease forwards;
}

/* Grid layout for advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.75rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Individual advantage card */
.advantage-card {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem 3rem 2rem;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease,
    border-color 0.35s ease;
  cursor: default;
  outline-offset: 4px;
  user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  will-change: transform, box-shadow;
}

.advantage-card:focus,
.advantage-card:hover {
  box-shadow: 0 12px 32px rgba(255, 106, 40, 0.4),
    0 4px 20px rgba(255, 106, 40, 0.25);
  transform: translateY(-8px);
  border: 2px solid var(--color-link);
  transition-timing-function: cubic-bezier(0.15, 0.65, 0.44, 1);
}

/* Icon circle */
.icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--color-link);
  color: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  font-size: 28px;
  box-shadow: 0 0 18px rgba(255, 106, 40, 0.25);
  transition: background 0.4s ease, box-shadow 0.35s ease;
}

.advantage-card:focus .icon-circle,
.advantage-card:hover .icon-circle {
  background: #db5b08;
  box-shadow: 0 0 32px 4px rgba(219, 91, 8, 0.45);
}

/* Title inside card */
.advantage-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-heading);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

/* Description inside card */
.advantage-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-body);
  max-width: 270px;
  margin: 0 auto;
  user-select: text;
}

/* Entrance animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive margin adjustment */
@media (max-width: 599px) {
  .advantages-grid {
    gap: 2.5rem 1rem;
  }
  .advantage-desc {
    max-width: 100%;
  }
}

.mission-vision-section {
  background: var(--color-bg);
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  position: relative;
  overflow: hidden;
  font-family: var(--font-body);
  color: var(--color-body);
}

/* Decorative background shapes */
.mission-vision-section::before,
.mission-vision-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 1;
}

.mission-vision-section::before {
  width: 400px;
  height: 400px;
  background: var(--color-link);
  top: -150px;
  left: -150px;
  filter: blur(140px);
}

.mission-vision-section::after {
  width: 320px;
  height: 320px;
  background: var(--color-link);
  bottom: -120px;
  right: -120px;
  filter: blur(120px);
}

/* Content wrapper grid */
.content-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.5rem 4rem;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1rem 0 2rem;
}

/* Blocks styling */
.mission-block,
.vision-block {
  background: #fff;
  padding: 2.8rem 2rem 2.6rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(255, 138, 10, 0.1);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: default;
  outline-offset: 4px;
}

/* Elevation on hover/focus */
.mission-block:hover,
.vision-block:hover,
.mission-block:focus,
.vision-block:focus {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 16px 48px rgba(255, 138, 10, 0.25);
}

/* Section Titles */
.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  letter-spacing: 1.2px;
  color: var(--color-heading);
  margin-bottom: 1.2rem;
  user-select: text;
  position: relative;
  padding-bottom: 0.3rem;
}

/* Accent underline */
.section-title::after {
  content: "";
  display: block;
  width: 58px;
  height: 4px;
  background: var(--color-link);
  border-radius: 3px;
  margin-top: 8px;
  transition: width 0.3s ease;
}

.mission-block:hover .section-title::after,
.vision-block:hover .section-title::after,
.mission-block:focus .section-title::after,
.vision-block:focus .section-title::after {
  width: 88px;
}

/* Text paragraph */
.section-text {
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--color-body);
  max-width: 520px;
  user-select: text;
}

.section-text strong {
  color: var(--color-link);
  font-weight: 700;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
  .section-text {
    font-size: 1rem;
    max-width: 100%;
  }
}

/* Accessibility focus styles */
.mission-block:focus-visible,
.vision-block:focus-visible {
  box-shadow: 0 0 0 4px var(--color-link), 0 16px 48px rgba(255, 138, 10, 0.25);
  outline: none;
}


/* Why Choose Us section */

.why-card {
  transition: transform 0.22s, box-shadow 0.22s, background 0.16s;
  border: 1px solid #f5671f !important;
  border-radius: 1.4rem;
}
.why-card:hover,
.why-card:focus-visible {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 14px 36px rgba(246,138,10,0.18), 0 2px 11px rgba(21,18,3,0.04)!important;
  background: #fff7ee;
}

.why-cta:hover,
.why-cta:focus-visible {
  background: linear-gradient(90deg,#f68a0a 65%,#ffb350 100%)!important;
  /* background: #111 !important; */
  color: #fff !important;
  transform: translateY(-8px) scale(1.045);
}

/* Arrow animation (optional) */
@keyframes arrowBounce {
  0%, 100% { transform: translateY(0);}
  20% { transform: translateY(-11px);}
  40% { transform: translateY(1px);}
  75% { transform: translateY(-5px);}
}


/* Product section */

.products-section {
  /* Clean white background, padding from Bootstrap */
}
.product-img {
  max-width: 85%;
  border-radius: 1.2rem;
  box-shadow: 0 10px 28px rgba(0,0,0,.13);
  transition: transform 0.3s;
}
.product-img:hover,
.product-img:focus {
  transform: scale(1.03) translateY(-4px);
  box-shadow: 0 18px 40px rgba(246,138,10,.08);
}
.product-title {
  color: #f68a0a; /* Bootstrap warning or your accent */
  letter-spacing: .4px;
}
@media (max-width: 767.98px) {
  .product-img {
    max-width: 100%;
    margin-bottom: 1.6rem;
  }
  .product-title {
    font-size: 1.32rem;
  }
}


/* section-1 */

/* Section styling */
.features-brands-section {
  background: #f8f9fa;
}

/* Section divider */
.section-divider {
  width: 60px;
  height: 4px;
  background: #f68a0a;
  border-radius: 2px;
}

/* Feature items */
.feature-item {
  padding: 1rem;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.feature-icon i {
  color: #f68a0a;
}

/* Compatibility content */
.compatibility-content {
  border-left: 5px solid #f68a0a;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .feature-icon {
    font-size: 2rem;
  }
  
  .compatibility-content {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .feature-item {
    margin-bottom: 2rem;
  }
  
  .compatibility-content {
    padding: 1.5rem 1rem;
  }
}




/*  */

/* Brand header styling */
.brand-header {
  animation: fadeInUp 0.6s ease-out;
}

.brand-image-container {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.brand-image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1) !important;
}

.brand-machine-img {
  max-width: 100%;
  height: auto;
  max-height: 250px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-title {
  color: #f68a0a;
  font-weight: 700;
  font-size: 1.8rem;
}

/* Responsive brand images */
@media (max-width: 767.98px) {
  .brand-machine-img {
    max-height: 200px;
  }
  .brand-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .brand-machine-img {
    max-height: 150px;
  }
  .brand-title {
    font-size: 1.3rem;
  }
}

/* Existing CSS remains the same */
.product-img-container {
  width: 150px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 8px;
  overflow: hidden;
}

.product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.brand-tab-text {
  width: 150px;
  text-align: center;
}

.menu-item {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.menu-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.08) !important;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .brand-tab-text {
    width: 120px;
    font-size: 0.9rem;
  }
  .product-img-container {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 767.98px) {
  .brand-tab-text {
    width: 100px;
    font-size: 0.85rem;
  }
  .product-img-container {
    width: 90px;
    height: 90px;
  }
  .nav-pills {
    flex-wrap: wrap !important;
  }
  h5.small {
    font-size: 1rem;
  }
}


/* footer */

/* Footer Styling */
.footer-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #f68a0a 0%, #ff6b35 100%);
}

/* Footer Logo */
.footer-logo-img {
  max-width: 140px;
  height: auto;
  background: white;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Footer Titles */
.footer-title {
  color: #f68a0a;
  font-weight: 700;
  position: relative;
  padding-bottom: 8px;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: #f68a0a;
}

/* Footer Description */
.footer-desc {
  color: #bdc3c7;
  line-height: 1.6;
}

/* Footer Links */
.footer-link {
  color: #ecf0f1;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-link:hover {
  color: #f68a0a;
  padding-left: 5px;
}

.footer-link i {
  font-size: 0.75rem;
  color: #f68a0a;
}

/* Contact Items */
.contact-item {
  display: flex;
  align-items: flex-start;
  color: #ecf0f1;
  font-size: 0.95rem;
}

.contact-item i {
  margin-top: 2px;
  color: #f68a0a;
}

/* Social Links */
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #f68a0a;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #e07b08;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(246, 138, 10, 0.3);
}

/* Footer Divider */
.footer-divider {
  border-color: #455a64;
  opacity: 0.3;
}

/* Footer Bottom */
.footer-copyright,
.footer-credits {
  color: #95a5a6;
  font-size: 0.9rem;
}

.footer-credits .fa-heart {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

/* Responsive Adjustments */
@media (max-width: 767.98px) {
  .footer-logo-img {
    max-width: 120px;
  }
  
  .footer-title {
    font-size: 1.1rem;
  }
  
  .social-link {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .footer-copyright,
  .footer-credits {
    text-align: center !important;
    margin-bottom: 10px !important;
  }
}

@media (max-width: 575.98px) {
  .footer-section {
    padding: 3rem 0 2rem;
  }
  
  .contact-item {
    font-size: 0.9rem;
  }
}

/* Phone contact styling */
.phone-person {
  color: #ecf0f1;
  font-size: 0.95rem;
  line-height: 1.4;
}

.phone-person strong {
  color: #f68a0a;
  font-size: 0.9rem;
}

.phone-link {
  color: #ecf0f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-link:hover {
  color: #f68a0a;
  text-decoration: underline;
}

/* Responsive adjustments for phone section */
@media (max-width: 767.98px) {
  .phone-person {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
  
  .phone-person strong {
    font-size: 0.85rem;
  }
}

@media (max-width: 575.98px) {
  .contact-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-item i {
    margin-bottom: 8px;
  }
}




