* {
    box-sizing: border-box;
   
}

/* Base Styles & Variables */
:root {
    --primary: #0A2463;
    --secondary: #FF6B35;
    --dark: #1E1E24;
    --light: #FFFFFF;
    --gray: #F5F5F5;
    --text: #333333;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 1px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    overflow-x: hidden;
}

.section-title {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--primary);
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary);
}

.title-underline {
    height: 3px;
    width: 80px;
    background: var(--secondary);
    margin: 1rem auto 3rem;
}

.highlight {
    color: var(--secondary);
}

.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1.4rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1.4rem;
    margin-right: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-button i {
    transition: var(--transition);
}

.cta-button.primary {
    background-color: var(--primary);
    color: var(--light);
}

.cta-button.primary:hover {
    background-color: #081f52;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.cta-button.primary:hover i {
    transform: translateX(3px);
}

.cta-button.secondary {
    background-color: var(--secondary);
    color: var(--light);
}

.cta-button.secondary:hover {
    background-color: #e05a2a;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.cta-button.secondary:hover i {
    transform: translateX(3px);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.preloader-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    animation: pulse 2s infinite;
}

.preloader-logo span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    letter-spacing: 2px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Header */


.header.scrolled {
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    letter-spacing: 1px;
}

.logo-image {
    height: 50px;
    margin-right: 1rem;
    border-radius: 50%;
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 1.6rem;
    color: var(--dark);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-left: 3rem;
}

.social-links a {
    color: var(--primary);
    font-size: 1.8rem;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary);
    transform: translateY(-3px);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 2.5rem;
    color: var(--primary);
}
@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
        min-height: 600px;
    }
    
    .hero-content {
        padding: 0 1.5rem;
    }
    
    .product-card, 
    .product-card.reverse {
        margin-left: 0;
        margin-right: 0;
    }
}
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    padding-top: 8rem;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 36, 99, 0.7), rgba(10, 36, 99, 0.7)), 
                url('images/hero-bg.webp') no-repeat center center/cover;
    z-index: -1;}

    body, html {
        max-width: 100%;
        overflow-x: hidden;
    }
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    color: var(--light);
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 6rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-title .title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-subtitle .subtitle-text {
    display: block;
    margin-bottom: 1rem;
}

.cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    backdrop-filter: blur(5px);
}

.trust-item i {
    font-size: 2rem;
    color: var(--secondary);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--light);
    text-align: center;
    z-index: 2;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--light);
    border-radius: 15px;
    margin: 0 auto 1rem;
    position: relative;
}

.wheel {
    width: 6px;
    height: 6px;
    background-color: var(--light);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

.scroll-text {
    font-size: 1.4rem;
    letter-spacing: 1px;
    opacity: 0.8;
}

@keyframes scroll-wheel {
    0% { top: 10px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
    100% { top: 10px; opacity: 1; }
}

/* Products Section */
.products {
    padding: 2rem 0;
    background-color: var(--gray);
}

.product-card {
    display: flex;
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 5rem;
}

.product-card.reverse {
    flex-direction: row-reverse;
}

.product-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.before-after-slider {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease;
}

.slider-image.active {
    opacity: 1;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background-color: rgba(255, 107, 53, 0.8);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.play-button i {
    color: var(--light);
    font-size: 2.5rem;
    margin-left: 5px;
}

.play-button:hover {
    background-color: rgba(255, 107, 53, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.product-content {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-content h3 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.product-content p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    color: var(--text);
}

.features {
    margin-bottom: 3rem;
}

.features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.features i {
    color: var(--secondary);
    font-size: 1.8rem;
}

.learn-more {
    align-self: flex-start;
    padding: 1.2rem 2.4rem;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.learn-more:hover {
    background-color: #081f52;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 80%;
    max-width: 900px;
    background-color: var(--light);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 3rem;
    color: var(--light);
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--secondary);
}

/* About Section */
.about-section {
    padding: 2rem 0;
    background-color: var(--light);
}

.about-content {
    display: flex;
    gap: 5rem;
    margin-bottom: 5rem;
}

.about-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary);
}

.about-text p {
    font-size: 1.6rem;
    margin-bottom: 3rem;
    color: var(--text);
}

.about-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: var(--light);
    font-size: 2rem;
}

.feature-content h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.feature-content p {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-card {
    background-color: var(--gray);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1rem;
    font-family: 'Bebas Neue', sans-serif;
}

.stat-label {
    font-size: 1.6rem;
    color: var(--text);
}

/* Features Section */
.features-section {
    padding: 8rem 0;
    background-color: var(--gray);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.feature-card {
    background-color: var(--light);
    padding: 3rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 2rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--secondary);
    transform: rotate(15deg) scale(1.1);
}

.feature-icon i {
    color: var(--light);
    font-size: 3rem;
}

.feature-card h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-card p {
    font-size: 1.5rem;
    color: var(--text);
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 5rem;
    margin-top: 5rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    display: flex;
    gap: 2rem;
    background-color: var(--gray);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.info-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--light);
    font-size: 2rem;
}

.info-content h4 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.info-content p {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.copy-btn, .call-btn {
    padding: 0.5rem 1.5rem;
    background-color: var(--secondary);
    color: var(--light);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover, .call-btn:hover {
    background-color: #e05a2a;
}

.contact-form {
    background-color: var(--gray);
    padding: 4rem;
    border-radius: var(--border-radius);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 36, 99, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.5rem;
    background-color: var(--primary);
    color: var(--light);
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background-color: #081f52;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* Map Section */
.map-section {
    height: 450px;
    width: 100%;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Footer */
.footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 6rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-logo h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.footer-logo p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.footer-links h4, .footer-contact h4 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--light);
}

.footer-links ul li {
    margin-bottom: 1.5rem;
}

.footer-links ul li a {
    font-size: 1.5rem;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    opacity: 0.8;
}

.footer-contact ul li i {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
    opacity: 0.7;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero-title {
        font-size: 5rem;
    }
    
    .product-card, .product-card.reverse {
        flex-direction: column;
    }
    
    .product-image {
        min-height: 300px;
    }
    
    .about-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--light);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: var(--transition);
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }
    
    .navbar.active {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
        margin-bottom: 3rem;
    }
    
    .social-links {
        margin-left: 0;
    }
    
    .menu-toggle {
        display: block;
        z-index: 1002;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
    }
    
    .cta-wrapper {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
        margin-right: 0;
    }
    
    .section-title {
        font-size: 3.5rem;
    }
    
    .contact-form {
        padding: 3rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero {
        min-height: 600px;
    }
    
    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 4rem;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide-up {
    animation: slideUp 1s ease forwards;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translateY(50px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
   