:root {
    --sk-primary: #000000;
    --sk-secondary: #F8F8F8;
    --sk-accent: #FA0000;
    --sk-light: #FFFFFF;
    --sk-gray: #777777;
    --sk-dark: #1a1a1a;
    --sk-gradient: linear-gradient(135deg, #FA0000, #000000);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--sk-secondary);
    color: var(--sk-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
header {
    background-color: rgba(0, 0, 0, 0.95);
    color: white;
    padding: 18px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-scrolled {
    padding: 12px 0;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(0, 0, 0, 0.98);
}

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

.logo {
    font-size: 2.2rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--sk-accent);
    margin-left: 4px;
}

.logo i {
    margin-right: 12px;
    color: var(--sk-accent);
    font-size: 2.4rem;
}

nav ul {
    display: flex;
    list-style: none;
}

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

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 0;
    position: relative;
    font-size: 1.05rem;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--sk-gradient);
    transition: width 0.4s ease;
    border-radius: 2px;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--sk-accent);
}

/* ===========================================
   Mobile Menu Toggle Button with Close Icon
   =========================================== */

/* Mobile Menu Button Container */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.6rem;
    cursor: pointer;
    z-index: 1001;
    transition: all 0.3s ease;
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    /* margin-left: 180px !important; */
}

/* Icons inside button */
.mobile-menu-btn i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    line-height: 1;
}

/* Bars icon (hamburger) */
.mobile-menu-btn .fa-bars {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

/* Times icon (close) */
.mobile-menu-btn .fa-times {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0) rotate(-180deg);
}

/* When menu is open - Button State */
.mobile-menu-btn.menu-open {
    background: var(--sk-accent);
    transform: rotate(180deg);
}

.mobile-menu-btn.menu-open .fa-bars {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0) rotate(90deg);
}

.mobile-menu-btn.menu-open .fa-times {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
}

/* Hover Effects */
.mobile-menu-btn:hover {
    background: var(--sk-accent);
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(250, 0, 0, 0.3);
}

.mobile-menu-btn.menu-open:hover {
    transform: rotate(180deg) scale(1.05);
}

/* ===========================================
   Mobile Menu Styles
   =========================================== */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Navigation Menu */
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.95), rgba(250, 0, 0, 0.15));
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 100px 0 60px;
        text-align: center;
        z-index: 998;
        margin: 0;
        overflow-y: auto;
    }

    /* Show menu */
    nav ul.show {
        display: flex;
        animation: slideInFromRight 0.5s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    }

    /* Hide menu */
    nav ul.hide {
        animation: slideOutToRight 0.4s cubic-bezier(0.755, 0.05, 0.855, 0.06) forwards;
    }

    /* Menu Items */
    nav ul li {
        margin: 18px 0;
        width: 90%;
        max-width: 280px;
        opacity: 0;
        transform: translateX(50px);
        transition: all 0.5s ease;
    }

    /* Animate menu items when showing */
    nav ul.show li {
        opacity: 1;
        transform: translateX(0);
        animation: slideInItem 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    }

    /* Stagger animation for menu items */
    nav ul.show li:nth-child(1) {
        animation-delay: 0.1s;
    }

    nav ul.show li:nth-child(2) {
        animation-delay: 0.15s;
    }

    nav ul.show li:nth-child(3) {
        animation-delay: 0.2s;
    }

    nav ul.show li:nth-child(4) {
        animation-delay: 0.25s;
    }

    nav ul.show li:nth-child(5) {
        animation-delay: 0.3s;
    }

    /* Menu Links */
    nav ul li a {
        font-size: 1.3rem;
        padding: 18px 30px;
        display: block;
        width: 100%;
        transition: all 0.4s ease;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        position: relative;
        overflow: hidden;
    }

    nav ul li a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: var(--sk-gradient);
        transition: all 0.5s ease;
        z-index: -1;
    }

    nav ul li a:hover::before,
    nav ul li a.active::before {
        left: 0;
    }

    nav ul li a:hover,
    nav ul li a.active {
        color: white;
        transform: translateX(10px);
        border-color: var(--sk-accent);
        box-shadow: 0 10px 25px rgba(250, 0, 0, 0.2);
    }

    /* Add a close button at the bottom of menu */
    .menu-close-btn {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255, 255, 255, 0.1);
        border: 2px solid rgba(255, 255, 255, 0.2);
        color: white;
        padding: 12px 40px;
        border-radius: 30px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }

    nav ul.show .menu-close-btn {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
        animation: fadeInUp 0.6s ease 0.6s forwards;
    }

    .menu-close-btn:hover {
        background: var(--sk-accent);
        border-color: var(--sk-accent);
        transform: translateX(-50%) translateY(-3px);
        box-shadow: 0 10px 20px rgba(250, 0, 0, 0.3);
    }

    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    /* Overlay for backdrop */
    .menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(3px);
        z-index: 997;
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}

