:root {
    --primary: #2c3e50;
    --secondary: #3498db;
    --accent: #2ecc71;
    --light: #f8f9fa;
    --dark: #1a2530;
    --text: #34495e;
    --sidebar-width: 250px;
    --transition: all 0.3s ease;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --radius: 8px;
    --border-light: 1px solid rgba(0,0,0,0.08);
    --border-accent: 1px solid rgba(46, 204, 113, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--light);
    color: var(--text);
    line-height: 1.5;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto auto 1fr auto;
    grid-template-areas: 
        "top-nav top-nav top-nav top-nav top-nav top-nav top-nav top-nav top-nav top-nav top-nav top-nav"
        "banner banner banner banner banner banner banner banner banner banner banner banner"
        "about-revie about-revie about-revie about-revie about-revie about-revie about-revie about-revie about-revie about-revie about-revie about-revie"
        "sid-bar sid-bar sid-bar body-data body-data body-data body-data body-data body-data body-data body-data body-data"
        "sid-bar sid-bar sid-bar footer footer footer footer footer footer footer footer footer";
    min-height: 100vh;
    padding-top: 70px; /* Added padding to account for fixed navbar */
}

/* Top Navigation - FIXED CONTRAST - NOW FIXED POSITION */
.top-nav {
    grid-area: top-nav;
    background: var(--light);
    color: var(--dark);
    padding: 0.6rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: var(--border-accent);
    width: 100%;
    height: 70px;
}

.logo {
    display: flex;
    align-items: center;
    padding-left: 0.5rem;
    gap: 0.6rem;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.nav-links a {
    color: var(--dark);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    position: relative;
    font-size: 0.9rem;
}

.nav-links a:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -0.6rem;
    top: 50%;
    transform: translateY(-50%);
    height: 12px;
    width: 1px;
    background: rgba(0,0,0,0.2);
}

.nav-links a:hover, .nav-links a.active {
    background: rgba(0,0,0,0.05);
    color: var(--accent);
}

.nav-actions {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.nav-btn {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    border: 1px solid var(--dark);
}

.nav-btn-primary {
    background: var(--accent);
    color: var(--dark);
}

.nav-btn-primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.nav-btn-outline {
    background: transparent;
    color: var(--dark);
}

.nav-btn-outline:hover {
    background: rgba(0,0,0,0.05);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--dark);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

/* Mobile Navigation Dropdown - Positioned below top-nav */
.mobile-nav-dropdown {
    position: fixed;
    top: 70px; /* Height of the top navigation bar */
    left: 0;
    width: 100%;
    height: calc(100vh - 70px); /* Full height minus top nav */
    background: var(--light);
    z-index: 999;
    overflow-y: auto;
    padding: 1.5rem;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-nav-dropdown.active {
    transform: translateX(0);
}

.mobile-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    z-index: 1001;
    padding: 0.5rem;
}

.mobile-nav-section {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.mobile-nav-section:last-child {
    border-bottom: none;
}

.mobile-nav-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
}

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 0.5rem;
}

.mobile-nav-links a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    color: var(--text);
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
    font-weight: 500;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(46, 204, 113, 0.1);
    color: var(--accent);
}

/* Ensure content doesn't shift when menu opens */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Updated Banner with single column on mobile */
.banner {
    grid-area: banner;
    display: flex;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-bottom: var(--border-accent);
}

.banner-column {
    border: 0.1px solid #f8f9fa;
    position: relative;
    height: 100%;
    overflow: hidden;
    flex: 1;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.banner-image.active {
    opacity: 1;
}

.banner-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    z-index: 2;
}

.banner-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.banner-content p {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
}

.banner-buttons {
    display: flex;
    gap: 0.8rem;
}

.btn {
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(46, 204, 113, 0.4);
}

.btn-outline {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

/* Mobile Banner Styles */
.mobile-banner-container {
    display: none;
    height: 90vh;
    width: 100vw;
    position: relative;
    overflow: hidden;
    grid-area: banner;
    top: 0;
}

.mobile-slider {
    height: 100%;
    width: 100%;
    position: relative;
}

.mobile-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.mobile-slide.active {
    opacity: 1;
}

.mobile-slide-1 {
    background-image: url('../img/Slide1.PNG');
}

.mobile-slide-2 {
    background-image: url('../img/Slide2.PNG');
}

.mobile-slide-3 {
    background-image: url('../img/Slide3.PNG');
}

.mobile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2) 30%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0.4));
}

.mobile-top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.mobile-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
}

.mobile-spacer {
    flex: 1;
}

.mobile-buttons {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 20px; /* This adds the extra space at the bottom */
    justify-content: center; /* Center the buttons */
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
}

.mobile-btn {
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    max-width: 30vw; /* Limit maximum width */
    min-width: 120px; /* Set a minimum width for readability */
    width: auto; /* Allow buttons to size based on content */
    flex-shrink: 0; /* Prevent buttons from shrinking */
}

.mobile-btn-primary {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.mobile-btn-primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
}

.mobile-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid white;
}

