@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400;500;600;700;800&family=Bebas+Neue&family=Bruno+Ace+SC&family=Foldit:wght@100;200;300;400;500;600;700;800;900&family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Kanit:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

:root {
    --color1: rgb(0, 144, 211);
    --color1-rgb: 0, 144, 211;
    --color2: #2a2d34;
}


/* .main-sec {
    scroll-snap-type: y mandatory;
    overflow-y: scroll;
    height: 100vh;
} */

/* Override navbar styles for better separation */
.navbar.navbar {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.navbar .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 2rem;
    max-width: 1400px;
}

.navbar .nav-logo {
    display: block;
    margin-right: 2rem;
}

.navbar .nav-menu {
    margin-left: auto;
    padding-right: 0;
}

/* Desktop styles override */
@media screen and (min-width: 769px) {
    .navbar.navbar {
        padding: 0;
    }
    
    .navbar .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
    }
    
    .navbar .nav-logo {
        flex-shrink: 0;
    }
    
    .navbar .nav-menu {
        flex: 1;
        display: flex;
        justify-content: flex-end;
    }
}

.navbar.sticky {
    position: fixed;
    top: 0;
    /* background-color: var(--color2); */
    background: url(../imgs/BG1.jpg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: navAnime 0.7s ease;
}

.nav-logo.sticky {
    display: block;
}

@keyframes navAnime {
    0% {
        top: -40%;
    }
    100% {
        top: 0;
    }
}

.sec-1 {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(135deg, var(--color2) 0%, #1a1c21 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-container {
    display: flex;
    width: 100%;
    min-height: calc(100vh - 80px);
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 2rem;
}

.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-text-content {
    max-width: 600px;
}

.hero-heading {
    font-family: 'Jost', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-btn {
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-btn.primary {
    background: var(--color1);
    color: #fff;
    border: 2px solid var(--color1);
}

.hero-btn.primary:hover {
    background: #fff;
    color: var(--color1);
}

.hero-btn.secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.hero-btn.secondary:hover {
    background: #fff;
    color: var(--color2);
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-wrapper {
    width: 60%;
    position: relative;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.hero-logo {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 144, 211, 0.3));
}

.floating-tech {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.9rem;
    box-shadow: 0 8px 32px rgba(0, 144, 211, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInScale 0.6s ease forwards;
    z-index: 3;
}

.floating-tech i {
    font-size: 1.2rem;
    color: transparent;
    background-image: linear-gradient(135deg, #36D1DC 0%, #5B86E5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 15px rgba(54, 209, 220, 0.5);
    animation: glowPulse 2s ease-in-out infinite;
}

/* Offers Slider Section Styles */
.sec-2 {
    min-height: 80vh;
    width: 100%;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1a1c21 0%, var(--color2) 100%);
    position: relative;
    overflow: hidden;
}

.offers-header {
    text-align: center;
    margin-bottom: 3rem;
}

.offers-header .section-title {
    color: #fff;
}

.offers-header .section-title::after {
    background: var(--color1);
}

.offers-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.offers-slider {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.offer-slide {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
    border-radius: 12px;
}

.offer-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.swiper-slide-active .offer-slide img {
    transform: scale(1.05);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.slide-content.active {
    opacity: 1;
    transform: translateY(0);
}

.slide-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: var(--color1);
    color: #fff;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.slide-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Jost', sans-serif;
}

.slide-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.slide-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #fff;
    color: var(--color2);
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.slide-btn:hover {
    background: transparent;
    color: #fff;
}

/* Featured Products Section Styles */
.sec-3 {
    min-height: 100vh;
    width: 100%;
    padding: 5rem 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-products-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Jost', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color2);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--color1);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

/* Product Card Redesign */
.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transform-origin: center bottom;
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 0;
    padding: 0.5rem 1.5rem 0.5rem 1rem;
    border-radius: 0 50px 50px 0;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    animation: badgePulse 2s infinite ease-in-out;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    }
}

.product-badge.sale {
    background: linear-gradient(135deg, #ff6b6b, #ee5253);
    color: #fff;
}

.product-image {
    height: 180px;
    overflow: hidden;
    position: relative;
    background: #f5f5f5;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 50%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-card:hover .product-image::after {
    opacity: 1;
}

.product-image::before {
    content: 'View Details';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: white;
    background: rgba(28, 28, 28, 0.85);
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    z-index: 2;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.5px;
}

.product-card:hover .product-image::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

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

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

.product-info {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%);
}

.product-title {
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color2);
    margin-bottom: 0.4rem;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 0.2rem;
}

.product-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--color1);
    transition: width 0.3s ease;
}

.product-card:hover .product-title::after {
    width: 80px;
}

.product-card:hover .product-title {
    color: var(--color1);
}

.product-description {
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.6rem;
    line-height: 1.3;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* New Price Display Design */
.product-price {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.6rem;
    padding: 0.5rem 0.6rem;
    background: rgba(245, 247, 250, 0.7);
    border-radius: 6px;
    width: fit-content;
    position: relative;
    border-left: 2px solid var(--color1);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.product-card:hover .product-price {
    background: rgba(245, 247, 250, 0.9);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    transform: translateX(5px);
}

.current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color2);
    position: relative;
    transition: color 0.3s ease;
}

.product-card:hover .current-price {
    color: var(--color1);
}

.current-price::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color1);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.product-card:hover .current-price::before {
    transform: scaleX(1);
}

.original-price {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
    position: relative;
    padding-left: 12px;
}

.original-price::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    height: 70%;
    width: 2px;
    background-color: #ddd;
    transform: translateY(-50%);
}