/* ===========================================
   Animations
   =========================================== */
@keyframes slideInFromRight {
    0% {
        transform: translateX(100%);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutToRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideInItem {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(250, 0, 0, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(250, 0, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(250, 0, 0, 0);
    }
}

/* ===========================================
   Responsive Adjustments
   =========================================== */
@media (max-width: 576px) {
    .mobile-menu-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

    nav ul {
        padding: 90px 0 50px;
    }

    nav ul li {
        margin: 15px 0;
        max-width: 250px;
    }

    nav ul li a {
        font-size: 1.2rem;
        padding: 16px 25px;
    }

    .menu-close-btn {
        padding: 10px 35px;
        font-size: 0.95rem;
    }
}

/* For very small screens */
@media (max-width: 375px) {
    .mobile-menu-btn {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }

    nav ul li a {
        font-size: 1.1rem;
        padding: 14px 22px;
    }
}

/* Dark/Light Mode Support */
@media (prefers-color-scheme: light) {
    .mobile-menu-btn {
        background: rgba(0, 0, 0, 0.1);
    }

    .mobile-menu-btn:hover {
        background: var(--sk-accent);
    }
}

/* Enhanced Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 180px 0 150px;
    text-align: center;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    transform: scale(1.1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.5s ease-in-out, transform 8s ease-in-out;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85), rgba(250, 0, 0, 0.25));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
}

.hero-text.active {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.hero h1::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--sk-gradient);
    border-radius: 3px;
}

.hero p {
    font-size: 1.4rem;
    max-width: 750px;
    margin: 40px auto 50px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    font-weight: 300;
    line-height: 1.7;
    position: relative;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    background: var(--sk-gradient);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    font-size: 0.95rem;
    box-shadow: 0 8px 25px rgba(250, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(250, 0, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid white;
    box-shadow: none;
}

.btn-outline:hover {
    background: white;
    color: var(--sk-primary);
}

/* Enhanced Slideshow Controls */
.slide-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 2;
}

.slide-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slide-indicator::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--sk-gradient);
    transition: all 0.3s ease;
}

.slide-indicator.active {
    transform: scale(1.2);
}

.slide-indicator.active::before {
    left: 0;
}

/* Enhanced Floating Elements */
.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1.5rem;
}

.floating-element:nth-child(1) {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.floating-element:nth-child(4) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 85%;
    animation-delay: 1s;
}

.floating-element:nth-child(5) {
    width: 50px;
    height: 50px;
    top: 75%;
    left: 5%;
    animation-delay: 3s;
}

/* Hero Content Badge */
.hero-badge {
    display: inline-block;
    background: var(--sk-gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 5px 15px rgba(250, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 25px;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.hero-feature i {
    color: var(--sk-accent);
    font-size: 1.5rem;
}

.hero-feature span {
    font-size: 1rem;
    font-weight: 500;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 5px 15px rgba(250, 0, 0, 0.3);
    }

    50% {
        box-shadow: 0 5px 25px rgba(250, 0, 0, 0.5);
    }

    100% {
        box-shadow: 0 5px 15px rgba(250, 0, 0, 0.3);
    }
}

/* Services Section */
.services {
    padding: 120px 0;
    background-color: white;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    font-weight: 800;
    color: var(--sk-dark);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--sk-gradient);
    border-radius: 3px;
}

.section-title p {
    color: var(--sk-gray);
    max-width: 650px;
    margin: 35px auto 0;
    font-size: 1.15rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background-color: var(--sk-light);
    border-radius: 15px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(50px);
}

.service-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--sk-gradient);
    transition: all 0.5s ease;
    z-index: -1;
    opacity: 0;
}

.service-card:hover::before {
    height: 100%;
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-20px);
    color: white;
    box-shadow: 0 20px 50px rgba(250, 0, 0, 0.2);
}

