:root {
    --dark-blue: #2c5faa;
    --medium-blue: #142252;
    --light-blue: #3c6eaf;
    --white: #edf2f7;
    --off-white: #f8f9fa;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-blue);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    transition: var(--transition);
}

.header.scrolled .logo-img {
    height: 40px;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--dark-blue);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: var(--transition);
    padding: 5px 0;
}

.nav-link.active {
    color: var(--light-blue);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--light-blue);
    bottom: 0;
    left: 0;
    transition: var(--transition);
}

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

/* Cart Button Styles */
.checkout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 15px;
    border-radius: 50px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    background-color: var(--light-blue);
    color: var(--white);
    font-size: 14px;
    margin-left: 15px;
    position: relative;
}

.checkout-btn i {
    font-size: 18px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--white);
    color: var(--light-blue);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
}

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

.social-icon {
    color: var(--dark-blue);
    font-size: 18px;
    transition: var(--transition);
}

.social-icon:hover {
    transform: translateY(-3px);
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark-blue);
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(10, 36, 99, 0.7), rgba(10, 36, 99, 0.7)), url('img/allproduct.png') no-repeat center/cover;
    height: 100vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
    animation: fadeIn 1s ease-out;
}

.hero-content {
    max-width: 1500px;
    margin: 0 auto;
}

.hero-icon {
    font-size: 60px;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--light-blue);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(62, 146, 204, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(62, 146, 204, 0.4);
    background-color: var(--medium-blue);
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: var(--white);
}

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

.section-title h2 {
    font-size: 36px;
    color: var(--dark-blue);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--medium-blue);
    max-width: 700px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--off-white);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(62, 146, 204, 0.1);
}

.feature-icon {
    font-size: 40px;
    color: var(--light-blue);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-blue);
}

/* Footer */
/* Footer Redesign */
.footer {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--white);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    padding-left: 5px;
    opacity: 0.8;
}

/* Location Section */
.footer-location {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.location-info i {
    font-size: 18px;
    margin-top: 3px;
}

/* Map Container */
.map-container {
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Floating Social Icons */
.floating-social-icons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
    z-index: 1000;
}

.floating-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-blue);
    font-size: 25px;
    box-shadow: 0 4px 10px rgba(139, 138, 138, 0.253);
    transition: var(--transition);
    transform: translateY(20px);
    opacity: 0;
    animation: floatIn 0.5s forwards;
    text-decoration: none !important;
}

.floating-social-icon:nth-child(1) { animation-delay: 0.1s; }
.floating-social-icon:nth-child(2) { animation-delay: 0.2s; }
.floating-social-icon:nth-child(3) { animation-delay: 0.3s; }
.floating-social-icon:nth-child(4) { animation-delay: 0.4s; }

.floating-social-icon:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.075);
}

.floating-social-icon.instagram:hover { background: white; color:  #E1306C }
.floating-social-icon.whatsapp:hover { background: white; color: #25D366; }
.floating-social-icon.facebook:hover { background: #3b5998; color: white; }
.floating-social-icon.youtube:hover { background: white; color: #FF0000; }

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

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .floating-social-icons {
        bottom: 20px;
        right: 20px;
    }
    
    .floating-social-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .map-container {
        height: 160px;
    }
}
/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.animated-icon {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: var(--transition);
        z-index: 999;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

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

    .checkout-btn {
        margin-left: 0;
        margin-top: 10px;
    }

    .nav.active {
        left: 0;
    }

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

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title h2 {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 32px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }
}




/* ===== MOBILE FIXES ===== */
@media (max-width: 768px) {
  /* Hero Section */
  .hero {
    height: 60vh;
    min-height: 300px;
    padding-top: 60px;
  }
  
  .hero-title {
    font-size: 30px !important;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 16px !important;
  }
  
  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  /* Header */
  .header .container {
    flex-wrap: wrap;
    padding: 10px 15px;
  }
  
  .social-icons {
    order: 3;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 576px) {
  .nav-links {
    gap: 15px;
  }
  
  .checkout-btn {
    margin-left: 0 !important;
  }
}