/* CSS Variables */
:root {
    --primary: #800000;
    --secondary: #222;
    --light: #F6F7F8;
    --dark: #111;
    --white: #ffffff;
    --gray-light: #f5f5f5;
    --gray: #777;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
    width: 100%;
}
/* ============================ */
/* Make sure nothing overflows horizontally */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Images and videos responsive banane ke liye */
/* img, video {
  max-width: 100%;
  height: auto;
  display: block;
} */

/* Prevent big elements from overflowing */
/* .container, section, div {
  max-width: 100%;
  overflow-x: hidden;
} */

/* Optional: Prevent extra spacing issues */
/* * {
  box-sizing: border-box;
} */

/* -------------------- */
a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

header.shrink {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    position: relative;
}

.logo {
    height: 50px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 35px;
    margin-left: 30rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark);
    font-size: 2rem;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background-color: var(--white);
    padding: 20px 0;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1000;
    border: 1px solid #eee;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    padding: 10px 20px;
}

.dropdown-link {
    color: var(--dark);
    font-size: 1.5rem;
    transition: var(--transition);
    display: block;
    width: 100%;
}

.dropdown-link:hover {
    color: var(--white);
    padding-left: 10px;
    background-color: var(--primary);
}

.download-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 2rem;
    text-decoration: none;
    border: 2px solid var(--primary);
    animation: blinkBtn 1.5s infinite;
}

@keyframes blinkBtn {

    0%,
    100% {
        background-color: var(--primary);
        color: #fff;
        box-shadow: 0 0 8px rgba(128, 0, 0, 0.6);
    }

    50% {
        background-color: #fff;
        color: var(--primary);
        box-shadow: 0 0 15px rgba(128, 0, 0, 0.9);
    }
}

.download-btn:hover {
    background-color: #fff;
    color: var(--primary);
    box-shadow: 0 4px 10px rgba(128, 0, 0, 0.3);
}