.service-card:hover .service-icon {
    color: white;
    transform: scale(1.15) rotate(5deg);
}

.service-card:hover h3,
.service-card:hover p {
    color: white;
}

.service-icon {
    font-size: 4rem;
    color: var(--sk-accent);
    margin-bottom: 30px;
    transition: all 0.5s ease;
}

.service-card h3 {
    margin-bottom: 22px;
    font-size: 1.7rem;
    font-weight: 700;
    transition: color 0.5s ease;
}

.service-card p {
    color: var(--sk-gray);
    transition: color 0.5s ease;
    line-height: 1.7;
}

/* Featured Products */
.featured-products {
    padding: 120px 0;
    background-color: var(--sk-secondary);
    position: relative;
}

/* Featured Products Section - Home Page */
.featured-products .product-card {
    margin-bottom: 20px;
}

.featured-products .btn-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.featured-products .btn-outline-dark {
    background: transparent;
    border: 2px solid var(--sk-primary);
    color: var(--sk-primary);
    box-shadow: none;
    padding: 10px 15px;
}

.featured-products .btn-outline-dark:hover {
    background: var(--sk-primary);
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .featured-products .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .featured-products .product-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .featured-products .products-grid {
        grid-template-columns: 1fr;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
}

.product-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s ease;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--sk-gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-img {
    height: 240px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: var(--sk-primary);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

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

.product-info {
    padding: 30px;
}

.product-info h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
    font-weight: 700;
}

.product-info p {
    color: var(--sk-gray);
    margin-bottom: 18px;
    font-size: 1rem;
    line-height: 1.6;
}

.price {
    color: var(--sk-accent);
    font-weight: 800;
    font-size: 1.6rem;
    margin-bottom: 25px;
    display: block;
}

.product-actions {
    display: flex;
    justify-content: space-between;
}

.btn-small {
    padding: 12px 25px;
    font-size: 0.9rem;
}

.btn-outline-dark {
    background: transparent;
    border: 2px solid var(--sk-primary);
    color: var(--sk-primary);
    box-shadow: none;
}

.btn-outline-dark:hover {
    background: var(--sk-primary);
    color: white;
}

/* About Section */
.about {
    padding: 120px 0;
    background-color: white;
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
    font-weight: 800;
    position: relative;
    color: var(--sk-dark);
    opacity: 0;
    transform: translateX(-50px);
}

.about-text.animate h2 {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100px;
    height: 5px;
    background: var(--sk-gradient);
    border-radius: 3px;
}

.about-text p {
    margin-bottom: 28px;
    color: var(--sk-gray);
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0;
    transform: translateX(-30px);
}

.about-text.animate p {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease 0.2s;
}

.about-stats {
    display: flex;
    margin-top: 40px;
    opacity: 0;
    transform: translateY(30px);
}

.about-text.animate .about-stats {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease 0.4s;
}

.stat {
    margin-right: 50px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--sk-accent);
    display: block;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    color: var(--sk-gray);
    margin-top: 8px;
}

.about-image {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/logo-dark.jpg') center/cover;
    height: 500px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--sk-primary);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(50px);
}

.about-image.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1), rgba(250, 0, 0, 0.1));
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background-color: white;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 15px;
    background: var(--sk-light);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--sk-gradient);
    transition: all 0.5s ease;
    z-index: 0;
    opacity: 0;
}

.stat-card:hover::before {
    height: 100%;
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(250, 0, 0, 0.15);
}

.stat-card:hover i,
.stat-card:hover .number,
.stat-card:hover .label {
    color: white;
}

.stat-card.animate {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

.stat-card i {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--sk-accent);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.stat-card .number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
    display: block;
    color: var(--sk-primary);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

.stat-card .label {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--sk-gray);
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background-color: var(--sk-secondary);
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.contact-info h3 {
    margin-bottom: 30px;
    font-size: 2.2rem;
    font-weight: 800;
    position: relative;
    color: var(--sk-dark);
    opacity: 0;
    transform: translateX(-50px);
}

.contact-info.animate h3 {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 70px;
    height: 5px;
    background: var(--sk-gradient);
    border-radius: 3px;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateX(-30px);
}

.contact-info.animate .contact-detail {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease 0.2s;
}

.contact-detail i {
    margin-right: 18px;
    color: var(--sk-accent);
    font-size: 1.4rem;
    margin-top: 5px;
}

.contact-detail p {
    color: var(--sk-gray);
    font-size: 1.05rem;
}

.contact-form {
    background-color: white;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    opacity: 0;
    transform: translateX(50px);
}

.contact-form.animate {
    opacity: 1;
    transform: translateX(0);
    transition: all 0.8s ease;
}

.form-group {
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--sk-accent);
    outline: none;
    box-shadow: 0 0 0 3px rgba(250, 0, 0, 0.1);
}