/* New Button Design */
.product-btn {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: transparent;
    color: var(--color2);
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 2px solid var(--color2);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.product-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--color1);
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    z-index: -1;
}

.product-card:hover .product-btn {
    color: #fff;
    border-color: var(--color1);
}

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

.product-btn::after {
    content: '→';
    position: absolute;
    right: 1.8rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.product-card:hover .product-btn::after {
    opacity: 1;
    transform: translateX(0);
}

/* View More Button */
.view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.view-more-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--color1);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--color1);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-size: 1.1rem;
    box-shadow: 0 5px 15px rgba(var(--color1-rgb), 0.3);
}

.view-more-btn:hover {
    background: transparent;
    color: var(--color1);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(var(--color1-rgb), 0.4);
}

.view-more-btn::after {
    content: '→';
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
    display: inline-block;
}

.view-more-btn:hover::after {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Adjust minmax for better tablet view */
        gap: 2rem;
    }

    .product-card {
        flex-direction: column; /* Ensure consistent column layout */
        height: auto; /* Allow height to adjust naturally */
    }

    .product-image {
        width: 100%; /* Full width for image */
        height: 200px; /* Maintain a reasonable image height */
    }

    .product-info {
        width: 100%; /* Full width for info */
        padding: 1.5rem; /* Adjust padding */
    }

    .product-title {
        font-size: 1.3rem;
    }

    .product-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .product-price {
        padding: 0.6rem 1rem;
        margin-bottom: 1rem;
    }

    .current-price {
        font-size: 1.4rem;
    }

    .original-price {
        font-size: 1rem;
    }

    .product-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Two columns for smaller tablets */
        gap: 1.5rem;
    }

    .product-card {
        flex-direction: column; /* Keep as column */
    }

    .product-image {
        height: 180px;
    }

    .product-info {
        padding: 1.2rem;
    }

    .product-title {
        font-size: 1.2rem;
    }

    .product-description {
        font-size: 0.85rem;
    }

    .current-price {
        font-size: 1.3rem;
    }

    .original-price {
        font-size: 0.9rem;
    }

    .product-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
        max-width: 350px;
        margin: 0 auto;
    }

    .product-image {
        height: 200px;
    }

    .product-info {
        padding: 1rem;
    }

    .product-title {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 0.8rem;
    }

    .current-price {
        font-size: 1.2rem;
    }

    .original-price {
        font-size: 0.85rem;
    }

    .product-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

/* Animations and Responsive Styles */

