:root {
    --primary: #2E7D32;
    --primary-light:#95f39ac4;
    --primary-dark: #1B5E20;
    --secondary: #A47149;
    --light: #f9f6eb;
    --dark: #3b2a1a;
    --gray: #757575;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background-color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

a{
    text-decoration: none;
}

.scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #00c853;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

header.scrolled {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Mobile Logo (hidden on desktop) */
.mobile-logo {
    display: none;
}

.logo img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.logo:hover img {
    transform: scale(1.05);
}

nav {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}

.nav-left, .nav-right {
    display: flex;
    list-style: none;
    align-items: center;
    flex: 1;
}

.nav-left {
    justify-content: flex-end;
}

.nav-right {
    justify-content: flex-start;
}

.nav-left li, .nav-right li {
    margin: 0 45px;
}

nav ul li a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 18px;
    transition: color 0.3s ease;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

nav ul li a:hover:after {
    width: 100%;
}

nav ul li a:hover {
    color: var(--primary);
}

nav ul li a.active {
    color: var(--primary);
}

nav ul li a.active:after {
    width: 100%;
}

.enquire-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-right: 10px;
}

.enquire-btn {
    padding: 15px 35px !important;
    font-size: 18px !important;
    border: 2px solid var(--primary) !important;
    color: var(--primary) !important;
    background-color: transparent !important;
    border-radius: 50px !important;
    transition: all 0.3s ease !important;
}

.enquire-btn:hover {
    background-color: var(--primary) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

/* Loading Animation */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-logo {
    width: 100px;
    height: 100px;
    animation: pulse 6.5s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

/* Hide loading screen when loaded */
body.loaded .loading-screen {
    opacity: 0;
    pointer-events: none;
}


/* Hero Sections */
.hero {
    position: relative;
    width: 90%;
    max-width: 1400px;
    height: 100vh;
    min-height: 700px;
    margin: 0 auto;
    margin-top: 100px;
    background: url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80') no-repeat center center/cover;
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-hero {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2071&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding-top: 80px;
    z-index: 99;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    font-weight: 300;
}

.overlay {
    position: relative;
    background: linear-gradient(
        120deg,
        rgba(0, 0, 0, 0.6) 40%,
        rgba(0, 0, 0, 0.3) 50%,
        rgba(0, 0, 0, 0.6) 60%
    );
    background-size: 200% 100%;
    animation: shimmerOverlay 8s ease-in-out infinite;
    color: white;
    padding: 60px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

@keyframes shimmerOverlay {
    0% { background-position: 0% 0%; }
    50% { background-position: 100% 0%; }
    100% { background-position: 0% 0%; }
}

/* Section Styles */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.text-center {
    text-align: center;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    text-align: center;
    padding: 15px 30px;
    background-color: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #FF8F00;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    margin-left: 15px;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-group {
    display: flex;
    gap: 15px;
}

/*Home Hero*/
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid #ccc;
  border-radius: 20px;
  font-size: 13px;
  white-space: nowrap;
  width: fit-content;
}

.hero-heading {
    font-family:'Public Sans', 'Raleway', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-subtext {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 600px;
}

.floating-card {
    position: absolute;
    top: 30%;
    right: 5%;
    border-radius: 16px;
    padding: 15px;
    width: 250px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease;
    z-index: 2;
}

.floating-card:hover {
    transform: translateY(-10px);
}

.floating-card img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
    height: 120px;
    object-fit: contain;
}

.floating-card p {
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.stats {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    max-width: 800px;
    background: white;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    display: flex;
    justify-content: space-around;
    padding: 30px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 0 15px;
}

.stat-item h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.stat-item p {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.4;
}

/* About Section Home */
.about-section { 
    position: relative;
    font-family: 'Public Sans', sans-serif; 
    padding: 120px 20px; 
    text-align: center;
    background-color: #f9f9f9;
    margin-top: 30px;
}

.about_bg-layer {
    bottom: -120px;
    background-position: bottom;
    background-repeat: repeat-x;
    animation: bgScroll 12s linear infinite;
}

.layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.content-wrapper { 
    max-width: 1200px; 
    margin: 0 auto; 
    position: relative;
    padding-left: 30px;
}
.content-wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 3px;
  height: 150px;
  background-color: var(--primary);
}

.section-tag {
    font-size: 16px; 
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.main-heading { 
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 300; 
    line-height: 1.3; 
    margin-bottom: 30px; 
    position: relative; 
    z-index:1;
    color: var(--dark);
}

.highlight-wrapper { 
    display: inline-block; 
    position: relative; 
    overflow: hidden; 
    vertical-align: bottom;
}

.highlight-bg { 
    position: absolute; 
    top: 0; 
    left: 0; 
    height: 100%; 
    width: 0%; 
    background-color: var(--secondary); 
    z-index:0;
    transform: skewX(-15deg);
    transform-origin: left bottom;
}

.highlight-text { 
    position: relative; 
    z-index:1; 
    font-weight: 300;
    padding: 0 5px;
}

.desc { 
    font-size: clamp(1rem, 2vw, 1.25rem); 
    line-height:1; 
    color: var(--gray); 
    margin-bottom:20px;
    margin-left: auto;
    margin-right: auto;
}

.fade-up { 
    opacity: 0; 
    transform: translateY(40px); 
}

@keyframes bgScroll {
    0% {
        background-position: 0 bottom;
    }
    100% {
    background-position: 100% bottom;
    }
}

/* Rubber track Section */
.rubber-section {
  background-color: #f9f6eb;
  text-align: center;
  padding: 80px 20px 0 20px;
  font-family: 'Raleway', sans-serif;
  position: relative;
}

.benefits_bg-layer {
    top: -120px;
    background-position: left top;
    background-repeat: no-repeat;
}

.overlay-layer {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
}

.rubber-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
}

.rubber-icon {
  margin-bottom: 30px;
}

.rubber-icon img {
  height: 60px;
  width: auto;
}

.rubber-text {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--dark);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

/* Benefits why choose us*/
.benefits-wrapper {
  margin-top: 60px;
  font-family: 'Raleway', sans-serif;
}

.benefits-slider-viewport {
  overflow: hidden;
  width: 100%;
}

.benefits-slider {
  display: flex;
  gap: 20px;
  will-change: transform;
  padding-bottom: 20px;
}

.benefits-slide {
  flex: 0 0 calc(33.333% - 13.33px);
  height: 380px;
  border-radius: 30px;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.benefits-slide:hover {
  transform: translateY(-5px);
}

.benefits-text {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0) 100%);
  color: white;
  transform: translateY(0);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.feature-icon {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.benefit-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.benefit-desc {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 0 10px;
  will-change: max-height, opacity, padding; /* For smoother animations */
}

.benefit-desc p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 500;
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0.5px;
  margin-top: 10px;
}

/* Expanded state */
.benefits-slide.active .benefit-desc {
  max-height: 200px;
  opacity: 1;
  padding: 10px;
}

.benefits-slide.active .benefit-title {
  margin-bottom: 20px;
}


/*Scrolling Text*/
.rubber-marquee-section {
  overflow: hidden;
  margin-top: 100px;
  text-align: center;
}

.rubber-marquee {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  animation: scroll-left 80s linear infinite;
}

.marquee-track span {
  display: inline-block;
  margin: 0 2rem;
  font-size: clamp(1.5rem, 7vw, 7rem);
  font-family: "Barlow Condensed", Sans-serif;
  font-weight: 600;
  line-height: 0.8em;
  color: var(--primary-light);
  text-transform: uppercase;
  white-space: nowrap;
}

.inline-logo {
  width: 1.2em;
  height: 0.5em;
  vertical-align: middle;
  margin-left: 1.5rem;
  object-fit: contain;
}

/* Duplicate the content visually for infinite loop */
.marquee-track::after {
  content: attr(data-content);
  display: flex;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


/* Services */
.services-section {
  background-color: var(--dark);
  color: #fff;
  padding: 80px 20px 100px 20px;
  font-family: 'Raleway', sans-serif;
  position: relative;
}

.services-header {
  margin: 0 auto;
  padding: 0 20px 100px 20px;
  text-align: center;
  transform: translateY(50px);
}

.icon {
  margin-bottom: 30px;
}

.icon img {
  height: 60px;
  width: auto;
}

.service-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.services-left {
  flex: 1 1 50%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
  z-index: 3;
}

.service-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  padding: 25px;
  background-color: transparent;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  transform: translateY(30px);
}

.service-box:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px) !important;
}

.service-icon {
  font-size: 36px;
  color: var(--secondary);
  margin-bottom: 10px;
}

.service-desc {
  font-family: 'Inconsolata', sans-serif;
  font-size: 20px;
  line-height: 1.2;
  color: rgba(255, 255, 255, 0.8);
}

.services-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.rubber-image {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  transform: scale(0.95);
  transition: transform 0.5s ease;
}

.services-right:hover .rubber-image {
  transform: scale(1);
}

/* CTA Section */
.cta {
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('/assets/images/cta-bg.jpg') no-repeat bottom center/cover;
    background-color: var(--dark);
    height: 80vh;
    color: white;
    text-align: center;
    position: relative;
    margin: 0 auto;
    padding: 80px 20px;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-image: linear-gradient(
        180deg,
        rgba(46, 37, 33, 0) 0%,
        var(--dark) 100%
    );
}

.cta > *{
    z-index: 2;
}

.cta-badge{
    border-radius: 5px;
    margin-bottom: 1rem;
}

.cta-content h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp( 2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Enquire Modal */
.modal {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.modal-backdrop {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: black;
    opacity: 0;
}

.modal-content {
    position: relative;
    background: white;
    padding: 20px;
    border-radius: 8px;
    z-index: 1000;
    max-width: 500px;
    width: 90%;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: var(--gray);
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--primary);
}

.modal-content h2 {
    margin-bottom: 20px;
    color: var(--primary);
}

.modal-content .form-group {
    margin-bottom: 15px;
}

.modal-content select,
.modal-content textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Raleway', sans-serif;
}

.modal-content select:focus,
.modal-content textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-column p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #bbb;
}

.footer-column a {
    color: #bbb;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--secondary);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .container {
        max-width: 1000px;
    }
    .nav-left li, .nav-right li {
        margin: 0 10px;
    }
    
    .enquire-container {
        margin-left: 15px;
    }
}

