:root {
    --primary: #800000;
    --secondary: #800000;
    --accent: #A52A2A;
    --light: #FFFFFF;
    --dark: #330000;
    --text: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Rubik', sans-serif;
}

html,
body {
    overflow-x: hidden;
    width: 100%;
}
body {
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Jost', sans-serif;
    color: var(--primary);
    line-height: 1.2;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    padding: 15px 0;
}

.main-header.transparent {
    background: transparent;
}

.main-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 50px;
    height: auto;
    margin-right: 10px;
}

.logo-text {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: white;
}

.main-header.scrolled .logo-text {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.main-header.scrolled .nav-toggle span {
    background: var(--primary);
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin: 0 15px;
    position: relative;
}

.main-nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.main-header.scrolled .main-nav a {
    color: var(--primary);
}

.main-nav a:hover {
    color: var(--accent);
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
    border-radius: 5px;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: var(--primary);
    padding: 12px 16px;
    display: block;
    text-decoration: none;
    transition: all 0.3s;
}

.dropdown-content a:hover {
    background: #f5f5f5;
    color: var(--secondary);
}

.header-cta {
    display: flex;
    align-items: center;
}

.phone-info {
    margin-right: 20px;
    display: flex;
    align-items: center;
}

.phone-info i {
    margin-right: 8px;
    color: var(--secondary);
}

.phone-number {
    font-weight: 600;
    color: white;
}

.main-header.scrolled .phone-number {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: var(--secondary);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background: var(--dark);
    transform: translateY(-2px);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slides {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 0.8s ease;
}

.banner-slide {
    position: relative;
    width: 33.333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    color: white;
    position: relative;
    z-index: 2;
}

.slide-text {
    flex: 1;
    max-width: 50%;
}

.slide-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: white;
}

.slide-text p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 500px;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
}

.product-image {
    max-width: 400px;
}

.product-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.banner-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.banner-nav.prev {
    left: 20px;
}

.banner-nav.next {
    right: 20px;
}

