:root {
    --primary-color: #ff0100;
    --primary-dark: #b30000;
    --secondary-color: #002244; /* Navy Blue */
    --secondary-light: #003366;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #fbfaf8;
    --black: #000000;
    --border-color: #eee;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.4s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.top-bar {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info a {
    color: var(--white);
    margin-right: 25px;
    font-weight: 300;
}

.contact-info a i {
    color: var(--primary-color);
    margin-right: 5px;
}

.social-links a {
    color: var(--white);
    margin-left: 15px;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.navbar {
    padding: 15px 0;
    background: var(--white);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 70px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 35px;
    position: relative;
}

.nav-links a {
    font-weight: 500;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--secondary-color);
    padding: 10px 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after, .nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--transition);
    z-index: 999;
    border-top: 3px solid var(--primary-color);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    border-bottom: 1px solid var(--border-color);
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    text-transform: capitalize;
    font-weight: 400;
    font-family: var(--font-body);
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background-color: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--secondary-color);
    transition: all 0.3s ease-in-out;
}

/* Hero Section */
.hero {
    margin-top: 52px;
    position: relative;
    height: 700px !important; /* Force Fixed Height */
    min-height: 700px !important;
    overflow: hidden;
}

.hero-slider {
    height: 700px !important;
    min-height: 700px !important;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 700px !important;
    min-height: 700px !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

/* Removed dark overlay */
.slide::before {
    display: none; 
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

/* Inline background for text */
.hero-content h1 span.highlight {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--secondary-color);
    padding: 5px 15px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
    line-height: 1.4;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-content p span.highlight {
    background-color: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    padding: 5px 10px;
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 35px;
    font-weight: 300;
}

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 0; /* Square buttons for luxury feel */
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    font-size: 14px;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
    background-color: var(--white);
    border-color: var(--white); /* White border on hover for contrast against images */
}

/* If background is light, we might need a different hover state. Assuming images are colorful */
.slide .btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}


.slider-controls {
    position: absolute;
    bottom: 50px;
    right: 50px;
    display: flex;
    gap: 15px;
    z-index: 20;
    top: auto;
    transform: none;
    width: auto;
    padding: 0;
}

.prev, .next {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.prev:hover, .next:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* Slider Active State */
.slide.active {
    opacity: 1;
    z-index: 2;
}

/* Sections */
section {
    padding: 100px 0;
}

/* Column Layout */
.col-half {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .col-half {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 40px;
    }
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.section-title span {
    color: var(--primary-color);
}

.text-center {
    text-align: center;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 60px;
    font-style: italic;
    font-family: var(--font-heading);
}

/* About Section */
.about-section {
    background-color: var(--white);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

/* Marble/Tile Animation for About Section */
.animated-blocks.marble {
    z-index: 1;
}

.animated-blocks.marble span {
    background: rgba(0, 0, 0, 0.05); /* Slightly darker for better visibility */
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 2px; /* Sharper corners for tile look */
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); /* 3D effect */
}

.about-img-group .main-img {
    transition: transform 0.5s ease;
}

.about-img-group:hover .main-img {
    transform: scale(1.02);
}

.row.align-items-center {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-img-group {
    position: relative;
    padding: 30px;
}

.main-img {
    width: 90%;
    border-radius: 5px;
    /* box-shadow removed as per request */
}

.float-img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    background: var(--white);
    padding: 15px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.sub-heading {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 15px;
    display: block;
    font-family: var(--font-body);
    position: relative;
    padding-left: 60px;
}

.sub-heading::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 2px;
    background-color: var(--primary-color);
}

.about-section .section-title {
    margin-bottom: 30px;
    line-height: 1.3;
}

.lead-text {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 500;
    line-height: 1.6;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.about-section p:not(.lead-text) {
    line-height: 1.8;
    color: #666;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--secondary-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--white);
    border-color: var(--secondary-color);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Products Section */
.products-section {
    position: relative;
    background-color: var(--bg-light);
    overflow: hidden;
    padding: 100px 0;
}

/* Products Background Animation (Floating Orbs/Gradients) */
.products-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: floatOrb 20s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(22, 33, 62, 0.2) 0%, rgba(22, 33, 62, 0) 70%); /* Secondary color tint */
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.15) 0%, rgba(233, 69, 96, 0) 70%); /* Primary color tint */
    bottom: -200px;
    right: -100px;
    animation-delay: -5s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(22, 33, 62, 0.15) 0%, rgba(22, 33, 62, 0) 70%);
    top: 40%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
}