@keyframes glowPulse {
    0% {
        text-shadow: 0 0 15px rgba(54, 209, 220, 0.5);
    }
    50% {
        text-shadow: 0 0 25px rgba(54, 209, 220, 0.8);
    }
    100% {
        text-shadow: 0 0 15px rgba(54, 209, 220, 0.5);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

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

.floating-1 {
    top: 20%;
    left: 0;
    animation-delay: 0.2s;
}

.floating-2 {
    top: 50%;
    right: 0;
    animation-delay: 0.4s;
}

.floating-3 {
    bottom: 20%;
    left: 10%;
    animation-delay: 0.6s;
}

/* Enhanced Responsive Design for Homepage */

/* Large Desktop */
@media (min-width: 1400px) {
    .hero-container {
        max-width: 1600px;
        padding: 3rem;
    }
    
    .hero-heading {
        font-size: 4rem;
    }
    
    .hero-description {
        font-size: 1.3rem;
    }
}

/* Desktop */
@media (max-width: 1200px) {
    .hero-container {
        padding: 2rem 1.5rem;
    }
    
    .hero-heading {
        font-size: 3.2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .floating-tech {
        font-size: 0.85rem;
        padding: 0.8rem;
    }
    
    .section-container {
        padding: 0 1.5rem;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .hero-container {
        flex-direction: column;
        padding: 1.5rem;
        min-height: calc(100vh - 80px);
    }
    
    .hero-left, .hero-right {
        width: 100%;
        padding: 1rem;
    }
    
    .hero-left {
        order: 2;
    }
    
    .hero-right {
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-text-content {
        text-align: center;
        margin: 0 auto;
        max-width: 700px;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .logo-wrapper {
        width: 60%;
        max-width: 400px;
    }
    
    .floating-tech {
        display: none; /* Hide floating elements on tablet for cleaner look */
    }
    
    .sec-3 {
        padding: 4rem 0;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .sec-1 {
        padding-top: 80px;
    }
    
    .hero-container {
        padding: 1rem;
        min-height: calc(100vh - 80px);
    }
    
    .hero-left, .hero-right {
        padding: 0.5rem;
    }
    
    .hero-heading {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
        min-width: 140px;
    }
    
    .logo-wrapper {
        width: 70%;
        max-width: 300px;
    }
    
    .sec-2 {
        padding: 3rem 0;
    }
    
    .offers-slider-container {
        padding: 0 1rem;
    }
    
    .offers-slider {
        height: 400px;
    }
    
    .slide-content {
        padding: 1.5rem;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-content h3 {
        font-size: 1.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .slide-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .sec-3 {
        padding: 3rem 0;
    }
    
    .section-container {
        padding: 0 1rem;
    }
    
    .featured-products-header {
        margin-bottom: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Mobile Large */
@media (max-width: 576px) {
    .hero-container {
        padding: 0.5rem;
    }
    
    .hero-heading {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .hero-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 200px;
        text-align: center;
    }
    
    .logo-wrapper {
        width: 80%;
        max-width: 250px;
    }
    
    .sec-2 {
        padding: 2rem 0;
    }
    
    .offers-header {
        margin-bottom: 2rem;
    }
    
    .offers-slider {
        height: 350px;
    }
    
    .slide-content {
        padding: 1rem;
    }
    
    .slide-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .slide-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .sec-3 {
        padding: 2rem 0;
    }
    
    .section-container {
        padding: 0 0.5rem;
    }
    
    .featured-products-header {
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .product-grid {
        max-width: 350px;
    }
}

/* Mobile Small */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 0.85rem;
    }
    
    .offers-slider {
        height: 300px;
    }
    
    .slide-content h3 {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .product-grid {
        max-width: 320px;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .hero-container {
        padding: 0.25rem;
    }
    
    .hero-heading {
        font-size: 1.6rem;
    }
    
    .hero-description {
        font-size: 0.8rem;
    }
    
    .hero-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    
    .section-container {
        padding: 0 0.25rem;
    }
    
    .product-grid {
        max-width: 300px;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .sec-1 {
        min-height: auto;
        padding-top: 60px;
        padding-bottom: 2rem;
    }
    
    .hero-container {
        flex-direction: row;
        min-height: auto;
        padding: 1rem;
    }
    
    .hero-left, .hero-right {
        flex: 1;
    }
    
    .hero-left {
        order: 1;
    }
    
    .hero-right {
        order: 2;
        margin-bottom: 0;
        margin-left: 1rem;
    }
    
    .hero-text-content {
        text-align: left;
    }
    
    .hero-buttons {
        justify-content: flex-start;
        flex-direction: row;
    }
    
    .hero-heading {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .logo-wrapper {
        width: 60%;
    }
}

.offers-slider .swiper-button-next,
.offers-slider .swiper-button-prev {
    color: #fff;
    background: rgba(0,0,0,0.5);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.offers-slider .swiper-button-next:after,
.offers-slider .swiper-button-prev:after {
    font-size: 1.2rem;
}

.offers-slider .swiper-button-next:hover,
.offers-slider .swiper-button-prev:hover {
    background: var(--color1);
}

.offers-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}

.offers-slider .swiper-pagination-bullet-active {
    background: var(--color1);
    transform: scale(1.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .offers-slider {
        height: 400px;
    }

    .slide-content {
        padding: 1.5rem;
    }

    .slide-content h3 {
        font-size: 1.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-btn {
        padding: 0.6rem 1.5rem;
    }
}

.whatsapp-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 57px; /* Adjust size as needed */
    height: 57px; /* Adjust size as needed */
    background-color: #25d366; /* WhatsApp green */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    font-size: 30px; /* Adjust icon size */
    color: white;
    animation: pulse 2s infinite;
}

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