.mobile-btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-2px);
}

.mobile-slider-controls {
    position: absolute;
    bottom: 1rem;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    z-index: 10;
}

.mobile-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: none;
    cursor: pointer;
    transition: var(--transition);
}

.mobile-slider-dot.active {
    background: none;
    transform: scale(1.2);
}

/* About/Review Section - IMPROVED MOBILE PORTRAIT RESPONSIVENESS */
.about-revie {
    grid-area: about-revie;
    position: relative;
    height: auto;
    min-height: 320px;
    background: url('../img/Left3.jpg') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    border-bottom: var(--border-accent);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-content {
    max-width: 800px;
    text-align: center;
    color: white;
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.about-logo {
    height: 50px;
     border-radius: 5px ;
    margin-bottom: 1rem;
    object-fit: contain;
    max-width: 100%;
}

.about-content p {
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.about-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 600;
    margin-top: 0.8rem;
    transition: var(--transition);
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.about-link:hover {
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.2);
}

/* Sidebar - UPDATED: Now uses sticky positioning */
.sid-bar {
    grid-area: sid-bar;
    background: var(--light);
    padding: 1rem;
    border-right: var(--border-light);
    height: calc(100vh - 70px);
    position: sticky;
    top: 70px;
    overflow-y: auto;
    z-index: 100;
}

.sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-section {
    padding-bottom: 1.5rem;
    border-bottom: var(--border-light);
}

.sidebar-section:last-child {
    border-bottom: none;
}

.sidebar-section h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-section h3::before {
    content: '';
    display: block;
    width: 4px;
    height: 16px;
    background: var(--accent);
    border-radius: 2px;
}

.sidebar-links {
    list-style: none;
}

.sidebar-links li {
    margin-bottom: 0.5rem;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text);
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
    font-size: 0.9rem;
}

.sidebar-links a:hover, .sidebar-links a.active {
    background: rgba(46, 204, 113, 0.1);
    color: var(--accent);
}

.sidebar-links a i {
    width: 16px;
    text-align: center;
}

.why-choose {
    background: rgba(46, 204, 113, 0.05);
    padding: 1rem;
    border-radius: var(--radius);
    border: var(--border-accent);
}

.why-choose h4 {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.why-choose ul {
    list-style: none;
    font-size: 0.8rem;
}

.why-choose li {
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1rem;
}

.why-choose li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.sidebar-promo {
    background: rgba(52, 152, 219, 0.05);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(52, 152, 219, 0.2);
}

.sidebar-promo h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    font-weight: 600;
}

.sidebar-promo p {
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.sidebar-promo-btn {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.8rem;
    transition: var(--transition);
}

.sidebar-promo-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: var(--border-light);
    font-size: 0.7rem;
    color: #777;
}

.sidebar-footer p {
    margin-bottom: 0.5rem;
}

.sidebar-footer a {
    color: #777;
    text-decoration: none;
    transition: var(--transition);
}

.sidebar-footer a:hover {
    color: var(--accent);
}

/* Body Data */
.body-data {
    grid-area: body-data;
    padding: 0rem;
    background: white;
    overflow-y: auto;
}

.section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
}

.view-all {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.view-all:hover {
    gap: 0.8rem;
    color: var(--accent);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: var(--border-light);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.feature-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.05);
}

.feature-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.feature-content {
    padding: 1.5rem;
}

.feature-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.feature-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.5;
}

.feature-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.feature-link:hover {
    gap: 0.8rem;
    color: var(--accent);
}

/* Store Grid */
.store-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: var(--border-light);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.product-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.product-content {
    padding: 1.5rem;
}

.product-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    color: var(--primary);
    font-weight: 600;
}

.product-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.5;
}

.quote-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.quote-link:hover {
    gap: 0.8rem;
    color: #27ae60;
}

/* Footer - UPDATED RESPONSIVE LAYOUT */
.footer {
    grid-area: footer;
    background: var(--dark);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Mobile landscape (2 columns) */
@media (min-width: 576px) and (max-width: 767px) and (orientation: landscape) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (2 columns) */
@media (min-width: 768px) and (max-width: 1023px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Laptops and larger screens (4 columns) */
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-col h3 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    color: var(--accent);
    font-weight: 600;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
}

.footer-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    opacity: 0.7;
}