.product-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.product-card {
    background: transparent;
    perspective: 1000px;
}

.card-inner {
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

/* Animated Border Effect */
.card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    padding: 2px; /* Border width */
    background: linear-gradient(45deg, transparent, var(--primary-color), transparent, var(--secondary-color), transparent);
    background-size: 400% 400%;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    animation: borderShimmer 4s linear infinite;
    pointer-events: none;
    z-index: 3;
}

.product-card:hover .card-inner::before {
    opacity: 1;
    animation-duration: 2s; /* Speed up on hover */
}

@keyframes borderShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.product-card:hover .card-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.card-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.1);
}

.card-details {
    padding: 25px;
    text-align: center;
    background: var(--white);
    z-index: 2;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: var(--transition);
}

.product-card:hover .card-details {
    border-bottom-color: var(--primary-color);
}

.card-details h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.card-details p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.btn-link {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
}

.brand-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 40px 0;
}

.brand-track {
    display: flex;
    width: fit-content;
    gap: 50px;
    animation: scrollBrands 20s linear infinite;
}

/* Continuous Loop Animation */
@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); } /* 200px width + 50px gap * 6 original items */
}

.brand-box {
    flex: 0 0 auto;
    width: 200px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    background: #fff;
    padding: 15px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border-radius: 5px;
    cursor: pointer;
}

.brand-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    /* filter: grayscale(100%); Removed for full color default */
    transition: transform 0.3s ease;
}

.brand-box:hover img {
    transform: scale(1.1);
}

.brand-box:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Shine Effect Element */
.brand-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-25deg);
    z-index: 1;
    pointer-events: none;
}

/* Hover Shine Trigger */
.brand-box:hover::after {
    animation: shine 0.75s;
}

/* Intermittent Shine Animation */
@keyframes shine {
    100% {
        left: 200%;
    }
}

@keyframes autoShine {
    0% { left: -100%; }
    10% { left: 200%; }
    100% { left: 200%; }
}

/* Random Intermittent Shine */
.brand-box:nth-child(3n+1)::after {
    animation: autoShine 6s infinite ease-in-out;
}
.brand-box:nth-child(3n+2)::after {
    animation: autoShine 8s infinite ease-in-out 2s;
}
.brand-box:nth-child(3n+3)::after {
    animation: autoShine 5s infinite ease-in-out 4s;
}

/* Why Choose Us Section (Dark Luxury Theme) */
.features-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    z-index: 1;
    color: var(--white);
}

/* Enhanced Background Shine */
.features-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
    animation: shinePass 8s infinite linear;
    z-index: -1;
    pointer-events: none;
}

@keyframes shinePass {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(50%); }
}

.animated-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark Navy Blue Theme */
    background: linear-gradient(-45deg, #0a192f, #112240, #0a192f, #1e3a8a);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
    z-index: -1;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    color: var(--secondary-color);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-bottom: 3px solid transparent;
    
    /* Infinite Sequential Zoom Animation */
    animation: autoZoom 12s infinite ease-in-out;
}

/* Staggered Animation Delays */
.feature-card:nth-child(1) { animation-delay: 0s; }
.feature-card:nth-child(2) { animation-delay: 3s; }
.feature-card:nth-child(3) { animation-delay: 6s; }
.feature-card:nth-child(4) { animation-delay: 9s; }

