body {
      font-family: "Poppins", Helvetica, Arial, sans-serif;
      background-color: #f8f8f8;
      color: #000 !important;
    }

    /* ---------- TOP BAR ---------- */
    .top-bar {
      background-color: #faf7f3;
      color: #6c6c6c;
      font-size: 14px;
      border-bottom: 1px solid #232637;
      padding: 6px 0;
    }
    .top-bar a {
      color: #6c6c6c;
      text-decoration: none;
      margin-right: 20px;
      font-weight: 600;
    }

    /* ---------- NAVBAR ---------- */
    .navbar {
      background-color: #faf7f3;
      border-bottom: 1px solid #232637;
      padding: 0;
    }
    .navbar-brand {
      color: #fff !important;
      font-weight: 700;
      font-size: 1.5rem;
      padding: 0.75rem 2rem;
      display: flex;
      align-items: center;
    }
    .nav-link {
      color: #000b33 !important;
      font-weight: 600;
      letter-spacing: 1px;
      padding: 1rem 1.25rem;
      text-transform: uppercase;
      position: relative;
    }
    .nav-link.active::after {
      content: "";
      position: absolute;
      bottom: 6px;
      left: 10%;
      width: 80%;
      height: 2px;
      background-color: #000b33;
    }
    .right-icons a {
      color: #000b33;
      font-weight: 600;
      font-size: 15px;
      border-left: 1px solid #232637;
      padding: 1rem 1.5rem;
      display: flex;
      align-items: center;
      text-decoration: none;
      white-space: nowrap;
    }
    .right-icons i {
      font-size: 1.2rem;
      margin-right: 6px;
    }


/* Hero Section Layout */
.meyle-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background-color: #4c1211;
  color: #fff;
  display: flex;
}

/* Right-side background image */
/*.hero-image {*/
/*  position: absolute;*/
/*  right: 0;*/
/*  top: 0;*/
/*  width: 55%;*/
/*  height: 100%;*/
/*  background: url('images/image1') center center / cover no-repeat;*/
/*  z-index: 1;*/
/*}*/

.hero-video {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Animated blue overlay (slides in) */
.meyle-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #4c1211;
  z-index: 2;
  clip-path: polygon(0 0, 70% 0, 55% 100%, 0% 100%);
  animation: overlaySlide 1.5s ease-out forwards;
}

/* Animate overlay in from left */
@keyframes overlaySlide {
  to {
    width: 100%;
  }
}

/* Text animation (fade + slide) */
.hero-content {
  position: relative;
  z-index: 3;
  animation: fadeSlideIn 1.5s ease-out 1.2s forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Cyan button styling */
.btn-cyan {
  background-color: #001a3a;
  color: #fff;
  border: none;
  transition: all 0.3s ease;
}

.btn-cyan:hover {
  background-color: #001a3a;
  transform: translateY(-2px);
}

    .btn-learn {
      display: inline-flex;
      align-items: center;
      font-weight: 600;
      text-transform: uppercase;
      text-decoration: none;
      font-size: 1rem;
      margin-top: 40px;
    }
    .btn-learn .left {
      background-color: #00ffd0;
      color: #000;
      padding: 16px 32px;
    }
    .btn-learn .right {
      background-color: #fff;
      color: #000b33;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .btn-learn .right i {
      font-size: 1.2rem;
      transition: transform 0.3s ease;
    }
    .btn-learn:hover .right i {
      transform: translateX(5px);
    }


    /* Font setup (MEYLE uses Helvetica Neue or similar clean sans-serif) */
body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  background-color: #fcf9f7;
  color: #000b36;
}


 .customer-segments {
  background-color: #fcfaf8; /* same off-white tone */
  color: #01013a; /* dark navy */
  font-family: "Inter", sans-serif;
}

.segment-item h2 {
  font-size: 3rem;
  font-weight: 400;
  transition: color 0.3s ease;
}

.segment-item i {
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.segment-item:hover i {
  transform: translateX(10px);
}

.segment-item:hover h2 {
  color: #000060;
}

.areas-goal-section {
  background-color: #fcfaf8; /* same off-white as Meyle */
  color: #0a0a3b; /* dark navy */
  font-family: "Inter", sans-serif;
  border-top: 1px solid #232637; /* thin top border like Meyle */
}

.areas-heading {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.3;
  font-style: italic;
  color: #01013a;
}

.highlight-slash {
  color: #00d6c1; /* turquoise slash accent */
  font-weight: 900;
  margin-right: 8px;
}

.heading-bold {
  display: inline-block;
}

.areas-subtext {
  color: #5b5b5b;
  font-size: 1.1rem;
  max-width: 800px;
}

/* === MEYLE Slider Styling === */
.product-slider {
  position: relative;
  overflow: hidden;
  background-color: #fefcfb;
  border-top: 1px solid #232637;
  border-bottom: 1px solid #232637;
}

.product-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 0;
}