.company-info {
    margin-top: 0.5rem;
    font-size: 0.7rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 1200px) {
    body {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "top-nav"
            "banner"
            "about-revie"
            "sid-bar"
            "body-data"
            "footer";
    }
    
    .sid-bar {
        height: auto;
        position: static;
        border-right: none;
        border-bottom: var(--border-light);
    }
    
    .sidebar-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .sidebar-section {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .sidebar-footer {
        grid-column: 1 / -1;
        text-align: center;
        padding-top: 2rem;
        margin-top: 2rem;
        border-top: var(--border-light);
    }
    
    /* This will handle tablets in portrait mode */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* For mobile portrait (1 column) */
@media (max-width: 575px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1201px) {
    .top-nav {
        padding: 0.8rem 1rem;
        height: 70px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-actions {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .banner {
        display: none;
    }
    
    .mobile-banner-container {
        display: block;
    }
    
    .about-revie {
        height: auto;
        min-height: 300px;
        padding: 1rem;
    }
    
    .about-content {
        padding: 1rem;
    }
    
    .about-logo {
        height: 45px;
        margin-bottom: 0.8rem;
    }
    
    .about-content p {
        font-size: 0.9rem;
        margin-bottom: 0.7rem;
        line-height: 1.4;
    }
    
    .about-link {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .body-data {
        padding: 0rem;
    }
    
    .features-grid, .store-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    body {
        padding-top: 70px;
    }
    
    .mobile-banner-container {
        margin-top: 0;
    }
    
    .sid-bar {
        display: none;
    }
    
    body {
        grid-template-areas: 
            "top-nav"
            "banner"
            "about-revie"
            "body-data"
            "footer";
    }
}

@media (max-width: 768px) {
    .banner-content h2 {
        font-size: 1.5rem;
    }
    
    .banner-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .features-grid, .store-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .mobile-nav-dropdown {
        padding: 1.5rem;
    }
    
    @media (orientation: portrait) {
        .about-revie {
            min-height: 300px;
        }
        
        .about-content {
            padding: 0.8rem;
        }
        
        .about-content p {
            font-size: 0.85rem;
            margin-bottom: 0.6rem;
        }
        
        .about-link {
            margin-top: 0.5rem;
        }
    }
}

@media (max-width: 576px) {
    .top-nav {
        padding: 0.5rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .about-revie {
        min-height: 300px;
        padding: 0.8rem;
    }
    
    .about-content {
        padding: 0.8rem;
    }
    
    .about-logo {
        height: 40px;
        margin-bottom: 0.6rem;
    }
    
    .about-content p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .about-link {
        font-size: 0.85rem;
        padding: 0.3rem 0.7rem;
    }
    
    .body-data {
        padding: 0rem;
    }
    
    .feature-content, .product-content {
        padding: 1rem;
    }
    
    .footer {
        padding: 2rem 1rem 1rem;
    }
    
    body {
        padding-top: 70px;
    }
    
    @media (max-width: 380px) {
        .about-revie {
            min-height: 300px;
        }
        
        .about-content p {
            font-size: 0.78rem;
        }
        
        .about-link {
            font-size: 0.8rem;
        }

           .mobile-buttons {
               gap: 0.8rem;
         }
    
        .mobile-btn {
            padding: 0.8rem 1.2rem;
            font-size: 0.9rem;
            min-width: 110px;
     }

    }
}

/* Animation for mobile menu toggle */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus, button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --light: #ffffff;
        --dark: #000000;
        --border-light: 2px solid #000000;
    }
    
    .banner-content {
        background: rgba(0,0,0,0.9);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Mobile menu animation */
.mobile-nav-dropdown {
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.mobile-nav-dropdown.active {
    transform: translateX(0);
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}


         /*SECTION HEADING*/
    
         .heading {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 8px;
            border-bottom: 1px solid #eaeaea;       
            font-family: 'Inter', sans-serif;
            margin: 10px 2px;
        }

      


        
        .heading .title {
            font-size: 21px;
            font-weight: 600;
            background: linear-gradient(90deg, #3498db, #2c3e50);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .heading .view-services {
            display: flex;
            align-items: center;
            color: #0066cc;
            text-decoration: none;
            font-weight: 500;
            font-size: 14px;
            padding: 6px 12px;
            border-radius: 6px;
            background-color: #f0f7ff;
            transition: all 0.2s ease;
        }
        
        .heading .view-services i {
            margin-left: 6px;
            font-size: 14px;
        }
        
        .heading .view-services:hover {
            background-color: #e1efff;
        }
        
        @media (max-width: 600px) {
            .heading {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                border-bottom: none;
                padding-bottom: 0;
            }
        }

        

        /* My Underlines Styles: calss="underline-heading"*/
        .underline-heading {
        position: relative;
        text-align: center;
        text-transform: uppercase;
        padding-bottom: 15px;
        margin: 0 auto;
        font-weight: 500;
        font-size: 32px;
        color: #222;
        }

        .underline-heading:before {
        width: 40px;
        height: 5px;
        display: block;
        content: "";
        position: absolute;
        bottom: 20px;
        left: 50%;
        margin-left: -20px;
        background-color: #c50000;
        border-radius: 2px;
        }

        .underline-heading:after {
        width: 150px;
        height: 1px;
        bottom:10;
        display: block;
        content: "";
        position: relative;
        margin: 15px auto;
        background-color: #c50000;
        }


         /* My Underlines Styles: calss="underline-sub-heading"*/
        .underline-sub-heading {
        position: relative;
        text-align: center;
        padding-bottom: 15px;
        margin: 2rem 1.5rem;
        font-weight: 500;
        font-size: 24px;
        color: #333;
        }

        .underline-sub-heading:after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%);
        width: 80px;
        height: 3px;
        background-color: #c50000;
        border-radius: 2px;
        }