/* Zoom Keyframes - Overlapping Sequence */
@keyframes autoZoom {
    0% { 
        transform: scale(1); 
        z-index: 1; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border-bottom-color: transparent;
    }
    5% { 
        transform: scale(1.1); 
        z-index: 10; 
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        border-bottom-color: var(--primary-color);
    }
    25% { 
        transform: scale(1.1); 
        z-index: 10; 
        box-shadow: 0 30px 60px rgba(0,0,0,0.4);
        border-bottom-color: var(--primary-color);
    }
    30% { 
        transform: scale(1); 
        z-index: 1; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border-bottom-color: transparent;
    }
    100% { 
        transform: scale(1); 
        z-index: 1; 
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        border-bottom-color: transparent;
    }
}

/* Pause animation on hover to let user interact */
.features-grid:hover .feature-card {
    animation-play-state: paused;
}
.feature-card:hover {
    transform: scale(1.1) !important; /* Override animation */
    z-index: 20;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border-bottom-color: var(--primary-color);
}

/* Watermark Number */
.feature-card .step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    z-index: 0;
    transition: all 0.5s ease;
}

/* Sync watermark with zoom animation */
@keyframes watermarkZoom {
    0% { transform: scale(1) rotate(0deg); color: rgba(0, 0, 0, 0.03); }
    5% { transform: scale(1.2) rotate(-10deg); color: rgba(255, 1, 0, 0.1); }
    25% { transform: scale(1.2) rotate(-10deg); color: rgba(255, 1, 0, 0.1); }
    30% { transform: scale(1) rotate(0deg); color: rgba(0, 0, 0, 0.03); }
    100% { transform: scale(1) rotate(0deg); color: rgba(0, 0, 0, 0.03); }
}
.feature-card .step-number {
    animation: watermarkZoom 12s infinite ease-in-out;
}
.feature-card:nth-child(1) .step-number { animation-delay: 0s; }
.feature-card:nth-child(2) .step-number { animation-delay: 3s; }
.feature-card:nth-child(3) .step-number { animation-delay: 6s; }
.feature-card:nth-child(4) .step-number { animation-delay: 9s; }

.feature-card:hover .step-number {
    transform: scale(1.2) rotate(-10deg);
    color: rgba(var(--primary-rgb), 0.1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

/* Sync icon rotation with zoom */
@keyframes iconSpin {
    0% { transform: rotateY(0deg); background: var(--white); color: var(--primary-color); }
    5% { transform: rotateY(360deg); background: var(--primary-color); color: var(--white); }
    25% { transform: rotateY(360deg); background: var(--primary-color); color: var(--white); }
    30% { transform: rotateY(0deg); background: var(--white); color: var(--primary-color); }
    100% { transform: rotateY(0deg); background: var(--white); color: var(--primary-color); }
}
.feature-card .icon-wrapper {
    animation: iconSpin 12s infinite ease-in-out;
}
.feature-card:nth-child(1) .icon-wrapper { animation-delay: 0s; }
.feature-card:nth-child(2) .icon-wrapper { animation-delay: 3s; }
.feature-card:nth-child(3) .icon-wrapper { animation-delay: 6s; }
.feature-card:nth-child(4) .icon-wrapper { animation-delay: 9s; }

.feature-card:hover .icon-wrapper {
    background: var(--primary-color);
    color: var(--white);
    transform: rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Infinite Pulse Border on Card */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid transparent;
    transition: all 0.5s ease;
    pointer-events: none;
}

.feature-card:hover::before {
    border-color: rgba(var(--primary-rgb), 0.3);
    animation: borderPulse 2s infinite;
}

@keyframes borderPulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.05); opacity: 0; }
}
    color: var(--secondary-color);
    transition: var(--transition);
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Wave Animation */
.wave-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 2;
}