.product-image {
  background: #00ffe0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 80vh;
  clip-path: polygon(0 0, 80% 0, 70% 100%, 0% 100%);
}

.product-image img {
  max-width: 60%;
  height: auto;
  z-index: 2;
}

.product-info {
  padding: 100px 80px;
  position: relative;
  background: #fefcfb;
  border-left: 1px solid #232637;
}

.product-info::after {
  content: attr(data-number);
  position: absolute;
  right: 10%;
  top: 30%;
  font-size: 200px;
  color: rgba(0, 0, 0, 0.05);
  font-weight: 700;
  z-index: 0;
}

.slide-count {
  font-size: 15px;
  color: #6c757d;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.product-tag {
  color: #6c757d;
  font-weight: 600;
  margin-bottom: 10px;
}

.product-title {
  font-size: 26px;
  font-weight: 700;
  color: #000230;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.product-desc {
  color: #6c757d;
  line-height: 1.8;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

/* === Arrows === */
.carousel-control-prev,
.carousel-control-next {
  width: 70px;
  opacity: 1;
  top: 45%;
}

.nav-btn {
  font-size: 32px;
  color: #000;
  background: none;
  border: none;
  font-weight: 600;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

/* === Responsive === */
@media (max-width: 992px) {
  .product-slide {
    flex-direction: column;
  }
  .product-image {
    clip-path: none;
    width: 100%;
    height: 250px;
  }
  .product-info {
    padding: 40px 30px;
  }
  .product-info::after {
    font-size: 100px;
    top: 60%;
  }
}

    /* === DRIVING INNOVATION Section === */
    .innovation-section {
      background: #004b8d; /* deep blue background */
      overflow: hidden;
      white-space: nowrap;
      position: relative;
      border-top: 1px solid #232637;
      border-bottom: 1px solid #232637;
    }

    .scroll-text {
      display: inline-block;
      font-size: 5rem;
      font-weight: 800;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-style: italic;
      padding: 20px 0;
      transition: transform 15s linear;
    }

    .outline-text {
      -webkit-text-stroke: 2px #fff;
      color: transparent;
      font-weight: 900;
    }
.innovation-section {
  background-color: #4c1211; /* Deep blue background */
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 40px 0;
}

.scroll-wrapper {
  display: flex;
  align-items: center;
  animation: scrollText 20s linear infinite;
}

.scroll-text {
  font-size: 6rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 2px;
  transform: skew(-10deg);
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
}

/* Continuous scrolling animation */
@keyframes scrollText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* --- SECTION BASE --- */
.innovation-section {
  background: #4c1211;
  overflow: hidden;
  position: relative;
  padding: 50px 0;
}

/* --- COMMON LINE STYLES --- */
.innovation-line {
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* --- SCROLLING TEXT TRACK --- */
.text-track {
  display: inline-block;
  animation: scrollLeft 20s linear infinite;
  font-family: "Impact", "Arial Black", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  transform: skew(-10deg);
  letter-spacing: 2px;
}

/* --- SOLID LINE --- */
.innovation-line.solid span {
  color: #ffffff;
  margin-right: 60px;
}

/* --- OUTLINE LINE --- */
.innovation-line.outline span {
  color: transparent;
  -webkit-text-stroke: 2px #ffffff;
  margin-right: 60px;
}

/* --- SCROLL ANIMATION --- */
@keyframes scrollLeft {
  from {
    transform: translateX(0) skew(-10deg);
  }
  to {
    transform: translateX(-50%) skew(-10deg);
  }
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 992px) {
  .text-track {
    font-size: 3.5rem;
  }
}

@media (max-width: 576px) {
  .text-track {
    font-size: 2.2rem;
  }
}


/* Hover pause */
.innovation-section:hover .scroll-wrapper {
  animation-play-state: paused;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .scroll-text {
    font-size: 3rem;
  }
}

@media (max-width: 576px) {
  .scroll-text {
    font-size: 2rem;
  }
}

/* --- Base Section --- */
.news-section {
  background-color: #faf9f7;
  border-top: 1px solid #232637;
  padding: 100px 0;
}

/* --- Title --- */
.news-title {
  font-family: "Arial Black", "Impact", sans-serif;
  font-weight: 900;
  font-size: 4rem;
  text-transform: uppercase;
  line-height: 1;
  color: #0a0a23;
  letter-spacing: 1px;
}

/* --- Slash Highlight --- */
.highlight-slash {
  color: #4c1211;
  font-weight: 900;
  font-size: 4.2rem;
  margin-right: 10px;
  display: inline-block;
  transform: translateY(5px);
}

/* --- Subtext --- */
.news-subtext {
  font-size: 1.25rem;
  color: #5c5c5c;
  max-width: 750px;
  line-height: 1.6;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
  .news-title {
    font-size: 3rem;
  }
  .highlight-slash {
    font-size: 3.2rem;
  }
}

@media (max-width: 576px) {
  .news-title {
    font-size: 2.2rem;
  }
  .news-subtext {
    font-size: 1rem;
  }
}



/* === MEYLE Blog Section === */
.meyle-news-section {
  background-color: #fefcfb;
  color: #0b1131;
  font-family: "Roboto", sans-serif;
}

/* Card */
.meyle-card {
  background: #fff;
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Image hover zoom */
.meyle-img {
  overflow: hidden;
}

.meyle-img img {
  width: 100%;
  transition: transform 0.6s ease;
  height:300px;
}

.meyle-card:hover img {
  transform: scale(1.08);
}

/* Tag */
.meyle-tag {
  display: inline-block;
  border: 1px solid #232637;
  color: #0b1131;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 2px;
}

/* Title */
.meyle-title {
  font-size: 2.05rem;
  color: #0b1131;
  line-height: 1;
  transition: color 0.3s ease;
}

.meyle-title:hover {
  color: #007aff;
}

/* Button */
.meyle-btn {
  border: 1px solid #232637;
  color: #0b1131;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 10px 20px;
  transition: all 0.3s ease;
}

.meyle-btn:hover {
  background-color: #4c1211;
  color: #fff;
}


/* === Testimonial Heading Section === */
.meyle-testimonial-header {
  background-color: #fefcfb;
  font-family: 'Roboto Condensed', sans-serif;
}

.meyle-line {
  width: 100%;
  height: 1px;
  background-color: #0b1131;
  opacity: 0.9;
}

/* Heading */
.meyle-heading h2 {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.1;
  color: #0b1131;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: 1px;
}

/* Slash color */
.meyle-slash {
  color: #4c1211; /* cyan/teal color like MEYLE */
  font-weight: 900;
  margin-right: 8px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .meyle-heading h2 {
    font-size: 2.2rem;
  }
}

.customer-segments {
  background-color: #fff;
  color: #4c1211;
  font-family: "Helvetica Neue", Arial, sans-serif;
  overflow: hidden;
}

.segment-item {
  position: relative;
  cursor: pointer;
  z-index: 1;
  transition: color 0.3s ease;
}

.segment-item h2 {

  margin: 0;
  z-index: 2;
  position: relative;
  transition: color 0.3s ease;
}

.segment-item i {
  font-size: 2rem;
  z-index: 2;
  position: relative;
  transition: color 0.3s ease;
}

/* Blue background animation */
.segment-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0%;
  height: 100%;
  background-color: #4c1211; /* MEYLE blue */
  z-index: 0;
  transition: width 0.5s ease;
}

/* Hover effect */
.segment-item:hover::before {
  width: 100%;
}

/* Text color change on hover */
.segment-item:hover h2,
.segment-item:hover i {
  color: #fff;
}

/* Borders */
.segment-item {
  border-color: #232637 !important;
}

/* Optional: subtle arrow movement */
.segment-item:hover i {
  transform: translateX(6px);
  transition: transform 0.3s ease;
}
.customer-segments .container {
  max-width: 100%; /* make container full width */
  padding: 0; /* remove default container padding */
}

/* --- Base Section --- */
.meyle-slider {
  background: #f9f8f7;
  border-top: 1px solid #232637;
  border-bottom: 1px solid #232637;
  overflow: hidden;
  position: relative;
}
.meyle-slider::before {
  content: "";
  position: absolute;
  top: 9px; /* adjust spacing — 5px to 10px looks good */
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #0a0a23;
  z-index: 2;
  margin-top:70px;
}
/* Green diagonal stripe on top */
.green-stripe {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 80px;
  background: #4c1211;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
  z-index: 2;
}

/* Image */
.product-img {
  object-fit: contain;
  transition: transform 0.4s ease;
}

/* Text area */
.big-bg-number {
  position: absolute;
  right: 12%;
  top: 30%;
  font-size: 15rem;
  font-weight: 700;
  color: #000;
  opacity: 0.05;
  pointer-events: none;
  line-height: 1;
}

/* Arrows */
.slider-arrows {
  position: absolute;
  top: 20px;
  right: 40px;
  display: flex;
  gap: 10px;
  z-index: 10;
}
.arrow-btn {
  width: 45px;
  height: 45px;
  border: 1px solid #232637;
  border-radius: 0;
  background: transparent;
  color: #0a0a23;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}
.arrow-btn:hover {
  background: #0a0a23;
  color: #fff;
}

/* Colors */

.text-cyan {
  color: #00E1FF !important;
}

/* Section */
.testimonial-section {
  background-color: #f8f8f6;
  position: relative;
  border-top: 1px solid #232637;
}

/* Arrows */
.arrow-box {
  z-index: 5;
}
.custom-arrow {
  background: transparent;
  color: #000;
  border: 1px solid #232637;
  width: 50px;
  height: 50px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.custom-arrow:hover {
  background-color: #4c1211;
  color: #fff;
  border-color: #232637;
}



.contact-section {
  background-color: #f8f7f5; /* light background outside the box */
}

.contact-box {
  background-color: black; /* deep blue box */
}

.contact-content h3 {
  font-size: 2rem;
}

.btn-contact {
  background-color: #4c1211;
  color: #fff;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: none;
  transition: 0.3s ease;
}

.btn-contact:hover {
  background-color: #4c1211;
  color: #fff;
}

.btn-icon {
  background-color: #fff;
  color: #4c1211;
  padding: 10px 14px;
  margin-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.btn-icon i {
  font-size: 1.2rem;
}

@media (max-width: 767px) {
  .contact-content {
    text-align: center;
    padding: 2rem 1.5rem !important;
  }
  .btn-contact, .btn-icon {
    width: 100%;
    justify-content: center;
  }
}

.newsletter-section1 {
  background-color: #4c1211; /* deep navy */
}

.newsletter-section {
  background-color: #4c1211; /* deep navy */
}

.newsletter-section h2 {
  font-size: 2.3rem;
  letter-spacing: 1px;
}

.btn-newsletter {
  background-color: #000;
  color: #fff;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  border: none;
  transition: 0.3s ease;
}

.btn-newsletter:hover {
  background-color: #fff;
  color: #000;
}

.btn-icon {
  background-color: #fff;
  color: #01023C;
  padding: 10px 14px;
  margin-left: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: 0.3s ease;
}

.btn-icon:hover {
  background-color: #00f0c8;
  color: #000;
}

.newsletter-list li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 20px;
  font-size: 1rem;
}

.newsletter-list li::before {
  content: "/";
  position: absolute;
  left: 0;
  color: #00f0c8;
}

@media (max-width: 767px) {
  .newsletter-section {
    text-align: center;
  }
  .btn-newsletter, .btn-icon {
    justify-content: center;
  }
  .newsletter-list {
    margin-top: 1.5rem;
  }
}

/* CSS */
.bg-navy {
  background-color: #4c1211; /* or whichever navy shade the site uses */
}
.bg-navys{
   background-color: #000;
}
.footer-meyle {
  margin-top:10px;
  font-family: 'Roboto', sans-serif; /* match site font if needed */
}
.footer-meyle h6 {
  letter-spacing: 0.5px;
  color: #ffffff;
}
.footer-meyle .footer-link {
  color: #cdd8e0;
  text-decoration: none;
}
.footer-meyle .footer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}
.footer-meyle .border-start {
  border-left: 1px solid #e7ecf0; /* subtle divider */
}
.footer-meyle .social-icons a {
  font-size: 20px;
  transition: color 0.3s ease;
}
.footer-meyle .social-icons a:hover {
  color: #ffffff;
}
.footer-bottom {
  font-family: 'Roboto', sans-serif;
}

/* Top dark blue section */
.footer-top-links {
  background-color: #4c1211; /* MEYLE navy blue */
  border-top: 1px solid #ddd;
}

.footer-top-links .footer-link {
  text-decoration: none;
  color: #ffffff;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-top-links .footer-link:hover {
  color: #00e6e6; /* cyan hover like MEYLE buttons */
}

/* Bottom light section */
.footer-legal {
  background-color: #fefdfd; /* off-white background */
}

.footer-legal-link {
  color: #00124a;
  text-decoration: none;
  font-weight: 600;
}

.footer-legal-link:hover {
  text-decoration: underline;
  color: #00477a;
}

.trade-fair-section {
  background-color: #f8f7f5;
}
.text-navy {
  color: #4c1211 !important;
}
.border-navy {
  border-color: #4c1211 !important;
}
.badge-date {
  background-color: #4c1211;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.9rem;
  border-radius: 4px;
  font-weight: 600;
}
.badge-location {
  background-color: #edeceb;
  color: #4c1211;
  padding: 6px 14px;
  font-size: 0.9rem;
  border-radius: 20px;
  font-weight: 500;
}

.meyle-card {
  overflow: visible; /* important: allow pseudo-element to show */
  transition: transform 0.3s ease;
  cursor: pointer;
  position: relative; /* creates stacking context */
}



/* --- Title setup --- */
.meyle-title {
  position: relative;
  display: inline-block;
  transition: all 0.4s ease;
  color: #000;
  z-index: 2;
}

/* --- Hidden Read more text --- */
.meyle-title::after {
  content: attr(data-hover);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #4c1211;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s ease;
  z-index: 3;
}

/* --- Hover effect --- */
.meyle-card:hover .meyle-title {
  color: transparent;
  transform: scale(1.1);
}

.meyle-card:hover .meyle-title::after {
  opacity: 1;
  transform: scale(1);
}



.mega-menu {
  width: 100%;
  left: 0;
  background: #f8f8f8;
  display: none;
}

/* Hover Show */
.nav-item.dropdown:hover .mega-menu {
  display: block;
}

/* Link Styling */
.mega-link {
  color: #00153E;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}

.mega-link:hover {
  color: #0056b3;
}

/* Adjust dropdown shadow + border */
.dropdown-menu.mega-menu {
  border-top: 2px solid #00153E;
}

/* Mobile behavior fix */
@media (max-width: 991px) {
  .nav-item.dropdown:hover .mega-menu {
    display: none;
  }
  .dropdown-menu.mega-menu {
    position: static !important;
  }
}

/* Mega Menu Base */
.mega-menu {
  width: 100%;
  left: 0;
  background: #f8f8f8;
  display: none;
}

/* Hover Show */
.nav-item.dropdown:hover .mega-menu {
  display: block;
}

/* Text links */
.mega-link {
  color: #00153E;
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  transition: color 0.2s ease;
}
.mega-link:hover {
  color: #0056b3;
}

/* Blog badge */
.badge {
  font-size: 0.8rem;
  font-weight: 500;
}

/* Border accent */
.dropdown-menu.mega-menu {
  border-top: 2px solid #00153E;
}

/* Mobile fix */
@media (max-width: 991px) {
  .nav-item.dropdown:hover .mega-menu {
    display: none;
  }
  .dropdown-menu.mega-menu {
    position: static !important;
  }
}
.dropdown:hover .mega-menu {
  display: block;
}

/* Links inside mega menu */
.mega-link {
  color: #000033;
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
  font-weight: 500;
}

.mega-link:hover {
  color: #0056b3;
}

/* Divider lines */
.border-start {
  border-left: 1px solid #ddd !important;
}

/* Video cards */
.video-card img {
  transition: transform 0.4s ease;
}

.video-card:hover img {
  transform: scale(1.05);
}

.video-card p {
  font-size: 0.95rem;
  line-height: 1.4;
}



 body {
      margin: 0;
      padding: 0;
      background-color: #f9f7f4;
    }

    /* ====== SECTION ====== */
    .newsletter-section {
      background-color: #f9f7f4;
      padding: 100px 0;
      border-bottom: 1px solid #000;
      position: relative;
      overflow: hidden;
    }

    .newsletter-text {
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      padding-left: 70px;
      position: relative;
      z-index: 2;
    }

    .newsletter-text p {
      color: #6c6c6c;
      font-size: 1rem;
      letter-spacing: 1px;
      margin-bottom: 10px;
    }

    .newsletter-text h2 {
      font-size: 2rem;
      font-weight: 700;
      font-style: italic;
      text-transform: uppercase;
      color: #000a44;
      line-height: 1.2;
    }

    /* ====== ANGLED SHAPES ====== */
    .angled-design {
      position: absolute;
      bottom: 0;
      right: 0;
      display: flex;
      height: 68px;
      z-index: 1;
    }

    .angled-design .teal {
      width: 100px;
      background-color: #4c1211;
      transform: skewX(-25deg);
    }

    .angled-design .blue {
      width: 400px;
      background-color: #000;
      transform: skewX(-25deg);
      margin-left: -50px;
    }

    @media (max-width: 992px) {
      .newsletter-text {
        padding-left: 30px;
      }
      .newsletter-text h2 {
        font-size: 2rem;
      }
      .angled-design {
        height: 120px;
      }
    }
    
    @media (max-width: 576px) {

  .angled-design {
    height: 40px;
    right: 0;
    overflow: hidden;
  }

  .angled-design .teal {
    width: 20vw;
    max-width: 60px;
    transform: skewX(-20deg);
  }

  .angled-design .blue {
    width: 55vw;
    max-width: 180px;
    margin-left: -10vw;
    transform: skewX(-20deg);
  }

}

    
       body {
      background-color: #f9f7f4;
      font-family: "Poppins", sans-serif;
      color: #000a44;
      margin: 0;
      padding: 0;
    }

    /* === SECTION === */
    .newsletter-form-section {
      padding: 100px 0;
    }

    .newsletter-form-section h2 {
      font-size: 2.8rem;
      font-weight: 600;
      margin-bottom: 1.5rem;
      color: #000a44;
    }

    .newsletter-form-section p {
      color: #000a44;
      font-size: 1.05rem;
      line-height: 1.6;
      margin-bottom: 1.5rem;
    }

    /* === BULLET POINTS === */
    .newsletter-points {
      list-style: none;
      padding: 0;
      margin-top: 2rem;
    }

    .newsletter-points li {
      position: relative;
      padding-left: 25px;
      margin-bottom: 1rem;
      font-size: 1.05rem;
      color: #000a44;
    }

    .newsletter-points li::before {
      content: "/";
      position: absolute;
      left: 0;
      top: 0;
      color: #4c1211;
      font-weight: bold;
    }

    /* === FORM === */
    .newsletter-form .form-control,
    .newsletter-form .form-select {
      border: 1px solid #000a44;
      border-radius: 0;
      padding: 18px;
      font-size: 1rem;
      color: #000a44;
      background-color: transparent;
    }

    .newsletter-form .form-control:focus,
    .newsletter-form .form-select:focus {
      box-shadow: none;
      border-color: #4c1211;
    }

    .newsletter-form label {
      font-weight: 500;
      color: #000a44;
    }

    .newsletter-form button {
      background-color: #000;
      color: #fff;
      border: none;
      padding: 14px 40px;
      font-weight: 600;
      text-transform: uppercase;
      transition: all 0.3s ease;
      border-radius: 0;
    }

    .newsletter-form button:hover {
      background-color: #4c1211;
      color: #000a44;
    }

    @media (max-width: 992px) {
      .newsletter-form-section {
        padding: 60px 20px;
      }

      .newsletter-form-section h2 {
        font-size: 2rem;
      }
    }
    .mt-11 {
    margin-top: 6.5rem !important;
}
.blogtitle{
    color:#4c1211;
}
.continue-btn {
     background-color:#4c1211;
}
.continue-btn:hover {
     background-color:#4c1211;
}
.abt{
        height: 63px;
    width: 81px;
}
.simple-banner img {
  /*height: 70vh;*/
  object-fit: cover;
}

/* Desktop Hover */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
}
.lower-content {
    position: relative;
    padding: 40px 30px 30px;
    box-shadow: 0px 0px 50px 0px rgba(0, 0, 0, 0.15);
    margin-bottom: 30px;
    /* border-radius: 6px; */
}
.leftsectin ul {
    font-style: normal !important;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 24px;
    text-transform: none;
    color: #787878;
}
ul.post-meta {
    display: flex;
    list-style: none;
    padding-left: 0px;
}
.left-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-card {
  transition: all 0.3s ease;
  border-radius: 10px;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-card img {
  height: 250px;
  object-fit: contain;
  padding: 20px;
}


@media (max-width: 576px) {
  .top-bar a {
    font-size: x-small;
  }
}