.banner-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Stats Section */
.stats {
    background: #f9f9f9;
    padding: 80px 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.stat-item.animated {
    opacity: 1;
    transform: translateY(0);
}

.stat-icon {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-text {
    font-size: 16px;
    font-weight: 500;
}

/* About Section */
.lr-about-section {
    background-color: #ffffff;
    color: #333;
    padding: 80px 0;
}

.lr-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.lr-about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    flex-wrap: wrap;
}

/* Video Styling */
.lr-about-video {
    flex: 1 1 0%;
    border-radius: 15px;
    overflow: hidden;
}

.lr-about-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Text Content */
.lr-about-text {
    flex: 1 1 50%;
}

.lr-about-text h2 {
    font-size: 2.2rem;
    color: #800000;
    margin-bottom: 20px;
    font-weight: 700;
}

.lr-about-text p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.lr-btn {
    display: inline-block;
    background-color: #800000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.lr-btn:hover {
    background-color: #a00000;
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(128, 0, 0, 0.3);
}

/* Products Section */
.products {
    padding: 100px 0;
background: linear-gradient(rgba(128, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url('your-image.jpg') no-repeat center/cover;    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('https://images.unsplash.com/photo-1595078475328-1ab05d0a6a0e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1200&q=80') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    opacity: 0.1;
    z-index: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
    color:white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.product-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 200px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s;
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.product-info p {
    color: #666;
    margin-bottom: 15px;
}

.product-features {
    list-style: none;
    margin-bottom: 15px;
}

.product-features li {
    padding: 5px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features i {
    margin-right: 10px;
    color: var(--primary);
}

.product-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.product-btn:hover {
    background: var(--dark);
}

/* Product Protection Section */
.product-protection-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #fff;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight {
    color: var(--primary);
}

.section-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.protection-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.protection-slides {
    display: flex;
    transition: transform 0.5s ease;
}

.protection-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.product-card-protection {
    flex: 0 0 180px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 30px 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 180px;
}

.product-card-protection:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary);
}

.icon-box {
    margin-bottom: 15px;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box i {
    font-size: 40px;
    color: var(--primary);
}

.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    text-align: center;
}

.protection-prev,
.protection-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(128, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.protection-prev:hover,
.protection-next:hover {
    background: var(--primary);
}

.protection-prev {
    left: 10px;
}

.protection-next {
    right: 10px;
}

.protection-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.protection-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.protection-dot.active {
    background: var(--primary);
}

/* Hand in Glove Section */
.hand-in-glove-section {
    padding: 60px 20px;
    background-color: #fcfcfc;
}

.top-heading-area {
    text-align: center;
    margin-bottom: 60px;
}

.top-title {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.highlight-red {
    color: var(--primary);
}

.top-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.content-and-media-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

@media (min-width: 992px) {
    .content-and-media-container {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
    }
}

.text-content-left {
    flex: 1;
    max-width: 550px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.text-content-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.main-heading {
    font-size: 48px;
    font-weight: 800;
    color: #333;
    line-height: 1.1;
    margin-bottom: 20px;
}

.outlined-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--primary);
    text-stroke: 1px var(--primary);
    font-size: 0.9em;
    display: inline-block;
}

.description-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.more-details-button {
    display: inline-block;
    background-color: var(--primary);
    color: #fff;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.more-details-button:hover {
    background-color: var(--dark);
}

.media-right {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    background:
        radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
        linear-gradient(135deg, #ffd700, #ffa500);
    clip-path: polygon(25% 0%, 100% 0%, 75% 100%, 0% 100%);
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.media-right.animated {
    opacity: 1;
    transform: translateX(0);
}

.product-graphic {
    max-width: 80%;
    height: auto;
    position: absolute;
    z-index: 2;
    transform: translateY(-20px);
    filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}

/* Networks Section */
.networks-section {
    padding: 80px 5%;
    background-color: white;
}

.network-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.network-text-left {
    flex: 1;
    max-width: 50%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.network-text-left.animated {
    opacity: 1;
    transform: translateY(0);
}

.network-text-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.pre-title {
    font-size: 13px;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.network-description {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.network-map-right {
    flex: 1;
    max-width: 50%;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease 0.2s;
}

.network-map-right.animated {
    opacity: 1;
    transform: translateY(0);
}

.network-map-right img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Factsheet Section */
.factsheet-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.factsheet-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.factsheet-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.factsheet-item h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary);
}

.detail-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

.detail-label {
    font-weight: 600;
    color: var(--primary);
}

.detail-value {
    text-align: right;
}

/* Why Choose Us */
.why-us {
    padding: 100px 0;
    background: #f9f9f9;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    background: white;
    opacity: 0;
    transform: translateY(30px);
}

.why-card.animated {
    opacity: 1;
    transform: translateY(0);
}

.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-icon {
    font-size: 50px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f9f9f9;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.contact-item i {
    margin-right: 15px;
    color: var(--secondary);
    font-size: 20px;
    margin-top: 5px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 50px;
    margin-right: 10px;
}

.footer-logo span {
    font-family: 'Jost', sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.footer-about p {
    margin-bottom: 20px;
}

.social-links {
    display: flex;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-links i {
    margin-right: 10px;
    width: 16px;
}

/* Default styles */
.copyright {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
    color: #fff;
    line-height: 1.6;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .copyright {
        font-size: 13px;
        padding: 15px 10px;
    }
}

@media (max-width: 480px) {
    .copyright {
        font-size: 12px;
        padding: 12px 8px;
        /* margin-top:-200px; */
    }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .stats-container,
    .why-grid,
    .footer-container,
    .factsheet-container,
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lr-about-wrapper,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .network-container {
        flex-direction: column;
    }

    .network-text-left,
    .network-map-right {
        max-width: 100%;
    }

    .hero-banner {
        height: auto;
        min-height: 100vh;
    }

    .slide-content {
        flex-direction: column;
        padding: 60px 5%;
        text-align: center;
    }

    .slide-text {
        max-width: 100%;
        margin-bottom: 40px;
    }

    .slide-text h1 {
        font-size: 36px;
    }

    .product-image {
        max-width: 300px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 15px 0;
    }

    .nav-menu a {
        color: var(--primary);
    }

    .dropdown-content {
        position: static;
        display: none;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .lr-about-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .lr-about-video, 
    .lr-about-text {
        flex: 1 1 100%;
    }

    .lr-about-text h2 {
        font-size: 1.8rem;
    }

    .lr-about-text p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: row;
        justify-content: space-between;
    }

    .logo {
        margin-bottom: 0;
    }

    .stats-container,
    .why-grid,
    .footer-container,
    .factsheet-container,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .protection-slide {
        flex-wrap: wrap;
    }

    .product-card-protection {
        flex: 0 0 40%;
        margin-bottom: 20px;
    }

    .main-heading {
        font-size: 36px;
    }

    .nav-menu {
        top: 70px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}