@media (max-width: 992px) {
    header {
        padding: 5px 0;
    }

    .header-container {
        justify-content: space-evenly;
    }

    .mobile-menu-btn {
        display: block;
        font-size: 2rem;
        justify-self: flex-end;
        align-items: center;
    }

    .mobile-logo {
        display: block;
        margin-left: 20px;
    }

    .logo img{
        height: 65px;
    }
    
    .desktop-logo {
        display: none;
    }
    
    nav {
       position: fixed;
        top: 80px;
        left: -100%;
        background-color: white;
        width: 100%;
        height: calc(100vh - 80px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 30px 20px;
        transition: all 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    .nav-left, .nav-right {
        flex-direction: column;
        width: 100%;
        flex: 0;
        padding: 0;
    }
    
    .nav-left li, .nav-right li {
        margin: 10px 0;
        width: 100%;
        text-align: center;
    }

    .nav-left, .nav-right {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        justify-items: center;
    }

    .btn-group {
        margin: 0 auto;
    }
    
    .enquire-container {
        margin: 30px auto 0;
        padding-left: 0;
        width: 100%;
        max-width: 200px;
        justify-content: center;
    }
    
    .enquire-btn {
        max-width: 100%;
    }
    
    .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: 15px;
    }

    .hero {
        width: 95%;
        border-radius: 20px;
    }
    
    .overlay {
        padding: 40px;
        text-align: center;
    }
    
    .badge{
        margin: 0 auto;
    }
    
    .hero-heading {
        font-size: 3.5rem;
    }
    
    .floating-card {
        width: 180px;
        right: 3%;
    }
    
    .stats {
        width: 80%;
        padding: 20px 15px;
    }
    
    .stat-item h2 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 48px;
    }

    /*Benefits*/
    .benefits-slide {
        flex: 0 0 calc(50% - 10px);
        height: 300px;
    }

    /*Services Preview Section*/
    .services-container {
        flex-direction: column;
        gap: 60px;
    }

    .services-left {
        grid-template-columns: 1fr;
        text-align: center;
        align-items: center;
        justify-items: center;
    }

    .service-box {
        margin: 0 auto;
        align-items: center;
        text-align: center;
    }

    .overlay-layer {
        display: none;
    }
}