.waves {
    position: relative;
    width: 100%;
    height: 100px;
    margin-bottom: -7px; /* Fix for safari gap */
    min-height: 100px;
    max-height: 150px;
}

.parallax > use {
    animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}

.parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px,0,0);
    }
    100% {
        transform: translate3d(85px,0,0);
    }
}

/* Responsive Wave */
@media (max-width: 768px) {
    .waves {
        height: 40px;
        min-height: 40px;
    }
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

.contact-wrapper {
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 50px;
    display: flex;
    gap: 50px;
    border-radius: 5px;
}

.contact-info-box {
    flex: 1;
    padding-right: 30px;
    border-right: 1px solid var(--border-color);
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.info-item i {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-right: 25px;
    flex-shrink: 0;
    transition: var(--transition);
}

.info-item:hover i {
    background: var(--primary-color);
    color: var(--white);
}

.info-item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

.contact-form-box {
    flex: 1.5;
}

.contact-form-box form {
    background: transparent;
    padding: 0;
    box-shadow: none;
}

.form-group input, .form-group textarea {
    background: var(--bg-light);
    border: 1px solid transparent;
    padding: 15px;
    font-size: 1rem;
}

.form-group input:focus, .form-group textarea:focus {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #fff;
    padding-top: 80px;
    padding-bottom: 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
}

.footer-logo img {
    filter: brightness(0) invert(1);
    margin-bottom: 25px;
    height: 60px;
}

.footer-logo p {
    color: #888;
    line-height: 1.6;
}

.footer-links, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-social h3 {
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-links h3::after, .footer-social h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #888;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 8px;
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    background: rgba(255,255,255,0.05);
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 25px;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-wrapper {
        flex-direction: column;
        padding: 30px;
    }
    
    .contact-info-box {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 30px;
        padding-right: 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 105px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        padding: 20px 0;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }
    
    .hero {
        height: 700px !important;
        min-height: 700px !important;
        margin-top: 100px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .col-half {
        width: 100%;
    }
    
    .stats-row {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
        text-align: center;
    }
}

/* Stats Section (New) */
.stats-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color), #000);
    overflow: hidden;
    color: var(--white);
    text-align: center;
}

/* Animated Blocks Background */
.animated-blocks {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.animated-blocks span {
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    animation: moveBlocks 25s linear infinite;
    bottom: -150px;
}

.animated-blocks span:nth-child(1) { left: 25%; width: 80px; height: 80px; animation-delay: 0s; }
.animated-blocks span:nth-child(2) { left: 10%; width: 20px; height: 20px; animation-delay: 2s; animation-duration: 12s; }
.animated-blocks span:nth-child(3) { left: 70%; width: 20px; height: 20px; animation-delay: 4s; }
.animated-blocks span:nth-child(4) { left: 40%; width: 60px; height: 60px; animation-delay: 0s; animation-duration: 18s; }
.animated-blocks span:nth-child(5) { left: 65%; width: 20px; height: 20px; animation-delay: 0s; }
.animated-blocks span:nth-child(6) { left: 75%; width: 110px; height: 110px; animation-delay: 3s; }
.animated-blocks span:nth-child(7) { left: 35%; width: 150px; height: 150px; animation-delay: 7s; }
.animated-blocks span:nth-child(8) { left: 50%; width: 25px; height: 25px; animation-delay: 15s; animation-duration: 45s; }
.animated-blocks span:nth-child(9) { left: 20%; width: 15px; height: 15px; animation-delay: 2s; animation-duration: 35s; }
.animated-blocks span:nth-child(10) { left: 85%; width: 150px; height: 150px; animation-delay: 0s; animation-duration: 11s; }

@keyframes moveBlocks {
    0% { transform: translateY(0) rotate(0deg); opacity: 1; border-radius: 0; }
    100% { transform: translateY(-1000px) rotate(720deg); opacity: 0; border-radius: 50%; }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.stat-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
}

.stat-icon {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.stat-item h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}