.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    flex-direction: column;
    gap: 5px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    transition: var(--transition);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.slider {
    display: flex;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.slide {
    width: 100%;
    flex-shrink: 0;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 2;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    font-size: 18px;
}

.prev-btn:hover,
.next-btn:hover {
    background: var(--primary);
}

/* Marquee Section */
.product-marquee {
    background: var(--primary);
    overflow: hidden;
    width: 100%;
    padding: 12px 0;
}

.marquee {
    display: flex;
    align-items: center;
}

.marquee-track {
    display: flex;
    animation: marquee 20s linear infinite;
    color: var(--white);
    font-weight: bold;
    font-size: 16px;
    font-family: "Poppins", Arial, sans-serif;
}

.marquee-track span {
    margin-right: 80px;
    white-space: nowrap;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
.about-section {
    padding: 80px 0;
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.images-grid img {
    width: 100%;
    height: 250px;
    object-fit: contain;
    border-radius: 10px;
    background: var(--light);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s;
}

.images-grid img:hover {
    transform: scale(1.05);
}

.content h2 {
    font-size: 45px;
    line-height: 1.3;
    margin-bottom: 25px;
}

.content h2 span {
    color: var(--primary);
}

.content p {
    color: #333;
    line-height: 1.8;
    margin-bottom: 28px;
    font-size: 2rem;
}

.content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.content ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 28px;
    color: #333;
    font-size: 1.8rem;
}

.content ul li::before {
    content: "✔";
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.6rem;
}

.btn {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.6rem;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: #b32020;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Factsheet Section */
.factsheet-section {
    background: url("img/paral.png") center/cover fixed no-repeat;
    padding: 37px 20px;
    color: var(--white);
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.factsheet-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 0;
}

.factsheet-section .container {
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 54px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}

.section-header p {
    color: #ddd;
    font-size: 1.1rem;
}

.section-header .underline {
    width: 80px;
    height: 5px;
    margin: 10px auto 20px;
    background: var(--primary);
    border-radius: 10px;
}

.factsheet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.mini-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    max-width: 380px;
    width: 100%;
}

.mini-card:hover {
    transform: translateY(-12px) scale(1.07);
    border-color: var(--primary);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
}

.mini-card dt {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mini-card dd {
    font-size: 1.3rem;
    color: #f8f8f8;
    line-height: 1.8;
    font-weight: 900;
    margin: 0 auto;
    max-width: 320px;
}

/* Vlog Section */
.radhe-vlog-section {
    background-color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.radhe-vlog-section h2 {
    color: #800000;
    font-size: 36px;
    margin-bottom: 20px;
}

.radhe-vlog-section p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.video-gallery {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.event-video {
    flex: 1 1 300px;
    max-width: 350px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-video:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.event-video video {
    width: 100%;
    height: auto;
    display: block;
}

.event-video h3 {
    margin: 10px 0;
    font-size: 1.2rem;
    color: #800000;
}

/* Products Section */
.products-section {
    padding: 75px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    font-size: 36px;
    font-weight: 700;
    color: maroon;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title h2 {
    font-size: 3.6rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    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(--primary);
}

.section-title p {
    font-size: 2rem;
    color: var(--gray);
    max-width: 650px;
    margin: 0 auto;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    text-align: center;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.product-img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 25px 20px;
}

.product-info h3 {
    font-size: 2rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 10px;
}

.product-info p {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 18px;
}

.product-info .btn {
    background-color: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.product-info .btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Counter Section */
.rc-counter {
    padding: 60px 20px;
    background: maroon;
    font-family: "Segoe UI", sans-serif;
}

.rc-container {
    max-width: 1200px;
    margin: auto;
}

.rc-counter-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.rc-counter-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

.rc-counter-item:hover {
    transform: translateY(-8px);
}

.rc-counter-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 12px;
}

.rc-counter-num {
    font-size: 32px;
    font-weight: bold;
    color: #d32f2f;
    margin: 0;
}

.rc-counter p {
    font-size: 15px;
    color: #555;
    margin-top: 8px;
}

.rc-counter-num::after {
    content: "+";
    font-size: 28px;
    color: #d32f2f;
    margin-left: 3px;
}

/* Warehouse Section */
.rc-warehouse {
    padding: 60px 0px;
    background: #f8f9fa;
    font-family: "Segoe UI", sans-serif;
}

.rc-header {
    max-width: 1180px;
    margin: 0 auto 30px;
    text-align: center;
}

.rc-title-arrows {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.rc-warehouse h2 {
    font-size: 26px;
    color: #333;
}

.rc-arrows button {
    background: #d32f2f;
    border: none;
    color: #fff;
    font-size: 22px;
    padding: 6px 12px;
    margin: 0 3px;
    cursor: pointer;
    border-radius: 50%;
    transition: background 0.3s;
}

.rc-arrows button:hover {
    background: #b71c1c;
}

.rc-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.rc-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.rc-track {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.rc-slide {
    min-width: calc(100% / 3);
    padding: 10px;
    box-sizing: border-box;
}

.rc-slide img {
    width: 74%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Parallax Hero Section */
.parallax-hero-section {
    position: relative;
    width: 100%;
    height: 57vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background-image: url('img/ban33.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.center-box {
    max-width: 700px;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease;
}

.info-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-maroon {
    background: #800000;
    color: #fff;
}

.btn-black {
    background: #000;
    color: #fff;
}

.btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}

.hero-text {
    margin-top: 30px;
    animation: fadeIn 2s ease;
}

.hero-heading {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background: #f1c40f;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    background: #d4ac0d;
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Gallery Section */
.gallery-section {
    background: var(--white);
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.gallery-item {
    background: var(--light);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Continuous Slider Section */
.continuous-slider-section {
    background: var(--secondary);
    padding: 50px 0;
    overflow: hidden;
    text-align: center;
}

.slider-heading {
    color: #ffffff;
    font-size: 3.2rem;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    font-family: 'Poppins', sans-serif;
}

.slider-container {
    overflow: hidden;
    position: relative;
}

.slider-track {
    display: flex;
    gap: 30px;
    animation: scroll 30s linear infinite;
}

.slider-item {
    flex: 0 0 auto;
    width: 250px;
    height: 180px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.slider-item:hover {
    transform: scale(1.05);
}

.slider-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 7 - 30px * 6));
    }
}

/* Location Section */
.location-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #fff 50%, var(--primary) 50%);
}

.location-content {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.location-info {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: #fff;
    color: #333;
}

.location-info h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.location-info p {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.location-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: bold;
}

.location-info a:hover {
    text-decoration: underline;
}

.location-map {
    flex: 1.5;
    min-height: 350px;
    min-width: 300px;
}

.location-map iframe {
    width: 100%;
    height: 100%;
}

/* Contact Section */
.contact-section {
    background-color: var(--dark);
    color: var(--white);
    padding: 80px 0;
}

.contact-wrapper {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.contact-info {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background-color: var(--primary);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    font-size: 24px;
    color: var(--white);
    width: 40px;
    text-align: center;
}

.contact-text {
    color: var(--white);
    font-size: 1.6rem;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background-color: var(--light);
    padding: 30px;
    border-radius: 10px;
    color: var(--dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 1.6rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--dark);
    border-radius: 5px;
    font-size: 1.6rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 40px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-about img {
    margin-bottom: 15px;
}

.footer-about p {
    font-size: 1.4rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links h3,
.footer-products h3,
.footer-contact h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after,
.footer-products h3::after,
.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links ul,
.footer-products ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a,
.footer-products a {
    font-size: 1.4rem;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-products a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-contact p {
    font-size: 1.4rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 1.4rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        border-top: 1px solid #eee;
        margin-left: 0;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        padding: 15px 20px;
        width: 100%;
        justify-content: space-between;
    }

    .dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        padding: 0;
        box-shadow: none;
        border: none;
        display: none;
        background: var(--gray-light);
    }

    .dropdown-link {
        padding: 12px 20px;
    }

    .nav-menu.active {
        max-height: 1000px;
        opacity: 1;
        visibility: visible;
    }

    .nav-item.active .dropdown {
        display: block;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-menu {
        margin-left: 0;
    }

    .download-btn {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .images-grid {
        grid-template-columns: 1fr;
    }

    .rc-counter-boxes {
        grid-template-columns: repeat(2, 1fr);
    }

    .rc-slide {
        min-width: 50%;
    }

    .video-gallery {
        flex-direction: column;
        align-items: center;
    }

    .event-video {
        flex: 1 1 90%;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .location-content {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .hero-banner {
        height: 50vh;
    }

    .section-title h2 {
        font-size: 2.8rem;
    }

    .content h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .rc-counter-boxes {
        grid-template-columns: 1fr;
    }

    .rc-slide {
        min-width: 100%;
    }

    .slider-item {
        width: 180px;
        height: 130px;
    }

    .section-header h2 {
        font-size: 40px;
    }

    .mini-card {
        padding: 20px;
    }

    .hero-heading {
        font-size: 2rem;
    }

    .navbar {
        padding: 10px 15px;
    }
}

/* Additional Mobile Optimizations */
@media (max-width: 1024px) {
    .nav-menu {
        margin-left: 10rem;
    }
}

@media (max-width: 900px) {
    .nav-menu {
        margin-left: 5rem;
    }
}