@media (max-width: 768px) {

    .hero {
        height: auto;
        min-height: 90vh;
        border-radius: 0;
        width: 100%;
    }
    
    .overlay {
        padding: 30px 20px 60px;
    }
    
    .hero-heading {
        font-size: 2.8rem;
        margin-top: 20px;
    }
    
    .floating-card {
        display: none;
    }
    
    .stats {
        position: relative;
        width: 100%;
        border-radius: 0;
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .buttons {
        flex-direction: column;
    }

    .page-hero h1 {
        font-size: 36px;
    }
    
    .page-hero p {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .btn {
        padding: 12px 25px;
    }

    .content-wrapper::before {
        display: none;
    }

    /*Benefits*/
    .benefits-text {
        padding: 15px;
    }
    
    .benefit-desc p {
        font-size: 1rem;
    }

    /*Scrolling Text*/
    .rubber-marquee-section {
        padding: 20px 0;
    }
    
    .marquee-track span {
        margin: 0 20px;
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }
}

@media (max-width: 576px) {

    .header-container {
        grid-template-columns: auto 1fr auto;
        padding: 10px 15px;
    }
    
    .logo img {
        height: 65px;
    }

    .hero-heading {
        font-size: 2.2rem;
    }
    
    .hero-subtext {
        font-size: 1rem;
    }
    
    .badge {
        font-size: 0.8rem;
    }

    .page-hero h1 {
        font-size: 32px;
    }
    
    .btn-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-outline {
        margin-left: 0;
    }

    /*Benefits*/
     .rubber-section {
        padding: 60px 15px;
    }
    
    .benefits-slide {
        flex: 0 0 100%;
        height: 250px;
    }
    
    .rubber-text {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    
    /*Scrolling Text*/
    .marquee-track span {
        margin: 0 15px;
    }

    /*Services Preview Section*/
    .services-section {
        padding: 60px 20px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .service-desc {
        font-size: 15px;
    }
}