.contact-form textarea {
    height: 160px;
    resize: vertical;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--sk-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    visibility: hidden;
}

.sk-loader {
    width: 120px;
    height: 120px;
    position: relative;
}

.sk-logo {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--sk-accent);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.sk-logo span {
    color: var(--sk-primary);
}

.loader-ring {
    width: 120px;
    height: 120px;
    border: 5px solid rgba(250, 0, 0, 0.2);
    border-radius: 50%;
    border-top-color: var(--sk-accent);
    animation: spin 1.5s linear infinite;
    position: absolute;
    top: 0;
    left: 0;
}

.loader-ring:nth-child(2) {
    width: 100px;
    height: 100px;
    top: 10px;
    left: 10px;
    border: 5px solid rgba(0, 0, 0, 0.2);
    border-top-color: var(--sk-primary);
    animation: spin 1s linear infinite reverse;
}

.loader-ring:nth-child(3) {
    width: 80px;
    height: 80px;
    top: 20px;
    left: 20px;
    border: 5px solid rgba(250, 0, 0, 0.1);
    border-top-color: var(--sk-accent);
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

    .about-content,
    .contact-container {
        gap: 50px;
    }
}

@media (max-width: 992px) {

    .about-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .about-image {
        order: -1;
        height: 400px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .section-title h2 {
        font-size: 2.8rem;
    }

    .hero-features {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: var(--sk-gradient);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px 0;
        text-align: center;
        z-index: 999;
        transition: all 0.5s ease;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 20px 0;
    }

    nav ul li a {
        font-size: 1.3rem;
        padding: 12px 25px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 150px 0 120px;
        height: auto;
        min-height: auto;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .about-stats {
        flex-direction: column;
    }

    .stat {
        margin-right: 0;
        margin-bottom: 25px;
    }

    .contact-form {
        padding: 35px;
    }

    .slide-indicators {
        bottom: 25px;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2.3rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

    .services-grid,
    .products-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .product-card,
    .stat-card {
        padding: 35px 25px;
    }

    .contact-form {
        padding: 25px;
    }

    .floating-element {
        display: none;
    }

    .sk {
        width: 60px !important;
    }

    .sk-com {
        font-size: 25px;
    }
}

/* User Actions Styles */
.user-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

/* Cart Icon Styles */
.cart-icon-container {
    position: relative;
}

.cart-icon {
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-icon:hover {
    color: var(--sk-accent);
    background: rgba(250, 0, 0, 0.1);
    transform: translateY(-2px);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--sk-gradient);
    color: white;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 0, 0, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(250, 0, 0, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(250, 0, 0, 0);
    }
}

/* Login Button Styles */
.btn-login {
    background: var(--sk-gradient);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(250, 0, 0, 0.2);
}

.btn-login:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(250, 0, 0, 0.3);
    color: white;
    text-decoration: none;
}

.btn-login i {
    font-size: 1rem;
}

/* User Dropdown Styles */
.user-dropdown {
    position: relative;
}

.dropdown-toggle {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle:hover {
    border-color: var(--sk-accent);
    background: rgba(250, 0, 0, 0.1);
}

.dropdown-toggle::after {
    margin-left: 8px;
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
}

.dropdown-menu {
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 220px;
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.3s ease;
}

.dropdown-item {
    color: white;
    padding: 10px 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: rgba(250, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.dropdown-item i {
    width: 20px;
    text-align: center;
}

.dropdown-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 8px 0;
}

.user-name {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive Styles */
@media (max-width: 992px) {
    .user-actions {
        gap: 15px;
    }

    .btn-login {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .cart-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .user-actions {
        margin-left: 0;
        gap: 10px;
    }

    .user-name {
        display: none;
    }

    .dropdown-toggle {
        padding: 8px 15px;
    }

    .btn-login span {
        display: none;
    }

    .btn-login i {
        margin: 0;
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .user-actions {
        position: absolute;
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Form Message Styles - Add this to index.css */
.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background-color: rgba(76, 175, 80, 0.1);
    color: #2e7d32;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.form-message.error {
    background-color: rgba(244, 67, 54, 0.1);
    color: #c62828;
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.form-message i {
    font-size: 1.2rem;
}

.error-message {
    color: #ff4757;
    font-size: 0.85rem;
    margin-top: 5px;
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Input error styling */
input.error,
textarea.error,
select.error {
    border-color: #ff4757 !important;
}

/* Responsive Hero Section */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 3.8rem;
    }

    .hero p {
        font-size: 1.3rem;
        max-width: 700px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 180px 0 120px;
        height: 90vh;
        min-height: 650px;
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero p {
        font-size: 1.2rem;
        max-width: 600px;
        margin: 30px auto 40px;
    }

    .hero-features {
        gap: 25px;
    }

    .floating-element:nth-child(1) {
        width: 60px;
        height: 60px;
        left: 5%;
    }

    .floating-element:nth-child(4) {
        width: 50px;
        height: 50px;
        left: 90%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 160px 0 100px;
        height: auto;
        min-height: 600px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero h1 {
        font-size: 2.8rem;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 1.1rem;
        margin: 25px auto 35px;
        line-height: 1.6;
    }

    .hero-badge {
        padding: 8px 20px;
        font-size: 0.85rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 30px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
        padding: 14px 30px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 35px;
    }

    .hero-feature {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .slide-indicators {
        bottom: 30px;
    }

    .floating-element {
        display: none;
    }

    .hero-slide {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 140px 0 80px;
        min-height: 550px;
    }

    .hero h1 {
        font-size: 2.3rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        margin: 20px auto 30px;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }

    .hero-buttons {
        margin-top: 25px;
    }

    .hero-buttons .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .hero-features {
        margin-top: 30px;
    }

    .hero-feature {
        padding: 12px 20px;
    }

    .hero-feature i {
        font-size: 1.2rem;
    }

    .hero-feature span {
        font-size: 0.95rem;
    }

    .slide-indicators {
        bottom: 20px;
    }

    .slide-indicator {
        width: 10px;
        height: 10px;
    }

    .hero-slideshow {
        background-attachment: scroll;
    }
}

@media (max-width: 375px) {
    .hero {
        padding: 120px 0 60px;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .hero-feature {
        padding: 10px 15px;
    }

    .hero-feature span {
        font-size: 0.9rem;
    }
}

/* Tablet Landscape Specific */
@media (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding: 150px 0 100px;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero p {
        font-size: 1.1rem;
        max-width: 700px;
    }

    .hero-features {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-feature {
        flex: 0 0 auto;
    }
}

/* Mobile Landscape Specific */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        height: 100vh;
        padding: 120px 0 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 90%;
    }

    .hero-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-feature {
        flex: 0 0 calc(50% - 10px);
        max-width: none;
        padding: 10px;
    }
}

/* Extra small devices specific fixes */
@media (max-height: 600px) and (orientation: portrait) {
    .hero {
        min-height: 100vh;
    }

    .hero-content {
        padding-top: 100px;
        padding-bottom: 60px;
    }
}

/* Fix for iOS Safari address bar */
@supports (-webkit-touch-callout: none) {
    .hero {
        height: -webkit-fill-available;
        min-height: -webkit-fill-available;
    }
}

/* Loading screen responsive fix */
@media (max-width: 768px) {
    .loading {
        padding: 20px;
    }

    .sk-loader {
        width: 100px;
        height: 100px;
    }

    .sk-logo {
        font-size: 2.8rem;
    }

    .loader-ring {
        width: 100px;
        height: 100px;
    }

    .loader-ring:nth-child(2) {
        width: 80px;
        height: 80px;
        top: 10px;
        left: 10px;
    }

    .loader-ring:nth-child(3) {
        width: 60px;
        height: 60px;
        top: 20px;
        left: 20px;
    }
}

/* Fix for mobile menu button positioning on small screens */
@media (max-width: 768px) {
    .mobile-menu-btn {
        margin-left: auto !important;
        margin-right: 10px;
    }
}

@media (max-width: 425px) {
    .mobile-menu-btn {
        margin-left: 130px !important;
    }
}

@media (max-width: 375px) {
    .mobile-menu-btn {
        margin-left: 110px !important;
    }
    .btn-login {
        margin-right: -20px !important;
    }
}